|
@@ -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 => {
|