|
@@ -87,7 +87,7 @@
|
|
|
.custom_table_header {
|
|
|
vertical-align: middle;
|
|
|
&::before {
|
|
|
- content: '*';
|
|
|
+ content: "*";
|
|
|
color: red;
|
|
|
font-size: 12px;
|
|
|
margin-right: 4px;
|
|
@@ -141,7 +141,11 @@
|
|
|
<template slot-scope="scope">
|
|
|
<div class="btn_box">
|
|
|
<div class="btn_div">
|
|
|
- <img @click="addGroup(scope)" src="../../images/add-new-rule-sub.png" alt />
|
|
|
+ <img
|
|
|
+ @click="addGroup(scope)"
|
|
|
+ src="../../images/add-new-rule-sub.png"
|
|
|
+ alt
|
|
|
+ />
|
|
|
</div>
|
|
|
<div class="btn_div" v-if="!isLastDate(scope.row.groupId)">
|
|
|
<img
|
|
@@ -158,33 +162,44 @@
|
|
|
label="附加信息"
|
|
|
v-if="showMsg || showMsg2"
|
|
|
>
|
|
|
-
|
|
|
- <template slot="header" slot-scope="scope">
|
|
|
- <div :class="showMsg?'custom_table_header':''">附加信息</div>
|
|
|
+ <template slot="header">
|
|
|
+ <div :class="showMsg ? 'custom_table_header' : ''">附加信息</div>
|
|
|
</template>
|
|
|
<template slot-scope="scope">
|
|
|
<el-form-item
|
|
|
:prop="`klRuleByIdSub[${scope.$index}].subMsg`"
|
|
|
- :rules="showMsg?rules.subMsg:showMsg2?rules.subMsgs:[]"
|
|
|
- :class="scope.row.subMsg?'form-texarea':''"
|
|
|
+ :rules="showMsg ? rules.subMsg : showMsg2 ? rules.subMsgs : []"
|
|
|
+ :class="scope.row.subMsg ? 'form-texarea' : ''"
|
|
|
class="texarea-form"
|
|
|
>
|
|
|
<el-input
|
|
|
type="textarea"
|
|
|
- :autosize="{minRows: 1,maxRows: 2}"
|
|
|
+ :autosize="{ minRows: 1, maxRows: 2 }"
|
|
|
placeholder="请输入附加信息"
|
|
|
v-model.trim="scope.row.subMsg"
|
|
|
></el-input>
|
|
|
</el-form-item>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column width="80px" v-if="maxNum && maxNum > 1" label="基础规则" prop="groupType">
|
|
|
+ <el-table-column
|
|
|
+ width="80px"
|
|
|
+ v-if="maxNum && maxNum > 1"
|
|
|
+ label="基础规则"
|
|
|
+ prop="groupType"
|
|
|
+ >
|
|
|
<template slot-scope="scope">
|
|
|
<div class="btn_box">
|
|
|
<div class="btn_div" v-if="!isMax(scope.row.groupId)">
|
|
|
- <img @click="addChildGroup(scope)" src="../../images/add-new-rule-sub.png" alt />
|
|
|
+ <img
|
|
|
+ @click="addChildGroup(scope)"
|
|
|
+ src="../../images/add-new-rule-sub.png"
|
|
|
+ alt
|
|
|
+ />
|
|
|
</div>
|
|
|
- <div class="btn_div" v-if="klRuleByIdSub.length > 1 && !scope.row.disabled">
|
|
|
+ <div
|
|
|
+ class="btn_div"
|
|
|
+ v-if="klRuleByIdSub.length > 1 && !scope.row.disabled"
|
|
|
+ >
|
|
|
<img
|
|
|
@click="$emit('delGroupChild', scope.row.groupChildId)"
|
|
|
src="../../images/add-new-rule-del.png"
|
|
@@ -344,8 +359,8 @@
|
|
|
validator: (rule, value, callback) => {
|
|
|
subMaxOperator(scope, rule, value, callback);
|
|
|
},
|
|
|
- trigger: ['change']
|
|
|
- }
|
|
|
+ trigger: ['change'],
|
|
|
+ },
|
|
|
]"
|
|
|
>
|
|
|
<el-select
|
|
@@ -378,8 +393,8 @@
|
|
|
validator: (rule, value, callback) => {
|
|
|
subMaxValue(scope, rule, value, callback);
|
|
|
},
|
|
|
- trigger: ['change']
|
|
|
- }
|
|
|
+ trigger: ['change'],
|
|
|
+ },
|
|
|
]"
|
|
|
>
|
|
|
<el-input
|
|
@@ -392,7 +407,9 @@
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="6">
|
|
|
- <el-form-item :prop="`klRuleByIdSub[${scope.$index}].subMaxUnit`">
|
|
|
+ <el-form-item
|
|
|
+ :prop="`klRuleByIdSub[${scope.$index}].subMaxUnit`"
|
|
|
+ >
|
|
|
<el-input
|
|
|
type="text"
|
|
|
@focus="setScrollRight"
|
|
@@ -419,8 +436,8 @@
|
|
|
validator: (rule, value, callback) => {
|
|
|
subMinOperatorRule(scope, rule, value, callback);
|
|
|
},
|
|
|
- trigger: ['change']
|
|
|
- }
|
|
|
+ trigger: ['change'],
|
|
|
+ },
|
|
|
]"
|
|
|
>
|
|
|
<el-select
|
|
@@ -453,8 +470,8 @@
|
|
|
validator: (rule, value, callback) => {
|
|
|
subMinValueRule(scope, rule, value, callback);
|
|
|
},
|
|
|
- trigger: ['change']
|
|
|
- }
|
|
|
+ trigger: ['change'],
|
|
|
+ },
|
|
|
]"
|
|
|
>
|
|
|
<el-input
|
|
@@ -467,7 +484,9 @@
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="6">
|
|
|
- <el-form-item :prop="`klRuleByIdSub[${scope.$index}].subMinUnit`">
|
|
|
+ <el-form-item
|
|
|
+ :prop="`klRuleByIdSub[${scope.$index}].subMinUnit`"
|
|
|
+ >
|
|
|
<el-input
|
|
|
type="text"
|
|
|
@focus="setScrollRight"
|
|
@@ -479,7 +498,10 @@
|
|
|
</el-row>
|
|
|
</el-form-item>
|
|
|
<!-- v-if="klRuleByIdSub[scope.$index].subType !== 6 && klRuleByIdSub[scope.$index].dataType === '2'" -->
|
|
|
- <div style="flex: 2" v-if="scope.row.subType != 6 && scope.row.dataType == '2'">
|
|
|
+ <div
|
|
|
+ style="flex: 2"
|
|
|
+ v-if="scope.row.subType != 6 && scope.row.dataType == '2'"
|
|
|
+ >
|
|
|
<el-form-item
|
|
|
class="type_content_item"
|
|
|
style="width: 100%"
|
|
@@ -490,14 +512,14 @@
|
|
|
{
|
|
|
required: true,
|
|
|
message: '请输入' + textName(scope.$index),
|
|
|
- trigger: 'blur'
|
|
|
+ trigger: 'blur',
|
|
|
},
|
|
|
{
|
|
|
validator: (rule, value, callback) => {
|
|
|
subEqValue(scope, rule, value, callback);
|
|
|
},
|
|
|
- trigger: 'blur'
|
|
|
- }
|
|
|
+ trigger: 'blur',
|
|
|
+ },
|
|
|
]"
|
|
|
>
|
|
|
<el-input
|
|
@@ -522,14 +544,14 @@
|
|
|
{
|
|
|
required: true,
|
|
|
message: '请输入' + textName(scope.$index),
|
|
|
- trigger: 'blur'
|
|
|
+ trigger: 'blur',
|
|
|
},
|
|
|
{
|
|
|
validator: (rule, value, callback) => {
|
|
|
subEqValue(scope, rule, value, callback);
|
|
|
},
|
|
|
- trigger: 'blur'
|
|
|
- }
|
|
|
+ trigger: 'blur',
|
|
|
+ },
|
|
|
]"
|
|
|
>
|
|
|
<el-input
|
|
@@ -549,82 +571,83 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-import api from '@api/knowledgeLib.js';
|
|
|
-import { tableRules } from './rules';
|
|
|
+import api from "@api/knowledgeLib.js";
|
|
|
+import { tableRules } from "./rules";
|
|
|
export default {
|
|
|
- name: 'AddNewRuleTable',
|
|
|
+ name: "AddNewRuleTable",
|
|
|
data() {
|
|
|
return {
|
|
|
- numTypes: '',
|
|
|
- subConceptIdIndex: '',
|
|
|
+ numTypes: "",
|
|
|
+ subConceptIdIndex: "",
|
|
|
operMaxList: [
|
|
|
- { name: '<=', key: '<=' },
|
|
|
- { name: '<', key: '<' }
|
|
|
+ { name: "<=", key: "<=" },
|
|
|
+ { name: "<", key: "<" },
|
|
|
],
|
|
|
operMinList: [
|
|
|
- { name: '>', key: '>' },
|
|
|
- { name: '>=', key: '>=' }
|
|
|
+ { name: ">", key: ">" },
|
|
|
+ { name: ">=", key: ">=" },
|
|
|
],
|
|
|
rules: tableRules,
|
|
|
- theRef: null
|
|
|
+ theRef: null,
|
|
|
};
|
|
|
},
|
|
|
methods: {
|
|
|
setScrollRight() {
|
|
|
this.$nextTick(() => {
|
|
|
- this.$refs.table.bodyWrapper.scrollLeft = this.$refs.table.bodyWrapper.scrollWidth;
|
|
|
+ this.$refs.table.bodyWrapper.scrollLeft =
|
|
|
+ this.$refs.table.bodyWrapper.scrollWidth;
|
|
|
});
|
|
|
},
|
|
|
maxChange(e, val, type) {
|
|
|
if (
|
|
|
- type === 'i' &&
|
|
|
+ type === "i" &&
|
|
|
this.klRuleByIdSub[val].subMaxOperator &&
|
|
|
- this.klRuleByIdSub[val].subMaxOperator != ''
|
|
|
+ this.klRuleByIdSub[val].subMaxOperator != ""
|
|
|
) {
|
|
|
- this.$emit('clearValidate', [
|
|
|
+ this.$emit("clearValidate", [
|
|
|
`klRuleByIdSub[${val}].subMinValue`,
|
|
|
- `klRuleByIdSub[${val}].subMinOperator`
|
|
|
+ `klRuleByIdSub[${val}].subMinOperator`,
|
|
|
]);
|
|
|
} else if (
|
|
|
- type === 's' &&
|
|
|
+ type === "s" &&
|
|
|
this.klRuleByIdSub[val].subMaxValue &&
|
|
|
- this.klRuleByIdSub[val].subMaxValue != ''
|
|
|
+ this.klRuleByIdSub[val].subMaxValue != ""
|
|
|
) {
|
|
|
- this.$emit('clearValidate', [
|
|
|
+ this.$emit("clearValidate", [
|
|
|
`klRuleByIdSub[${val}].subMinValue`,
|
|
|
- `klRuleByIdSub[${val}].subMinOperator`
|
|
|
+ `klRuleByIdSub[${val}].subMinOperator`,
|
|
|
]);
|
|
|
}
|
|
|
this.setScrollRight();
|
|
|
},
|
|
|
minChange(e, val, type) {
|
|
|
if (
|
|
|
- type === 'i' &&
|
|
|
+ type === "i" &&
|
|
|
this.klRuleByIdSub[val].subMinOperator &&
|
|
|
- this.klRuleByIdSub[val].subMinOperator != ''
|
|
|
+ this.klRuleByIdSub[val].subMinOperator != ""
|
|
|
) {
|
|
|
- this.$emit('clearValidate', [
|
|
|
+ this.$emit("clearValidate", [
|
|
|
`klRuleByIdSub[${val}].subMaxOperator`,
|
|
|
- `klRuleByIdSub[${val}].subMaxValue`
|
|
|
+ `klRuleByIdSub[${val}].subMaxValue`,
|
|
|
]);
|
|
|
} else if (
|
|
|
- type === 's' &&
|
|
|
+ type === "s" &&
|
|
|
this.klRuleByIdSub[val].subMinValue &&
|
|
|
- this.klRuleByIdSub[val].subMinValue != ''
|
|
|
+ this.klRuleByIdSub[val].subMinValue != ""
|
|
|
) {
|
|
|
- this.$emit('clearValidate', [
|
|
|
+ this.$emit("clearValidate", [
|
|
|
`klRuleByIdSub[${val}].subMaxOperator`,
|
|
|
- `klRuleByIdSub[${val}].subMaxValue`
|
|
|
+ `klRuleByIdSub[${val}].subMaxValue`,
|
|
|
]);
|
|
|
}
|
|
|
this.setScrollRight();
|
|
|
},
|
|
|
addGroup(scope) {
|
|
|
- this.$emit('addGroup', null, { groupId: scope.row.groupId });
|
|
|
+ this.$emit("addGroup", null, { groupId: scope.row.groupId });
|
|
|
this.$refs.table.bodyWrapper.scrollLeft = 0;
|
|
|
},
|
|
|
addChildGroup(scope) {
|
|
|
- this.$emit('addGroup', scope.row.groupId, { index: scope.$index });
|
|
|
+ this.$emit("addGroup", scope.row.groupId, { index: scope.$index });
|
|
|
this.$refs.table.bodyWrapper.scrollLeft = 0;
|
|
|
},
|
|
|
scrollFun() {
|
|
@@ -641,16 +664,16 @@ export default {
|
|
|
// },
|
|
|
// cellStyle
|
|
|
cellStyle({ row, column, rowIndex, columnIndex }) {
|
|
|
- if (column.label == '组' || column.label == '基础规则') return {};
|
|
|
- if (column.label == '附加信息') return { 'padding-top': '14px' };
|
|
|
- return { 'vertical-align': 'top', 'padding-top': '14px' };
|
|
|
+ if (column.label == "组" || column.label == "基础规则") return {};
|
|
|
+ if (column.label == "附加信息") return { "padding-top": "14px" };
|
|
|
+ return { "vertical-align": "top", "padding-top": "14px" };
|
|
|
},
|
|
|
// 最大值 选择rule
|
|
|
subMaxOperator(scope, rule, value, callback) {
|
|
|
const { subMaxValue, subMinOperator, subMinValue } = scope.row;
|
|
|
const val = value + subMinOperator + subMinValue + subMaxValue;
|
|
|
- if (!val || (!value && subMaxValue !== '')) {
|
|
|
- callback(new Error('最大值和最小值至少完整填写一个,单位不必填'));
|
|
|
+ if (!val || (!value && subMaxValue !== "")) {
|
|
|
+ callback(new Error("最大值和最小值至少完整填写一个,单位不必填"));
|
|
|
} else {
|
|
|
callback();
|
|
|
}
|
|
@@ -660,10 +683,10 @@ export default {
|
|
|
const { subMaxOperator, subMinOperator, subMinValue } = scope.row;
|
|
|
const val = value + subMaxOperator + subMinValue + subMinOperator;
|
|
|
const isNum = /^(\-|\+)?\d+(\.\d+)?$/.test(value);
|
|
|
- if (!val || (value == '' && subMaxOperator)) {
|
|
|
- callback(new Error('最大值和最小值至少完整填写一个,单位不必填'));
|
|
|
- } else if (value !== '' && !isNum) {
|
|
|
- callback(new Error('只能输入数字'));
|
|
|
+ if (!val || (value == "" && subMaxOperator)) {
|
|
|
+ callback(new Error("最大值和最小值至少完整填写一个,单位不必填"));
|
|
|
+ } else if (value !== "" && !isNum) {
|
|
|
+ callback(new Error("只能输入数字"));
|
|
|
} else {
|
|
|
callback();
|
|
|
}
|
|
@@ -672,8 +695,8 @@ export default {
|
|
|
subMinOperatorRule(scope, rule, value, callback) {
|
|
|
const { subMaxValue, subMaxOperator, subMinValue } = scope.row;
|
|
|
const val = value + subMaxOperator + subMinValue + subMaxValue;
|
|
|
- if (!val || (!value && subMinValue !== '')) {
|
|
|
- callback(new Error('最大值和最小值至少完整填写一个,单位不必填'));
|
|
|
+ if (!val || (!value && subMinValue !== "")) {
|
|
|
+ callback(new Error("最大值和最小值至少完整填写一个,单位不必填"));
|
|
|
} else {
|
|
|
callback();
|
|
|
}
|
|
@@ -683,39 +706,41 @@ export default {
|
|
|
const { subMaxValue, subMinOperator, subMaxOperator } = scope.row;
|
|
|
const val = value + subMaxOperator + subMaxValue + subMinOperator;
|
|
|
const isNum = /^(\-|\+)?\d+(\.\d+)?$/.test(value);
|
|
|
- if (!val || (value == '' && subMinOperator)) {
|
|
|
- callback(new Error('最大值和最小值至少完整填写一个,单位不必填'));
|
|
|
- } else if (value !== '' && !isNum) {
|
|
|
- callback(new Error('只能输入数字'));
|
|
|
+ if (!val || (value == "" && subMinOperator)) {
|
|
|
+ callback(new Error("最大值和最小值至少完整填写一个,单位不必填"));
|
|
|
+ } else if (value !== "" && !isNum) {
|
|
|
+ callback(new Error("只能输入数字"));
|
|
|
} else {
|
|
|
callback();
|
|
|
}
|
|
|
},
|
|
|
// 医学内容rule
|
|
|
subEqValue(scope, rule, value, callback) {
|
|
|
- if (value === '') {
|
|
|
- callback(new Error('请输入' + this.textName(scope.$index)));
|
|
|
+ if (value === "") {
|
|
|
+ callback(new Error("请输入" + this.textName(scope.$index)));
|
|
|
} else if (value.length > 200) {
|
|
|
- callback(new Error(this.textName(scope.$index) + '不能超过200字'));
|
|
|
+ callback(new Error(this.textName(scope.$index) + "不能超过200字"));
|
|
|
} else {
|
|
|
callback();
|
|
|
}
|
|
|
},
|
|
|
// 判断是否为最后一条规则
|
|
|
isLastDate(id) {
|
|
|
- const tableLength = this.klRuleByIdSub.filter(item => item.groupId !== id)
|
|
|
- .length;
|
|
|
+ const tableLength = this.klRuleByIdSub.filter(
|
|
|
+ (item) => item.groupId !== id
|
|
|
+ ).length;
|
|
|
return tableLength === 0;
|
|
|
},
|
|
|
// 是否超出最大规则数
|
|
|
isMax(id) {
|
|
|
- const typeNum = this.klRuleByIdSub.filter(item => item.groupId === id)
|
|
|
- .length;
|
|
|
+ const typeNum = this.klRuleByIdSub.filter(
|
|
|
+ (item) => item.groupId === id
|
|
|
+ ).length;
|
|
|
return typeNum >= this.maxNum;
|
|
|
},
|
|
|
// 基础规则类型选择
|
|
|
subTypeChange(e, index) {
|
|
|
- this.$emit('subTypeChange', e, index);
|
|
|
+ this.$emit("subTypeChange", e, index);
|
|
|
},
|
|
|
//
|
|
|
setTheRef(e, val) {
|
|
@@ -724,17 +749,17 @@ export default {
|
|
|
// 规则术语类型
|
|
|
subCodeChange(val, index) {
|
|
|
//基础规则术语类型修改
|
|
|
- this.$emit('childSubCodeChange', val, index, this.numTypes);
|
|
|
+ this.$emit("childSubCodeChange", val, index, this.numTypes);
|
|
|
},
|
|
|
clearConcept(index) {
|
|
|
- this.$emit('childClearConcept', index);
|
|
|
+ this.$emit("childClearConcept", index);
|
|
|
},
|
|
|
clearNumText(index) {
|
|
|
- this.$emit('childClearNumText', index);
|
|
|
+ this.$emit("childClearNumText", index);
|
|
|
},
|
|
|
//医学标准术语change
|
|
|
subConceptIdfocus(index) {
|
|
|
- this.subConceptIdIndex = '';
|
|
|
+ this.subConceptIdIndex = "";
|
|
|
this.subConceptIdIndex = index;
|
|
|
this.setTheRef(1, `klRuleByIdSub[${index}].subConceptId`);
|
|
|
},
|
|
@@ -742,25 +767,25 @@ export default {
|
|
|
searchConcept(val) {
|
|
|
const param = {
|
|
|
excludedConceptIds: [
|
|
|
- this.klRuleByIdSub[this.subConceptIdIndex].subType
|
|
|
+ this.klRuleByIdSub[this.subConceptIdIndex].subType,
|
|
|
],
|
|
|
libType: this.klRuleByIdSub[this.subConceptIdIndex].subLenCode,
|
|
|
name: val,
|
|
|
};
|
|
|
api
|
|
|
.searchConcept(param)
|
|
|
- .then(res => {
|
|
|
- if (res.data.code == '0') {
|
|
|
+ .then((res) => {
|
|
|
+ if (res.data.code == "0") {
|
|
|
const data = res.data.data;
|
|
|
- this.$emit('setFormData', this.subConceptIdIndex, data);
|
|
|
+ this.$emit("setFormData", this.subConceptIdIndex, data);
|
|
|
}
|
|
|
})
|
|
|
- .catch(error => {
|
|
|
+ .catch((error) => {
|
|
|
console.log(error);
|
|
|
});
|
|
|
},
|
|
|
dataTypeChange(val, index) {
|
|
|
- this.$emit('ChildDataTypeChange', val, index);
|
|
|
+ this.$emit("ChildDataTypeChange", val, index);
|
|
|
},
|
|
|
// 处理要合并相同行的列
|
|
|
getSpanArr(data) {
|
|
@@ -793,13 +818,13 @@ export default {
|
|
|
},
|
|
|
// 合并单元格
|
|
|
ObjectSpanMethod({ row, column, rowIndex, columnIndex }) {
|
|
|
- if (this.ruleTermCodeStr == '3-108-1') {
|
|
|
+ if (this.ruleTermCodeStr == "3-108-1") {
|
|
|
if (columnIndex == 0) {
|
|
|
const _row = this.spanArr[rowIndex];
|
|
|
const _col = _row > 0 ? 1 : 0;
|
|
|
return {
|
|
|
rowspan: _row,
|
|
|
- colspan: _col
|
|
|
+ colspan: _col,
|
|
|
};
|
|
|
}
|
|
|
} else {
|
|
@@ -808,23 +833,23 @@ export default {
|
|
|
const _col = _row > 0 ? 1 : 0;
|
|
|
return {
|
|
|
rowspan: _row,
|
|
|
- colspan: _col
|
|
|
+ colspan: _col,
|
|
|
};
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
showDataType(index) {
|
|
|
return (
|
|
|
- (this.numTypes + ',').indexOf(
|
|
|
- this.klRuleByIdSub[index].subLenCode + ','
|
|
|
+ (this.numTypes + ",").indexOf(
|
|
|
+ this.klRuleByIdSub[index].subLenCode + ","
|
|
|
) === -1
|
|
|
);
|
|
|
},
|
|
|
textName(index) {
|
|
|
return this.klRuleByIdSub[index].subType !== 6 &&
|
|
|
- this.klRuleByIdSub[index].dataType == '2'
|
|
|
- ? '医学内容'
|
|
|
- : '正则表达式';
|
|
|
+ this.klRuleByIdSub[index].dataType == "2"
|
|
|
+ ? "医学内容"
|
|
|
+ : "正则表达式";
|
|
|
},
|
|
|
blurRef() {
|
|
|
if (this.theRef) {
|
|
@@ -833,7 +858,7 @@ export default {
|
|
|
// document.getElementById(this.theRef).focus()
|
|
|
// document.getElementById(this.theRef).value = 123
|
|
|
}
|
|
|
- }
|
|
|
+ },
|
|
|
},
|
|
|
components: {},
|
|
|
mounted() {
|
|
@@ -847,7 +872,7 @@ export default {
|
|
|
// );
|
|
|
},
|
|
|
created() {
|
|
|
- this.numTypes = localStorage.getItem('zskNumDict');
|
|
|
+ this.numTypes = localStorage.getItem("zskNumDict");
|
|
|
this.getSpanArr(this.klRuleByIdSub);
|
|
|
},
|
|
|
beforeUpdate() {
|
|
@@ -875,21 +900,21 @@ export default {
|
|
|
props: {
|
|
|
klRuleByIdSub: {
|
|
|
type: Array,
|
|
|
- required: true
|
|
|
+ required: true,
|
|
|
},
|
|
|
maxNum: {
|
|
|
- default: null
|
|
|
+ default: null,
|
|
|
},
|
|
|
showMsg: {
|
|
|
- default: null
|
|
|
+ default: null,
|
|
|
},
|
|
|
- showMsg2:{
|
|
|
- default: null
|
|
|
+ showMsg2: {
|
|
|
+ default: null,
|
|
|
},
|
|
|
ruleTermCodeStr: {
|
|
|
- default: null
|
|
|
+ default: null,
|
|
|
},
|
|
|
- }
|
|
|
+ },
|
|
|
};
|
|
|
</script>
|
|
|
|