小bug处理和vue3代码生成器模板完善

This commit is contained in:
zhangdaiscott
2022-03-18 22:38:45 +08:00
parent 44d6f3228f
commit bc711932f7
8 changed files with 26 additions and 12 deletions

View File

@ -32,6 +32,7 @@
size="default"
:columns="columns"
:data="loadData"
:scroll="{}"
>
<div
slot="expandedRowRender"

View File

@ -31,6 +31,7 @@
size="default"
:columns="columns"
:data="loadData"
:scroll="{}"
>
<div
slot="expandedRowRender"

View File

@ -251,8 +251,6 @@
},
delRowCustom (index) {
console.log(index)
let all = this.orderMainModel
all['jeecgOrderCustomerList'].splice(index,1);
this.orderMainModel.jeecgOrderCustomerList.splice(index,1);
this.$forceUpdate();
},
@ -263,8 +261,6 @@
},
delRowTicket (index) {
console.log(index)
let all = this.orderMainModel
all['jeecgOrderTicketList'].splice(index,1);
this.orderMainModel.jeecgOrderTicketList.splice(index,1);
this.$forceUpdate();
},