diff --git a/src/views/Program.vue b/src/views/Program.vue
index ee55ced..05302ff 100644
--- a/src/views/Program.vue
+++ b/src/views/Program.vue
@@ -58,7 +58,7 @@
批量删除
- 新增
+ 新增
@@ -357,46 +357,44 @@ export default {
}
},
addRule() { // 新增规则
- if(!this.isAddRule) {
- this.isAddRule = true;
- // this.tableData.length && this.tableData.push({ruleOperation: 0, indexNo: ""});
- if (this.tableData.length > 0) {
- this.tableData.push({
- ruleOperation: 0
- }, {
- indexNo: this.tableData.length + 1,
- isSubject: true,
- isDisabled: false, // 不禁用
- isSave: false, // 未保存
- lcId: this.lcId,
- resultOperation: 0,
- ruleOperation: 0,
- operationIds: "",
- value1: "",
- value2: "",
- value3: "",
- value4: "",
- value5: ""
- });
- } else {
- this.tableData.push({
- indexNo: this.tableData.length + 1,
- isSubject: true,
- isDisabled: false, // 不禁用
- isSave: false, // 未保存
- lcId: this.lcId,
- resultOperation: 0,
- ruleOperation: 0,
- operationIds: "",
- value1: "",
- value2: "",
- value3: "",
- value4: "",
- value5: ""
- });
- }
- this.setIndex()
+ this.isAddRule = true;
+ // this.tableData.length && this.tableData.push({ruleOperation: 0, indexNo: ""});
+ if (this.tableData.length > 0) {
+ this.tableData.push({
+ ruleOperation: 0
+ }, {
+ indexNo: this.tableData.length + 1,
+ isSubject: true,
+ isDisabled: false, // 不禁用
+ isSave: false, // 未保存
+ lcId: this.lcId,
+ resultOperation: 0,
+ ruleOperation: 0,
+ operationIds: "",
+ value1: "",
+ value2: "",
+ value3: "",
+ value4: "",
+ value5: ""
+ });
+ } else {
+ this.tableData.push({
+ indexNo: this.tableData.length + 1,
+ isSubject: true,
+ isDisabled: false, // 不禁用
+ isSave: false, // 未保存
+ lcId: this.lcId,
+ resultOperation: 0,
+ ruleOperation: 0,
+ operationIds: "",
+ value1: "",
+ value2: "",
+ value3: "",
+ value4: "",
+ value5: ""
+ });
}
+ this.setIndex()
},
changeResult(row) { // (左右)结果运算符(0:且 1:或 默认0)
row.resultOperation = row.resultOperation === 0 ? 1 : 0;