|
@@ -1604,7 +1604,8 @@ export default {
|
|
|
planChangeFtmsorderbillsplans(formData).then((response) => {
|
|
|
this.msgSuccess("成功提交");
|
|
|
if (response.code == 200) {
|
|
|
- this.$set(row, "billStatus", response.data.billStatus);
|
|
|
+ this.$set(row, "billStatus", 6);
|
|
|
+ this.$set(row, "disabled", true);
|
|
|
}
|
|
|
});
|
|
|
} else if (row.billStatus != 6) {
|
|
@@ -1614,9 +1615,9 @@ export default {
|
|
|
singleaddFtmsorderbillsplans(formData).then((response) => {
|
|
|
this.msgSuccess("成功提交");
|
|
|
if (response.code == 200) {
|
|
|
- // row["billStatus"] = response.data.billStatus;
|
|
|
this.$set(row, "id", response.data.id);
|
|
|
- this.$set(row, "billStatus", response.data.billStatus);
|
|
|
+ this.$set(row, "billStatus", 6);
|
|
|
+ this.$set(row, "disabled", true);
|
|
|
}
|
|
|
});
|
|
|
} else {
|
|
@@ -1648,7 +1649,7 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
changeplansRow(row) {
|
|
|
- if (billStatus != 5) {
|
|
|
+ if (row.billStatus != 5) {
|
|
|
this.msgSuccess("允许变更");
|
|
|
this.$set(row, "billStatus", 5);
|
|
|
this.$set(row, "disabled", false);
|