cxmo vor 9 Monaten
Ursprung
Commit
63fc280e70

+ 2 - 1
src/lang/modules/DataSources/En.js

@@ -91,6 +91,7 @@ export default {
   /* 钢联化工数据库 */
   SteelChemicalPage: {
     add_edb_btn: 'Add indicator',
+    batch_add_edb_btn:'Batch Add to Indicator Library',
     add_classify_btn: 'Add Category',
     refresh_one_btn:'One-click Update',
     del_edb_msg:'After deletion, this indicator cannot be referenced. Are you sure you want to delete it?',
@@ -112,7 +113,7 @@ export default {
     ph_edbid:'Indicator ID can not be empty',
     ph_classify:'Affiliated Category can not be empty',
     add_loading_msg:'The loading time is approximately five minutes; closing the popup will not affect the loading process',
-    add_max_msg: 'The number of additions has reached the upper limit (upper limit 100)!',
+    add_max_msg: 'The number of additions has reached the upper limit (upper limit 150)!',
     ph_classify_name: 'Please select a category name',
   },
 

+ 2 - 1
src/lang/modules/DataSources/Zh.js

@@ -92,6 +92,7 @@ export default {
   /* 钢联化工数据库 */
   SteelChemicalPage: {
     add_edb_btn: '新增指标',
+    batch_add_edb_btn:'批量加入指标库',
     add_classify_btn: '添加分类',
     refresh_one_btn:'一键更新',
     del_edb_msg:'删除后该指标不能被引用,确认删除吗?',
@@ -111,7 +112,7 @@ export default {
     ph_edbid:'指标ID不能为空',
     ph_classify:'所属分类不能为空',
     add_loading_msg:'加载时间大概五分钟,关闭弹窗不影响加载',
-    add_max_msg: '添加数量已达上限(上限100)!',
+    add_max_msg: '添加数量已达上限(上限150)!',
     ph_classify_name: '请选择分类名称',
   },
 

+ 2 - 2
src/views/dataEntry_manage/thirdBase/components/batchAddEdbDia.vue

@@ -185,8 +185,8 @@ import { steelInterface } from "@/api/modules/thirdBaseApi";
       addEdbItem(){
         this.$refs.edbFormDataListRef.validate(valid=>{
           if(valid){
-            if(this.edbForm.edbDataList.length>=100){
-              this.$message.warning(/* '添加数量已达上限(上限100)!' */this.$t('SteelChemicalPage.add_max_msg'))
+            if(this.edbForm.edbDataList.length>=150){
+              this.$message.warning(/* '添加数量已达上限(上限150)!' */this.$t('SteelChemicalPage.add_max_msg'))
               return 
             }
             let lastItem = this.edbForm.edbDataList[this.edbForm.edbDataList.length-1]

+ 121 - 0
src/views/dataEntry_manage/thirdBase/components/batchAddIndicsDia.vue

@@ -0,0 +1,121 @@
+<template>
+    <!-- 批量添加至指标库 -->
+    <el-dialog
+        :visible.sync="isOpenDialog"
+        :close-on-click-modal="false"
+        :modal-append-to-body="false"
+        top="5vh"
+        :title="$t('SteelChemicalPage.batch_add_edb_btn')"
+        @close="$emit('close')"
+        custom-class="batch-add-edb-dia"
+        center
+        width="70%"
+        v-dialogDrag
+    >
+        <div class="dialog-container">
+            <div class="select-box">
+                <el-cascader></el-cascader>
+                <el-input style="width:240px;"></el-input>
+            </div>
+            <div class="select-table">
+                <el-table :data="edbList" border>
+                    <el-table-column  type="selection" width="55" align="center"></el-table-column>
+                    <el-table-column label="指标ID" align="center" width="120"></el-table-column>
+                    <el-table-column label="指标名称" align="center">
+                        <template slot-scope="{row}">
+                            <el-input v-model="row.edbName"></el-input>
+                        </template>
+                    </el-table-column>
+                    <el-table-column label="频度" align="center" width="140">
+                        <template slot-scope="{row}">
+                            <el-select v-model="row.frequency"></el-select>
+                        </template>
+                    </el-table-column>
+                    <el-table-column label="单位" align="center" width="140">
+                        <template slot-scope="{row}">
+                            <el-input v-model="row.edbName"></el-input>
+                        </template>
+                    </el-table-column>
+                    <!-- 操作 -->
+                    <el-table-column align="center">
+                        <template slot="header" slot-scope="{row}">
+                            <span>指标库目录</span>
+                            <el-radio v-model="classifyType" :label="1" style="margin-right:5px;">分目录</el-radio>
+                            <el-radio v-model="classifyType" :label="2">同目录</el-radio>
+                        </template>
+                        <template slot-scope="{row}">
+                            <el-input v-model="row.classify"></el-input>
+                        </template>
+                    </el-table-column>
+                </el-table>
+            </div>
+        </div>
+    </el-dialog>
+</template>
+
+<script>
+export default {
+    props:{
+        isOpenDialog:{
+            type:Boolean,
+            default:false
+        }
+    },
+    watch:{
+        isOpenDialog(newval){
+            if(newval){
+                this.initDia()
+            }
+        }
+    },
+    data() {
+        return {
+            classifyList:[],//钢联化工数据库的目录
+            searchName:'',
+            searchClassify:'',
+            classifyType:1,//1分目录 2同目录
+            edbList:[
+                /* {
+                    edbId:'123456',
+                    edbName:'指标名称指标名称',
+                    frequency:'日度',
+                    unit:'吨',
+                    classify:''
+                } */
+            ],
+            selectEdbList:[]
+        };
+    },
+    methods: {
+        initDia(){
+            this.getClassifyList()
+            this.searchClassify = ''
+            this.searchName = ''
+            this.edbList = []
+            this.selectEdbList = []
+        },
+        getClassifyList(){
+            //获取钢联化工数据库目录
+        },
+    },
+};
+</script>
+
+<style lang="scss">
+.batch-add-edb-dia{
+    .dialog-container{
+        .el-input{
+            width:100%;
+        }
+    }
+}
+</style>
+<style scoped lang="scss">
+.batch-add-edb-dia{
+    .dialog-container{
+        .select-box{
+            margin-bottom:20px;
+        }
+    }
+}
+</style>

+ 20 - 7
src/views/dataEntry_manage/thirdBase/steelChemicalbase.vue

@@ -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;
     }