|
@@ -136,6 +136,7 @@
|
|
:show="baseModal"
|
|
:show="baseModal"
|
|
type="1"
|
|
type="1"
|
|
:itemSn="verifyAccountBillSn"
|
|
:itemSn="verifyAccountBillSn"
|
|
|
|
+ :dealerSn="dealerSn"
|
|
@cancel="baseModal=false"
|
|
@cancel="baseModal=false"
|
|
@ok="hanldAudit"></baseTzModal>
|
|
@ok="hanldAudit"></baseTzModal>
|
|
</div>
|
|
</div>
|
|
@@ -181,7 +182,8 @@ export default {
|
|
endDate: '',
|
|
endDate: '',
|
|
bizNo: '',
|
|
bizNo: '',
|
|
changeType: undefined,
|
|
changeType: undefined,
|
|
- bizType: undefined
|
|
|
|
|
|
+ bizType: undefined,
|
|
|
|
+ bizStatus: undefined
|
|
},
|
|
},
|
|
creatDate: [],
|
|
creatDate: [],
|
|
chooseList: [],
|
|
chooseList: [],
|
|
@@ -285,15 +287,15 @@ export default {
|
|
centered: true,
|
|
centered: true,
|
|
closable: true,
|
|
closable: true,
|
|
onOk () {
|
|
onOk () {
|
|
- _this.delDetail([row.detailSn])
|
|
|
|
|
|
+ _this.delDetail([row.detailSn], 1)
|
|
}
|
|
}
|
|
})
|
|
})
|
|
},
|
|
},
|
|
- delDetail (snList) {
|
|
|
|
|
|
+ delDetail (snList, type) {
|
|
const _this = this
|
|
const _this = this
|
|
_this.delLoading = true
|
|
_this.delLoading = true
|
|
_this.spinning = true
|
|
_this.spinning = true
|
|
- verifyAcountBillDetailDel({ verifyAccountBillSn: _this.verifyAccountBillSn, detailSnList: snList })
|
|
|
|
|
|
+ verifyAcountBillDetailDel({ verifyAccountBillSn: _this.verifyAccountBillSn, detailSnList: snList, cascadeFlag: type })
|
|
.then(res => {
|
|
.then(res => {
|
|
if (res.status == 200) {
|
|
if (res.status == 200) {
|
|
_this.resetTable(false)
|
|
_this.resetTable(false)
|
|
@@ -320,6 +322,7 @@ export default {
|
|
this.productForm.changeType = undefined
|
|
this.productForm.changeType = undefined
|
|
this.productForm.bizType = undefined
|
|
this.productForm.bizType = undefined
|
|
this.productForm.bizStatus = undefined
|
|
this.productForm.bizStatus = undefined
|
|
|
|
+ this.productForm.bizStatus = undefined
|
|
this.creatDate = []
|
|
this.creatDate = []
|
|
this.$refs.rangeDate.resetDate(this.creatDate)
|
|
this.$refs.rangeDate.resetDate(this.creatDate)
|
|
this.$refs.table.refresh(!!flag)
|
|
this.$refs.table.refresh(!!flag)
|
|
@@ -406,7 +409,7 @@ export default {
|
|
centered: true,
|
|
centered: true,
|
|
closable: true,
|
|
closable: true,
|
|
onOk () {
|
|
onOk () {
|
|
- _this.delDetail(snList)
|
|
|
|
|
|
+ _this.delDetail(snList, 0)
|
|
}
|
|
}
|
|
})
|
|
})
|
|
}
|
|
}
|