|
@@ -377,10 +377,10 @@ export default {
|
|
|
const _this = this
|
|
|
this.$confirm({
|
|
|
title: '提示',
|
|
|
- content: <div style="text-align:center"><p style="margin-top:20px;">付款单号:{row.settleNo} { row.bizName } 合计{ this.toThousands(row.unsettleAmount) }</p><p>{row.settleClientName}</p><p>确认付款吗?</p></div>,
|
|
|
+ content: <div style="text-align:center"><p style="margin-top:20px;">{row.settleClientName}</p><p>付款单号:{row.settleNo} 合计{ this.toThousands(row.unsettleAmount) }</p><p>确认付款吗?</p></div>,
|
|
|
centered: true,
|
|
|
closable: true,
|
|
|
- class:'confirm-center',
|
|
|
+ class: 'confirm-center',
|
|
|
onOk () {
|
|
|
_this.settleAcountPay(null, { type: 0, row: row })
|
|
|
}
|
|
@@ -404,7 +404,7 @@ export default {
|
|
|
content: <div style="text-align:center"><p style="margin-top:20px;">共计{this.rowSelectionInfo.selectedRowKeys.length}单,合计金额{ _this.toThousands(this.selectTotalAmount) } </p><p>确认批量付款吗?</p></div>,
|
|
|
centered: true,
|
|
|
closable: true,
|
|
|
- class:'confirm-center',
|
|
|
+ class: 'confirm-center',
|
|
|
onOk () {
|
|
|
_this.settleAcountPay(null, { type: 1, row: null })
|
|
|
}
|