8746622e by xiaomiao

--no commit message

1 parent 310a586d
...@@ -71,6 +71,7 @@ export default { ...@@ -71,6 +71,7 @@ export default {
71 //刷新值 71 //刷新值
72 refresh: 10, 72 refresh: 10,
73 ableOperation: true, 73 ableOperation: true,
74 list:[],
74 ruleForm: { 75 ruleForm: {
75 }, 76 },
76 rules: { 77 rules: {
...@@ -91,7 +92,8 @@ export default { ...@@ -91,7 +92,8 @@ export default {
91 onSubmit() { 92 onSubmit() {
92 this.ruleForm.bsmBusiness =this.$parent.bsmRepair; 93 this.ruleForm.bsmBusiness =this.$parent.bsmRepair;
93 this.ruleForm.jdmc = "审核"; 94 this.ruleForm.jdmc = "审核";
94 addidea(this.ruleForm).then((res) => { 95 this.list.push(this.ruleForm)
96 addidea(this.list).then((res) => {
95 if (res.code === 200) { 97 if (res.code === 200) {
96 this.$message.success("保存成功"); 98 this.$message.success("保存成功");
97 this.refresh += 1; 99 this.refresh += 1;
......