代码更新

This commit is contained in:
2022-12-01 11:49:08 +08:00
parent 5b4e93239c
commit d92bbafaf3
6 changed files with 65 additions and 19 deletions

View File

@@ -216,7 +216,7 @@
</div>
<AddDialog @AddChanged="querytable" />
<ViewDialog :dialog-show.sync="viewShow" :rowmst="mstrow" @AddChanged="querytable" />
<DivDialog :dialog-show.sync="divShow" :open-array="openParam" :rowmst="mstrow" @DivChanged="querytable" />
<DivDialog :dialog-show.sync="divShow" :open-array="openParam" :stor-id="storId" :rowmst="mstrow" @DivChanged="querytable" />
<TaskDialog :dialog-show.sync="taskShow" :open-array="openParam" :rowmst="mstrow" @TaskChanged="querytable" />
<MoneyDialog :dialog-show.sync="openMoneyDialog" :open-param="openParam" />
</div>
@@ -276,7 +276,8 @@ export default {
currentRow: null,
checkrows: [],
storlist: [],
billtypelist: []
billtypelist: [],
storId: null
}
},
mounted: function() {
@@ -358,7 +359,9 @@ export default {
},
divOpen() {
checkoutbill.getOutBillDtl({ 'iostorinv_id': this.currentRow.iostorinv_id }).then(res => {
debugger
this.openParam = res
this.storId = this.currentRow.stor_id
this.divShow = true
this.mstrow = this.currentRow
})