Browse Source

Merge branch 'ch/ETA_2.3.2' into debug

chenlei 2 weeks ago
parent
commit
4c7fb0bbd3
1 changed files with 3 additions and 3 deletions
  1. 3 3
      src/views/dataEntry_manage/thirdBase/clarkSons/addToBaseList.vue

+ 3 - 3
src/views/dataEntry_manage/thirdBase/clarkSons/addToBaseList.vue

@@ -446,7 +446,7 @@ export default {
 
     handleSave() {
       let haveIncomplete = this.addToBaseList.some(_ => !_.IndexName||!_.EtaClassifyId||!_.Unit)
-      if(haveIncomplete) return this.$message.warning('指标信息填写不完整')
+      if(haveIncomplete) return this.$message.warning(this.$t('SteelChemicalPage.batch_classify_info'))
 
       this.saveLoading = true;
       clarkSonsInterface.batchAddToLib(
@@ -475,10 +475,10 @@ export default {
       const { frequency,page_no,pageSize,keyWord,classify } = this.filterObj;
 
       let params = {
-        Frequency: frequency,
+        Frequencies: frequency.length ? frequency.join(',') : '',
         CurrentIndex: page_no,
         PageSize: pageSize,
-        SearchParams: keyWord,
+        KeyWord: keyWord,
         ClassifyIds: classify.length ? classify.join(',') : '',
       }
 			clarkSonsInterface.searchEdbBatch(params).then(res => {