|
@@ -83,7 +83,7 @@
|
|
:rowKey="record => record.id"
|
|
:rowKey="record => record.id"
|
|
:columns="columns"
|
|
:columns="columns"
|
|
:data="loadData"
|
|
:data="loadData"
|
|
- :scroll="{ x: 1290, y: tableHeight }"
|
|
|
|
|
|
+ :scroll="{ x: 1460, y: tableHeight }"
|
|
bordered
|
|
bordered
|
|
>
|
|
>
|
|
<!-- 操作 -->
|
|
<!-- 操作 -->
|
|
@@ -146,7 +146,7 @@ export default {
|
|
{
|
|
{
|
|
title: '收款单号',
|
|
title: '收款单号',
|
|
dataIndex: 'settleNo',
|
|
dataIndex: 'settleNo',
|
|
- width: 140,
|
|
|
|
|
|
+ width: 220,
|
|
align: 'center',
|
|
align: 'center',
|
|
customRender: function (text) {
|
|
customRender: function (text) {
|
|
return text || '--'
|
|
return text || '--'
|
|
@@ -155,7 +155,7 @@ export default {
|
|
{
|
|
{
|
|
title: '关联单号',
|
|
title: '关联单号',
|
|
dataIndex: 'bizNo',
|
|
dataIndex: 'bizNo',
|
|
- width: 140,
|
|
|
|
|
|
+ width: 220,
|
|
align: 'center',
|
|
align: 'center',
|
|
customRender: function (text) {
|
|
customRender: function (text) {
|
|
return text || '--'
|
|
return text || '--'
|
|
@@ -295,7 +295,7 @@ export default {
|
|
// 收款
|
|
// 收款
|
|
handleCollectionSing (row) {
|
|
handleCollectionSing (row) {
|
|
this.loading = true
|
|
this.loading = true
|
|
- settleReceiptMoney({ id: row.id }).then(res => {
|
|
|
|
|
|
+ settleReceiptMoney([row.id]).then(res => {
|
|
this.loading = false
|
|
this.loading = false
|
|
if (res.status == 200) {
|
|
if (res.status == 200) {
|
|
this.$message.success(res.message)
|
|
this.$message.success(res.message)
|
|
@@ -317,7 +317,7 @@ export default {
|
|
return
|
|
return
|
|
}
|
|
}
|
|
this.loading = true
|
|
this.loading = true
|
|
- settleReceiptMoney({ settleChangeIds: this.selectedRowKeys }).then(res => {
|
|
|
|
|
|
+ settleReceiptMoney(this.selectedRowKeys).then(res => {
|
|
this.loading = false
|
|
this.loading = false
|
|
if (res.status == 200) {
|
|
if (res.status == 200) {
|
|
this.$message.success(res.message)
|
|
this.$message.success(res.message)
|