| | |
| | | ], |
| | | SelectValue:'id', |
| | | btmOption:{ |
| | | columnBtn:false, |
| | | addBtn:false, |
| | | index:true, |
| | | border:true, |
| | |
| | | }, |
| | | Option:{ |
| | | addBtn:false, |
| | | columnBtn:false, |
| | | index:true, |
| | | border:true, |
| | | menu:false, |
| | |
| | | option: { |
| | | submitBtn:false, |
| | | emptyBtn:false, |
| | | |
| | | columnBtn:false, |
| | | column: [ |
| | | { |
| | | label: '主题库/分类编号', |
| | |
| | | //编码规则查询 |
| | | SelectFindeHandler(){ |
| | | const masterParameter = {}; |
| | | masterParameter[`conditionMap['${this.SelectValue}']`] = `*${this.SelectFInd}*`; |
| | | masterParameter[`conditionMap['${this.SelectValue}']`] = this.SelectFInd; |
| | | this.MasterdefaultRend(masterParameter) |
| | | }, |
| | | //编码规则失焦 |
| | |
| | | referType:'coderule', |
| | | isMuti:'false', |
| | | 'conditionMap["lcstatus"]':'Released', |
| | | 'limit':'-1', |
| | | ...masterParameter |
| | | }).then(res=>{ |
| | | this.masterData=res.data.records; |
| | |
| | | //关键属性查询 |
| | | KeySelectFindeHandler(){ |
| | | const masterParameter = {}; |
| | | masterParameter[`conditionMap['${this.SelectValue}']`] = `*${this.SelectFInd}*`; |
| | | masterParameter[`conditionMap['${this.SelectValue}']`] = this.SelectFInd; |
| | | this.KeydefaultRend(masterParameter) |
| | | }, |
| | | //关键属性接口 |
| | |
| | | referType:'codekeyattrrepeat', |
| | | isMuti:'false', |
| | | 'conditionMap["lcstatus"]':'Enabled', |
| | | 'limit':'-1', |
| | | ...masterParameter |
| | | }).then(res=>{ |
| | | this.KeyData=res.data.records; |
| | |
| | | //相似项查询 |
| | | SimSelectFindeHandler(){ |
| | | const masterParameter = {}; |
| | | masterParameter[`conditionMap['${this.SelectValue}']`] = `*${this.SelectFInd}*`; |
| | | masterParameter[`conditionMap['${this.SelectValue}']`] = this.SelectFInd; |
| | | this.simdefaultRend(masterParameter) |
| | | }, |
| | | //相似项多选 |
| | |
| | | referType:'coderesemblerule', |
| | | isMuti:'false', |
| | | 'conditionMap["lcstatus"]':'Enabled', |
| | | 'limit':'-1', |
| | | ...masterParameter |
| | | }).then(res=>{ |
| | | this.simData=res.data.records; |
| | |
| | | //业务类型查询 |
| | | BtmSelectFindeHandler(){ |
| | | const masterParameter = {}; |
| | | masterParameter[`conditionMap['${this.SelectValue}']`] = `*${this.SelectFInd}*`; |
| | | masterParameter[`conditionMap['${this.SelectValue}']`] = this.SelectFInd; |
| | | this.btmdefaultRend(masterParameter); |
| | | }, |
| | | //业务类型多选 |
| | |
| | | }, |
| | | //业务类型接口 |
| | | btmdefaultRend(masterParameter){ |
| | | referDataGrid({valueField:'id',isMuti:'false',...masterParameter}).then(res=>{ |
| | | referDataGrid({valueField:'id',isMuti:'false','limit':'-1',...masterParameter}).then(res=>{ |
| | | this.BtmData=res.data.data.records |
| | | }) |
| | | } |