|
@@ -18,11 +18,15 @@
|
|
|
<div class="left-top">
|
|
|
<div>
|
|
|
<el-button v-permission="permissionBtn.dataSourcePermission.mysteelData_add"
|
|
|
- type="primary" size="medium" @click="addTargetBatch"
|
|
|
- ><!-- 新增指标 -->{{$t('SteelChemicalPage.add_edb_btn')}}</el-button
|
|
|
+ type="primary" size="medium" @click="addTargetBatch" style="margin-bottom: 10px;"
|
|
|
+ ><!-- 新增指标(加入钢联化工数据库) -->{{$t('SteelChemicalPage.add_edb_btn')}}</el-button
|
|
|
>
|
|
|
- <el-button
|
|
|
- v-permission="permissionBtn.dataSourcePermission.mysteelData_export"
|
|
|
+ <el-button style="margin-left: 0;margin-bottom: 10px;"
|
|
|
+ type="primary" size="medium" @click="isBatchAddIndicsDiaShow = true"
|
|
|
+ ><!-- 批量加入指标库 -->{{$t('SteelChemicalPage.batch_add_edb_btn')}}</el-button
|
|
|
+ >
|
|
|
+ <el-button style="margin-left: 0;"
|
|
|
+ v-permission="permissionBtn.dataSourcePermission.mysteelData_export"
|
|
|
type="primary"
|
|
|
plain
|
|
|
size="medium"
|
|
@@ -252,7 +256,13 @@
|
|
|
<batch-add-edb-dia :isOpenDialog.sync="batchAddDiaShow"
|
|
|
:classifyList="classifyList"
|
|
|
@successCallback="addSuccessCallback"/>
|
|
|
+ <!-- 批量添加至指标库弹窗 -->
|
|
|
+ <batchAddIndicsDia
|
|
|
+ :isOpenDialog="isBatchAddIndicsDiaShow"
|
|
|
+ @close="isBatchAddIndicsDiaShow=false"
|
|
|
+ />
|
|
|
</div>
|
|
|
+
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
@@ -261,11 +271,12 @@ import { steelInterface } from "@/api/modules/thirdBaseApi";
|
|
|
import mDialog from "@/components/mDialog.vue";
|
|
|
import targetDialog from "./components/targetDialog.vue";
|
|
|
import batchAddEdbDia from "./components/batchAddEdbDia.vue";
|
|
|
+import batchAddIndicsDia from "./components/batchAddIndicsDia"
|
|
|
import leftMixin from "./mixins/leftMixin.js";
|
|
|
export default {
|
|
|
name: "",
|
|
|
mixins: [leftMixin],
|
|
|
- components: { lzTable, mDialog, targetDialog,batchAddEdbDia },
|
|
|
+ components: { lzTable, mDialog, targetDialog,batchAddEdbDia,batchAddIndicsDia },
|
|
|
data() {
|
|
|
return {
|
|
|
isLeftWrapShow:true,
|
|
@@ -309,7 +320,9 @@ export default {
|
|
|
addTargetDialog: false, //添加指标弹窗
|
|
|
edbForm: {},
|
|
|
//批量添加指标弹窗
|
|
|
- batchAddDiaShow:false
|
|
|
+ batchAddDiaShow:false,
|
|
|
+
|
|
|
+ isBatchAddIndicsDiaShow:false, //批量添加至指标库弹窗
|
|
|
};
|
|
|
},
|
|
|
methods: {
|
|
@@ -770,7 +783,7 @@ export default {
|
|
|
}
|
|
|
.scroll-wrap {
|
|
|
padding: 0 20px;
|
|
|
- height: calc(100vh - 280px);
|
|
|
+ height: calc(100vh - 320px);
|
|
|
overflow-y: auto;
|
|
|
margin-right: 20px;
|
|
|
}
|