报价区域新增网点吴反应bug

This commit is contained in:
wuteng 2025-11-03 17:41:50 +08:00
parent a395568a16
commit a7310e3985
2 changed files with 9 additions and 3 deletions

View File

@ -275,7 +275,10 @@ export default {
/** 新增按钮操作 */
handleAdd(row) {
this.currentId=null;
this.formOpType = 1;
this.formOpType =0;
setTimeout(() => {
this.formOpType = 1;
}, 500);
},
handleSelect(){
this.$emit("on-changed",this.currentId);

View File

@ -240,7 +240,10 @@ export default {
/** 新增按钮操作 */
handleAdd(row) {
this.currentId=null;
this.formOpType = 1;
this.formOpType = 0;
setTimeout(() => {
this.formOpType = 1;
}, 500);
},
handleSelect(){
this.$emit("on-changed",this.currentId);
@ -251,7 +254,7 @@ export default {
/** 修改按钮操作 */
handleUpdate(row) {
this.currentId= row.areaId;
this.formOpType = 2;
this.formOpType = 2;
},
handleFormChanged(){
this.getList();