chenlei 7 mēneši atpakaļ
vecāks
revīzija
7f6d5e4b93

+ 21 - 4
src/api/modules/thirdBaseApi.js

@@ -854,13 +854,30 @@ const fwmtInterface={
 		getTargetDataList:params=>{
 			return http.get('/datamanage/fenwei/single_data',params);
 		},
-		searchEdbBatch : params => {
-			return http.get('/datamanage/fenwei/search_list',params);
+		// 查询批量指标数据
+		searchEdbBatch: params => {
+			return http.get('/datamanage/fenwei/get/index/info',params);
+		},
+		// 导出指标数据
+		exportData: params => {
+			return http.get('/datamanage/fenwei/index/data/export',params);
+		},
+		// 获取频度
+		getFrequency: params => {
+			return http.get('/datamanage/fenwei/frequency/list',params);
 		},
 		// 搜索
-		getTargetListByName:params=>{
+		getTargetListByName: params=>{
 			return http.get('/datamanage/fenwei/search_list',params);
-		}
+		},
+		// 加入指标库前校验
+		batchAddEdbCheck : params => {
+			return http.post('/datamanage/fenwei/index/add/validate',params);
+		},
+		// 加入指标库
+		addIndex: params => {
+			return http.post('/datamanage/fenwei/index/add',params);
+		},
 }
 /* 广期所 */
 const guangqiInterface={

+ 105 - 27
src/views/dataEntry_manage/thirdBase/FwmtData.vue

@@ -60,6 +60,7 @@
             label: 'ClassifyName',
             children: 'Child',
           }"
+          :default-checked-keys = "defaultCheckedKeys"
           :default-expanded-keys="defaultShowNodes"
           :current-node-key="select_classify"
           :expand-on-click-node="false"
@@ -119,10 +120,9 @@
           </div>
           <div v-else class="nodata"></div>
         </div>
-        <el-button style="margin-left: 10px;margin-top: 20px;" plain
-          type="primary" size="medium" @click=""
-            ><!-- 批量加入指标库 -->周度</el-button
-          >
+        <div class="frequency-box">
+          <div :class="indexFrequency !== index ? 'frequency' : 'frequency active' " v-for="(item, index) in frequencyList" :key="index" @click="clickFrequencyList(index, item)">{{ item }}</div>
+        </div>
       </template>
       <div v-else class="nodata-cont">
         <tableNoData :text="$t('Table.prompt_slogan')"/>
@@ -146,7 +146,7 @@
 <script>
 import lzTable from "@/components/lzTable.vue";
 import { fwmtInterface } from "@/api/api.js";
-import batchAddIndicsDia from "./components/batchAddIndicsDia"
+import batchAddIndicsDia from "./components/batchFwAddIndicsDia"
 import addIndicsDia from './components/addIndicsDia.vue';
 import leftMixin from "./mixins/leftMixin.js";
 export default {
@@ -156,7 +156,7 @@ export default {
   data() {
     return {
       isLeftWrapShow:true,
-      exportBase:process.env.VUE_APP_API_ROOT + "/datamanage/fenwei/export", //ssm数据导出接口
+      exportBase:process.env.VUE_APP_API_ROOT + "/datamanage/fenwei/index/data/export", //ssm数据导出接口
       dataloading: false,
       rightShow: false,
       select_classify: 0,
@@ -174,8 +174,11 @@ export default {
       isBatchAddIndicsDiaShow: false, //批量添加指标弹窗
       currentIndicData:{}, //当前选中指标
       isAddIndicsDiaShow: false, //单个添加指标弹窗
-      defaultShowNodes: [],
+      defaultShowNodes: [], // 
+      defaultCheckedKeys: [], // 选中
       repetition: null, // 是否重复请求
+      indexFrequency: 0, // 当前选中的指标code
+      select_frequency: '', // 当前选中的频度
     };
   },
   methods: {
@@ -184,6 +187,12 @@ export default {
       fwmtInterface.classifyList().then((res) => {
         if (res.Ret !== 200) return;
         this.classifyList = res.Data || [];
+        this.select_classify = this.classifyList.length ? (this.classifyList[0].Child && this.classifyList[0].Child.length ? this.classifyList[0].Child[0].ClassifyId : this.classifyList[0].ClassifyId) : 0; // 获取classifyList中第一个元素的ClassifyId,如果该元素有子元素,则取第一个子元素的ClassifyId
+        this.defaultShowNodes = [this.classifyList[0].ClassifyId]
+        this.$nextTick(() => { // 获取到节点后设置选中
+          this.$refs.treeRef.setCurrentKey(this.select_classify)
+        })
+        this.getFrequency()
       });
     },
     /* 获取数据 */
@@ -193,6 +202,7 @@ export default {
       fwmtInterface
         .dataList({
           ClassifyId: this.select_classify,
+          Frequency: this.select_frequency,
           PageSize: this.page_size,
           CurrentIndex: this.page_no,
         })
@@ -258,6 +268,23 @@ export default {
             });
         });
     }, 200),
+
+    // 获取频度
+    getFrequency() {
+      fwmtInterface.getFrequency({ClassifyId: this.select_classify}).then((res) => {
+        if (res.Ret !== 200) return;
+        this.frequencyList = res.Data || [];
+        this.select_frequency = this.frequencyList[0];
+        this.getDataList()
+      });
+    },
+    // 点击频度
+    clickFrequencyList(index,  item) {
+      this.indexFrequency = index;
+      this.select_frequency = item;
+      this.getDataList();
+    },
+
     // 获取单个指标数据
     async getTargetDataList(code) {
       this.isShowSingleData = true;
@@ -268,6 +295,7 @@ export default {
         });
         this.rightShow = true;
         if (res.Ret !== 200) return;
+        this.frequencyList = [];
         const DataList = res.Data.Data || [];
         // 设置为没有更多数据
         this.haveMore = false;
@@ -294,10 +322,10 @@ export default {
             this.dateArr.push("");
             if (this.dateArr.length >= 12) break;
           }
-        this.select_quota = res.Data.IndexName;
-        this.select_Unit = res.Data.Unit;
-        this.select_frequency = res.Data.Frequency;
-        this.select_ModifyTime = res.Data.ModifyTime || "";
+        // this.select_quota = res.Data.IndexName;
+        // this.select_Unit = res.Data.Unit;
+        // this.select_frequency = res.Data.Frequency;
+        // this.select_ModifyTime = res.Data.ModifyTime || "";
         this.dataloading = false;
         this.rightShow && this.initWidth();
       } catch (err) {
@@ -322,10 +350,11 @@ export default {
         })
         if(res.Ret===200){
           const temarr=res.Data||[]
-          arr=temarr.map(item=>{
+          arr=temarr.map((item, i)=>{
             delete item.ClassifyId
             return {
               ...item,
+              id: 'code' + (item.ClassifyId + i),
               isLeaf:true
             }
           })
@@ -424,26 +453,48 @@ export default {
         }
       }
     },
+
+    /**
+     * 在数组中找到满足条件的元素的索引数组
+     *
+     * @param arr 要查找的数组
+     * @param fn 查找条件函数,函数接收一个参数,返回布尔值
+     * @returns 返回满足条件的元素的索引数组,如果未找到则返回null
+     */
+   findIndex (arr, fn) {
+    function findData(arr,indexs = []){
+      return arr.reduce((obj, item, index) => {
+        if(obj.config && fn(obj.config)){
+          return obj
+        }
+        const isArray = Array.isArray(item.Child)
+        const res = isArray ? findData(item.Child, obj.indexs) : fn(item) ? {config:item} : null
+        if (res && res.config && fn(res.config)) {
+          obj.indexs.push(index)
+          return {
+            config: res.config,
+            indexs:obj.indexs
+          }
+        }
+        return obj
+      }, { config: null, indexs })
+    }
+      const res = findData(arr)
+      const indexs = res.indexs.reverse()
+      return res.config&&fn(res.config)?indexs:null
+    },
     // 选中左侧搜索值
     handleSelectLeftSearchval(e) {
       if (!e.IndexCode) return;
       this.leftSearchTradeCode = e.IndexCode;
       this.leftSearchVal = e.IndexName;
-
+      const ParentClassifyId = this.classifyList[this.findIndex(this.classifyList, (item) => item.ClassifyId === e.ClassifyId)[0]].ClassifyId
+      this.defaultShowNodes = [ParentClassifyId, e.ClassifyId];
+      // this.defaultShowNodes = [ParentClassifyId, e.ClassifyId];
       // 获取单独指标数据
       this.getTargetDataList(e.IndexCode);
     },
 
-    /* 添加指标 */
-    addTargetBatch() {
-      this.batchAddDiaShow = true;
-    },
-    /* 添加后回调 */
-    addSuccessCallback({ code, id,selectClassifyNodes,indexCode }) {
-      indexCode && (this.index_code = indexCode)
-      this.getClassify({ code, id,selectClassifyNodes });
-    },
-
     getTargetData(code, arr) {
       for (const item of arr) {
         if (item.BaseFromBaiinfoIndexCode === code) return item;
@@ -460,15 +511,21 @@ export default {
   
     //改变选中节点
     nodeChangeHandle(data, node) {
+      console.log(data, node);
+      
       if (data.ClassifyId === this.repetition || data.IndexCode === this.repetition) return;
       this.select_classify = data.ClassifyId;
       this.repetition = data.ClassifyId || data.IndexCode
       this.leftSearchVal=''
       this.page_no = 1;
       this.page_size = 20;
-      if (!data.IndexCode)this.getDataList()
-      // 获取单独指标数据
-      else this.getTargetDataList(data.IndexCode);
+      if (!data.IndexCode) {
+        this.leftSearchTradeCode = ''
+        this.getFrequency()
+      } else {// 获取单独指标数据
+        this.leftSearchTradeCode = data.IndexCode
+        this.getTargetDataList(data.IndexCode);
+      }
     },
    
   },
@@ -482,7 +539,7 @@ export default {
         // 指标id
         urlStr += `&IndexCode=${
           this.isShowSingleData ? this.leftSearchTradeCode : ""
-        }`;
+        }&ClassifyId=${ this.select_classify }`;
       } else {
         // 目录id
         urlStr += `&ClassifyId=${
@@ -634,6 +691,27 @@ export default {
         margin: 0 30px 10px 0;
       }
     }
+    .frequency-box {
+      margin-top: 10px;
+      height: 40px;
+      display: flex;
+      align-items: center;
+      .frequency {
+        background: rgba(51, 51, 51, 1);
+        line-height: 40px;
+        text-align: center;
+        background: rgba(244, 248, 254, 1);
+        width: 120px;
+        height: 40px;
+        opacity: 0px;
+        border-radius: 4px;
+        margin-right: 10px;
+      }
+      .active {
+        color: #fff;
+        background: rgba(0, 82, 217, 1);
+      }
+    }
     .nodata-cont {
       width: 150px !important;
       text-align: center;

+ 38 - 10
src/views/dataEntry_manage/thirdBase/components/addIndicsDia.vue

@@ -67,7 +67,7 @@
 
 <script>
 import { dataBaseInterface } from '@/api/api.js';
-import { steelInterface,zhuochuangRedStageInterface } from "@/api/modules/thirdBaseApi";
+import { steelInterface,zhuochuangRedStageInterface, fwmtInterface } from "@/api/modules/thirdBaseApi";
 import selectUnit from '@/components/selectUnit.vue';
 import { frequencySelectList } from '@/utils/defaultOptions';
 export default {
@@ -151,12 +151,29 @@ export default {
             
             let saveApiMap = {
                 '/zchqDataBase': this.handleAddzchqApi,
-                '/steelChemical': this.handleAddSteelApi
+                '/steelChemical': this.handleAddSteelApi,
+                '/fwmtData': this.handleAddFwmtDataApi
             }
 
             saveApiMap[this.$route.path] && saveApiMap[this.$route.path]()
         },
-        
+
+        /* 汾渭数据api */
+        async handleAddFwmtDataApi() {
+            const {code,edb_name,menu,frequency,unit} = this.formData
+            const res = await fwmtInterface.addIndex([{
+                EdbCode:code,
+                EdbName:edb_name,
+                Unit:unit,
+                Frequency:frequency,
+                ClassifyId:Number(menu),
+            }])
+            this.btnloading=false
+            if(res.Ret !== 200) return 
+            this.$message.success(this.$t('MsgPrompt.add_msg2'))
+            this.$emit('addCallback')
+        }, 
+           
         /* 卓创红期api */
         async handleAddzchqApi() {
             const {code,edb_name,menu,frequency,unit} = this.formData
@@ -216,13 +233,24 @@ export default {
         initDia(){
             this.btnloading=false
             this.getClassifyOpt()
-            const {IndexName,UnitName,FrequencyName,IndexCode} = this.edbData
-            this.formData = {
-                code:IndexCode,
-                edb_name:IndexName,
-                menu:'',
-                frequency:FrequencyName,
-                unit:UnitName
+            const route = ['/fwmtData', '/steobase']
+            const {IndexName,UnitName,FrequencyName,IndexCode, Unit, Frequency} = this.edbData
+            if (route.includes(this.$route.path)) {
+                this.formData = {
+                    code:IndexCode,
+                    edb_name:IndexName,
+                    menu:'',
+                    frequency: Frequency,
+                    unit: Unit
+                }
+            } else {
+                this.formData = {
+                    code:IndexCode,
+                    edb_name:IndexName,
+                    menu:'',
+                    frequency:FrequencyName,
+                    unit:UnitName
+                }
             }
         }
     },

+ 13 - 34
src/views/dataEntry_manage/thirdBase/components/batchAddIndicsDia.vue

@@ -16,7 +16,13 @@
             <div class="select-box">
                 <el-cascader v-model="searchClassify"
                     :options="classifyList"
-                    :props="selectProps"
+                    :props="{
+                        children:'Children',
+                        label:'ClassifyName',
+                        value:'BaseFromMysteelChemicalClassifyId',
+                        multiple:true,
+                        emitPath:false,
+                    }"
                     :placeholder="$t('Edb.InputHolderAll.input_classify')"
                     @change="getEdbList"
                 ></el-cascader>
@@ -132,7 +138,7 @@
 </template>
 
 <script>
-import { steelInterface, fwmtInterface } from "@/api/modules/thirdBaseApi";
+import { steelInterface } from "@/api/modules/thirdBaseApi";
 import { dataBaseInterface } from '@/api/api.js';
 import selectUnit from '@/components/selectUnit.vue';
 import { frequencySelectList } from '@/utils/defaultOptions';
@@ -177,14 +183,6 @@ export default {
             hintList:[],
             hintText:'',
             btnloading:false,
-
-            // 下拉选择框配置
-            selectProps: {},
-            // 根据路由信息返回要请求的接口
-            handleApiMap: {
-                '/steelChemical':steelInterface,
-                '/fwmtData': fwmtInterface
-            }
         };
     },
     methods: {
@@ -203,28 +201,9 @@ export default {
         },
         //获取钢联化工数据库目录
         getClassifyList(){
-            const steelChemicalProps = {
-                children:'Children',
-                label:'ClassifyName',
-                value:'BaseFromMysteelChemicalClassifyId',
-                multiple:true,
-                emitPath:false
-            }
-            const fwmtDataProps = {
-                children:'Child',
-                label:'ClassifyName',
-                value:'ClassifyId',
-                multiple:true,
-                emitPath:false
-            }
-            const handlePropsMap = {
-                '/steelChemical':steelChemicalProps,
-                '/fwmtData': fwmtDataProps
-            }
-            this.handleApiMap[this.$route.path].classifyList().then((res) => {
+            steelInterface.classifyList().then((res) => {
                 if(res.Ret!==200) return 
                 this.classifyList = res.Data||[]
-                this.selectProps = handlePropsMap[this.$route.path]
             })
         },
         filterNodes(arr) {
@@ -250,7 +229,7 @@ export default {
             this.classifyType = 1
             //tableData
             this.tableLoading = true
-            this.handleApiMap[this.$route.path].searchEdbBatch({
+            steelInterface.searchEdbBatch({
                 BaseFromMysteelChemicalClassifyIds:Array.isArray(this.searchClassify)?this.searchClassify.join(','):'',
                 Keyword:this.searchName||''
             }).then(res=>{
@@ -301,7 +280,7 @@ export default {
 
             this.btnloading = true
             //添加检测
-            this.handleApiMap[this.$route.path].batchAddEdbCheck({
+            steelInterface.batchAddEdbCheck({
                 IndexCodes:this.selectEdbList.map(i=>i.edbId)
             }).then(res=>{
                 if(res.Ret!==200) return (this.btnloading=false)
@@ -325,7 +304,7 @@ export default {
                 const item = this.selectEdbList.find(s=>s.edbId===i)
                 item&&checkList.push(item)
             })
-            this.handleApiMap[this.$route.path].batchCheckEdbName(checkList.map(i=>{
+            steelInterface.batchCheckEdbName(checkList.map(i=>{
                 return {
                     EdbCode:i.edbId,
                     EdbName:i.edbName,
@@ -362,7 +341,7 @@ export default {
         //添加进指标库
         batchAddEdb(afterAddList=[],checkList){
             //checkList
-            this.handleApiMap[this.$route.path].batchAddToLib(checkList.map(i=>{
+            steelInterface.batchAddToLib(checkList.map(i=>{
                 return {
                     EdbCode:i.edbId,
                     EdbName:i.edbName,

+ 461 - 0
src/views/dataEntry_manage/thirdBase/components/batchFwAddIndicsDia.vue

@@ -0,0 +1,461 @@
+<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 v-model="searchClassify"
+                    :options="classifyList"
+                    :props="{
+                        children:'Child',
+                        label:'ClassifyName',
+                        value:'ClassifyId',
+                        multiple:true,
+                        emitPath:false
+                    }"
+                    :placeholder="$t('Edb.InputHolderAll.input_classify')"
+                    @change="getEdbList"
+                ></el-cascader>
+                <el-select
+                    v-model="frequency"
+                    @change="filterChange"
+                    clearable
+                    >
+                    <el-option v-for="item in frequencyOptions" :key="item.val" :label="item.label" :value="item.val"/>
+                </el-select>
+                <el-input style="width:240px;" v-model="searchName"
+                    :placeholder="$t('Edb.InputHolderAll.input_name_orid')"
+                    prefix-icon="el-icon-search"
+                    @input="getEdbList"
+                />
+            </div>
+            <div class="select-table">
+                <el-table :data="edbList" border 
+                :row-class-name="tableRowClassName"
+                @selection-change="handleSelectionChange" 
+                v-loading="tableLoading">
+                    <el-table-column  type="selection" width="55" align="center"></el-table-column>
+                    <el-table-column :label="$t('Edb.Detail.e_id')" align="center" width="120" prop="edbId"></el-table-column>
+                    <el-table-column :label="$t('Table.edb_name')" align="center">
+                        <template slot-scope="{row}">
+                            <el-input v-model="row.edbName" :placeholder="$t('Table.edb_name')"></el-input>
+                        </template>
+                    </el-table-column>
+                    <el-table-column :label="$t('Edb.Detail.e_fre')" align="center" width="140">
+                        <template slot-scope="{row}">
+                            <el-select 
+                                v-model="row.frequency" 
+                                :placeholder="$t('CustomAnalysisPage.select_frequency')" 
+                                clearable>
+                                <el-option
+                                    v-for="item in frequencyArr"
+                                    :key="item.value"
+                                    :label="item.label"
+                                    :value="item.value">
+                                </el-option>
+                            </el-select>
+                        </template>
+                    </el-table-column>
+                    <el-table-column :label="$t('Edb.Detail.e_unit')" align="center" width="140">
+                        <template slot-scope="{row}">
+                            <selectUnit v-model="row.unit" />
+                        </template>
+                    </el-table-column>
+                    <!-- 操作 -->
+                    <el-table-column align="center">
+                        <template slot="header" slot-scope="{row}">
+                            <!-- <span>{{$t('EtaBasePage.catalogue_directory')}}</span> -->
+                            <el-radio-group v-model="classifyType" @change="handleClassifyTypeChange">
+                                <el-radio :label="1" style="margin-right:5px"><!-- 分目录 -->{{$t('EtaBasePage.subdirectory_radio')}}</el-radio>
+                                <el-radio :label="2"><!-- 同目录 -->{{$t('EtaBasePage.directory_radio')}}</el-radio>
+                            </el-radio-group>
+                            <el-cascader v-if="classifyType===2" v-model="selectClassify"
+                                :options="edbClassifyList"
+                                :props="{
+                                    label: 'ClassifyName',
+                                    value: 'ClassifyId',
+                                    children: 'Children',
+                                    checkStrictly: true,
+                                    emitPath:false
+                                }"
+                                :placeholder="$t('SteelChemicalPage.batch_add_placeholder')"
+                            >
+                            </el-cascader>
+                        </template>
+                        <template slot-scope="{row,$index}">
+                            <el-cascader 
+                                v-model="row.classify"
+                                :options="edbClassifyList"
+                                :props="{
+                                    label: 'ClassifyName',
+                                    value: 'ClassifyId',
+                                    children: 'Children',
+                                    checkStrictly: true,
+                                    emitPath:false
+                                }"
+                                :placeholder="$t('SteelChemicalPage.batch_add_placeholder')"
+                                style="width:100%;"
+                                :disabled="classifyType===2"
+                            ></el-cascader>
+                        </template>
+                    </el-table-column>
+                    <div class="no-data" slot="empty">
+                        <tableNoData :text="$t('Table.prompt_slogan')"/>
+                    </div>
+                </el-table>
+            </div>
+        </div>
+        <div class="footer-container" slot="footer">
+            <el-button type="primary" plain @click="$emit('close')">{{ $t('Dialog.cancel_btn') }}</el-button>
+            <el-button type="primary" @click="handleAddEdb" :loading="btnloading">{{ $t('ManualEdbListPage.add_tobase_btn') }}</el-button>
+        </div>
+        <!-- 操作提示弹窗 -->
+        <el-dialog 
+            :title="$t('BloombergPage.operation_prompt')"
+            :visible.sync="isHintDiaShow"
+            :close-on-click-modal="false"
+            :modal-append-to-body="false"
+            @close="handleCloseDia"
+            width="578px"
+            v-dialogDrag
+            center>
+            <div class="hint-dialog-wrap">
+                <p style="margin-bottom: 20px;">{{ hintText }}</p>
+                <ul>
+                    <li v-for="(item,index) in hintList" :key="index" class="hint-item" @click="gotoEdbDetail(item)">
+                        {{ index+1 }}、{{ item.IndexName }}({{ item.IndexCode }})
+                    </li>
+                </ul>
+            </div>
+            <div style="text-align: center;margin-bottom: 30px;">
+                    <el-button type="primary" @click="handleCloseDia">{{$t('Dialog.known')}}</el-button>
+                </div>
+        </el-dialog>
+    </el-dialog>
+</template>
+
+<script>
+import { fwmtInterface } from "@/api/modules/thirdBaseApi";
+import { dataBaseInterface } from '@/api/api.js';
+import selectUnit from '@/components/selectUnit.vue';
+import { frequencySelectList } from '@/utils/defaultOptions';
+export default {
+    components:{ selectUnit },
+    props:{
+        isOpenDialog:{
+            type:Boolean,
+            default:false
+        }
+    },
+    watch:{
+        isOpenDialog(newval){
+            if(newval){
+                this.initDia()
+            }
+        }
+    },
+    data() {
+        return {
+            classifyList:[],//钢联化工数据库的目录
+            searchName:'',
+            searchClassify:'',
+            classifyType:1,//1分目录 2同目录
+            selectClassify:'',
+            frequencyArr:frequencySelectList(),
+            edbList:[
+                /* {
+                    edbId:'123456',
+                    edbName:'指标名称指标名称',
+                    frequency:'日度',
+                    unit:'吨',
+                    classify:'',
+                    isHighlight:false
+                }, */
+            ],
+            tableLoading:false,
+            edbClassifyList:[],//指标库目录
+            selectEdbList:[],//勾选的指标
+
+            isHintDiaShow:false,
+            hintList:[],
+            hintText:'',
+            btnloading:false,
+
+            frequency: '',
+            frequencyOptions: [
+                { label:'日度',val: '日度' },
+                { label:'周度',val: '周度' },
+                { label:'旬度',val: '旬度' },
+                { label:'月度',val: '月度' },
+                { label:'季度',val: '季度' },
+                { label:'半年度',val: '半年度' },
+                { label:'年度',val: '年度' },
+            ]
+        };
+    },
+    methods: {
+        tableRowClassName({row}){
+            return row.isHighlight?'highlight-row':''
+        },
+        initDia(){
+            this.getClassifyList()
+            this.getClassifyOpt()
+            this.searchClassify = ''
+            this.searchName = ''
+            this.edbList = []
+            this.selectEdbList = []
+            this.selectClassify=''
+            this.btnloading=false
+        },
+        //获取钢联化工数据库目录
+        getClassifyList(){
+            fwmtInterface.classifyList().then((res) => {
+                if(res.Ret!==200) return 
+                this.classifyList = res.Data||[]
+            })
+        },
+        filterNodes(arr) {
+            arr.length &&
+                arr.forEach((item) => {
+                    item.Children.length && this.filterNodes(item.Children);
+                    if (!item.Children.length) {
+                        delete item.Children;
+                    }
+                });
+        },
+        // 获取指标分类列表
+        async getClassifyOpt(){
+            const res=await dataBaseInterface.menuListV3()
+            if (res.Ret !== 200) return
+            this.filterNodes(res.Data.AllNodes||[]);
+            this.edbClassifyList = res.Data.AllNodes || [];
+        },
+        //获取对应目录下的钢联化工指标
+        getEdbList(){
+            //每一次筛选项改变清空选择框
+            this.selectEdbList = []
+            this.classifyType = 1
+            //tableData
+            this.tableLoading = true
+            fwmtInterface.searchEdbBatch({
+                ClassifyIds: Array.isArray(this.searchClassify)?this.searchClassify.join(','):'',
+                Keyword:this.searchName||'',
+                Frequencies: this.frequency,
+            }).then(res=>{
+                this.tableLoading = false
+                if(res.Ret!==200) return 
+                this.edbList = res.Data?res.Data.List.map(item=>{
+                    return {
+                        edbId:item.IndexCode||'',
+                        edbName:item.IndexName||'',
+                        frequency:item.Frequency||'',
+                        unit:item.Unit||'',
+                        classify:'',
+                        isHighlight:false
+                    }
+                }):[]
+            })
+           
+        },
+        filterChange(item) {
+            console.log(item);
+            this.frequency = item
+            this.getEdbList()
+        },
+        handleSelectionChange(val){
+            this.selectEdbList = val
+        },
+        handleAddEdb(){
+            //校验所选指标
+            if(!this.selectEdbList.length){
+                return this.$message.warning(this.$t('Edb.InputHolderAll.input_select_edb'))
+            }
+            if(this.selectEdbList.length>30){
+                return this.$message.warning(this.$t('SteelChemicalPage.batch_add_max_msg'))
+            }
+            //校验所选指标信息是否完整
+            if(this.classifyType===2&&!this.selectClassify){
+                return this.$message.warning(this.$t('CustomAnalysisPage.select_appropriate_category'))
+            }
+            //重置tableData的高亮
+            this.edbList.forEach(i=>i.isHighlight=false)
+            let messageList = [] //有问题的列表
+            this.selectEdbList.forEach((item)=>{
+                item.isHighlight=false
+                if(!this.checkEdbData(item)){
+                    item.isHighlight = true
+                    messageList.push(item)
+                }
+            })
+            //message轻提示 同时标出不完整的行
+            if(messageList.length){
+                return this.$message.warning(/* '部分指标信息未填写完整,请检查' */this.$t('SteelChemicalPage.batch_add_hint1'))
+            }
+
+            this.btnloading = true
+            //添加检测
+            fwmtInterface.batchAddEdbCheck({
+                IndexCodes:this.selectEdbList.map(i=>i.edbId)
+            }).then(res=>{
+                if(res.Ret!==200) return (this.btnloading=false)
+                const edbList = res.Data||[]
+                // const afterAddList = this.selectEdbList.filter(i =>
+                //     edbList.find(s=>s.IndexCode === i.edbId)    
+                // ) //已添加进指标库的指标
+                const beforeAddList = this.selectEdbList.filter(i => 
+                    !edbList.some((item) => i.edbId === item.IndexCode)
+                ) //需要添加进指标库的指标
+                //已选择的指标均添加进指标库 弹窗提示
+                if(!beforeAddList.length){
+                    return this.showHintDialog('all',edbList)
+                }
+                this.batchAddEdb(edbList,beforeAddList)
+                // //剩余指标进行重名校验
+                // this.batchNameCheck(afterAddList,beforeAddList)
+            })
+            
+        },
+        //重名检测
+        // batchNameCheck(afterAddList,beforeAddList){
+        //     const indexCodeList = beforeAddList.map(i=>i.IndexCode)
+        //     let checkList = []
+        //     indexCodeList.forEach(i=>{
+        //         const item = this.selectEdbList.find(s=>s.edbId===i)
+        //         item&&checkList.push(item)
+        //     })
+        //     fwmtInterface.batchCheckEdbName(checkList.map(i=>{
+        //         return {
+        //             EdbCode:i.edbId,
+        //             EdbName:i.edbName,
+        //             Frequency:i.frequency
+        //         }
+        //     })).then(res=>{
+        //         if(res.Ret!==200) return (this.btnloading=false)
+        //         const checkedList = res.Data.filter(i=>i.Exist)
+        //         if(checkedList.length){
+        //             checkedList.forEach(i=>{
+        //                 const item = this.selectEdbList.find(s=>s.edbId===i.EdbCode)
+        //                 item&&(item.isHighlight = true)
+        //             })
+        //             return this.$message.warning(/* '部分指标名称已存在,请重新填写' */this.$t('SteelChemicalPage.batch_add_hint2'))&&(this.btnloading=false)
+        //         }else{
+        //             //通过重名校验后添加进指标库
+        //             this.batchAddEdb(afterAddList,checkList)
+        //         }
+        //     })
+            
+        // },
+        checkEdbData(edbData){
+            return edbData.edbName&&edbData.frequency&&edbData.unit&&(this.classifyType===1?edbData.classify:true)
+        },
+        //显示操作提示弹窗
+        showHintDialog(type,list){
+            this.btnloading = false
+            this.isHintDiaShow = true
+            console.log(list);
+            
+            this.hintList = list
+            this.hintText = type==='all'
+            ?this.$t('YsDataPage.haved_all_msg') //本次添加的指标均已在指标库中,请勿重复添加!
+            :this.$t('YsDataPage.haved_some_msg') //指标库中已存在以下指标,会自动过滤!
+        },
+        //添加进指标库
+        batchAddEdb(afterAddList=[],checkList){
+            //checkList
+            fwmtInterface.addIndex(checkList.map(i=>{
+                return {
+                    EdbCode:i.edbId,
+                    EdbName:i.edbName,
+                    Unit:i.unit,
+                    Frequency:i.frequency,
+                    ClassifyId:this.classifyType===1?Number(i.classify):Number(this.selectClassify),
+                }
+            })).then(res=>{
+                if(res.Ret!==200) return (this.btnloading=false)
+                const checkedList = res.Data ? res.Data.filter(i=>i.Exist) : []
+                if(checkedList.length){
+                    checkedList.forEach(i=>{
+                        const item = this.selectEdbList.find(s=>s.edbId===i.EdbCode)
+                        item&&(item.isHighlight = true)
+                    })
+                    return this.$message.warning(/* '部分指标名称已存在,请重新填写' */this.$t('SteelChemicalPage.batch_add_hint2'))&&(this.btnloading=false)
+                }else{
+                    //若afterAddList有值 弹窗提示部分指标已加入
+                    if(afterAddList.length){
+                        this.showHintDialog('',afterAddList)
+                    }else{
+                        this.$message.success(this.$t('MsgPrompt.add_msg2'))
+                        this.$emit('close')
+                    }
+                }
+            })
+        },
+        //跳转至指标库
+        gotoEdbDetail(data){
+
+            const {classify_id,edb_info_id,unique_code} = data||{}
+            const href = this.$router.resolve({
+                path:'/database',
+                query:{
+                    code:unique_code,
+                    id:edb_info_id,
+                    classifyId:classify_id,
+                }
+            }).href
+            window.open(href,"_blank")
+        },
+        handleCloseDia(){
+            //两个弹窗都关掉
+            this.isHintDiaShow=false
+            this.$emit('close')
+        }
+    },
+};
+</script>
+
+<style lang="scss">
+.batch-add-edb-dia{
+    .dialog-container{
+        .el-input{
+            width:100%;
+        }
+        .el-table .highlight-row{
+            background-color:#fef0f0 !important;
+        }
+    }
+}
+</style>
+<style scoped lang="scss">
+.batch-add-edb-dia{
+    .dialog-container{
+        .select-box{
+            margin-bottom:20px;
+        }
+        .select-table{
+            max-height:600px;
+            overflow-y:auto;
+        }
+    }
+    .hint-dialog-wrap{
+            padding-bottom:30px;
+            .hint-item{
+                cursor: pointer;
+                margin-bottom: 10px;
+                &:hover{
+                    color:#409EFF;
+                    text-decoration: underline;
+                }
+            }
+        }
+}
+</style>