Commit 4c086a6d authored by yaya's avatar yaya

feat: 优化

parent 4733364e
......@@ -142,6 +142,9 @@ export default {
}, {
value: 80,
label: '退款受理中'
}, {
value: 90,
label: '已签收'
}, {
value: 100,
label: '已完成'
......
......@@ -259,8 +259,18 @@ export default {
* 完成结款
*/
handleToFinish(row) {
this.showFinishFinanceDialog = true
this.fianceItem = row
if (row.totalWaitEntryAmount && Number(row.totalWaitEntryAmount) > 0) {
this.$confirm('该藏家仍有部分收入未入账,请等全部入账后再进行操作', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
})
} else {
this.showFinishFinanceDialog = true
this.fianceItem = row
}
},
handleFinishSuccess(billId) {
this.list = this.list.filter((item) => {
......
......@@ -176,6 +176,9 @@ export default {
}, {
value: 80,
label: '退款受理中'
}, {
value: 90,
label: '已签收'
}, {
value: 100,
label: '已完成'
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment