|
@@ -207,6 +207,7 @@
|
|
|
:showMsg="showMsg"
|
|
|
:showMsg2="showMsg2"
|
|
|
:ruleTermCodeStr="ruleTermCodeStr"
|
|
|
+ :sign="sign"
|
|
|
@subTypeChange="subTypeChange"
|
|
|
@searchConcept="searchConcept"
|
|
|
@addGroup="addGroup"
|
|
@@ -249,6 +250,7 @@ export default {
|
|
|
msgDict: '', //显示附加信息的类型
|
|
|
firstPlace: null,
|
|
|
tableShow: true,
|
|
|
+ sign:1,
|
|
|
form: {
|
|
|
parDescription: '',
|
|
|
parRuleType: '',
|
|
@@ -268,6 +270,7 @@ export default {
|
|
|
const param = this.$route.params;
|
|
|
let info = param.data;
|
|
|
if (info) {
|
|
|
+ this.sign = 2
|
|
|
this.parId = info.parId;
|
|
|
this.isCopy = param.copy;
|
|
|
this.title = '规则维护-' + (this.isCopy ? '复制' : '修改') + '规则';
|
|
@@ -621,7 +624,8 @@ export default {
|
|
|
const param = {
|
|
|
excludedConceptIds: [this.form.parRuleType],
|
|
|
libType: this.form.parLenCode,
|
|
|
- name: val
|
|
|
+ name: val,
|
|
|
+ sign:this.sign
|
|
|
};
|
|
|
api
|
|
|
.searchConcept(param)
|