Commit 2db2b839 by liang ce

文案修改

parent 21e58414
...@@ -198,11 +198,11 @@ export default { ...@@ -198,11 +198,11 @@ export default {
agentId: this.searchSource.agentId, agentId: this.searchSource.agentId,
payStatus: this.searchSource.payStatus, payStatus: this.searchSource.payStatus,
buyerId: this.searchSource.UserMessage.emplId, buyerId: this.searchSource.UserMessage.emplId,
orgId: localStorage.getItem('orgId') orgId: 'ding9ddd48137390507735c2f4657eb6378f' //localStorage.getItem('orgId')
} }
$http.post(`/mingpay/v1/isv/order/list_order_page`, RechargeData).then((res) => { $http.post(`/mingpay/v1/isv/order/list_order_page`, RechargeData).then((res) => {
let data = res.data.data let data = res.data.data
this.pagination.total = parseInt(data.totalCount) this.pagination.total = parseInt(data.total)
this.OrderList = data.list this.OrderList = data.list
}) })
} }
......
...@@ -124,6 +124,7 @@ export default { ...@@ -124,6 +124,7 @@ export default {
$http.post(`/mingpay/v1/isv/order/statistical_product_page`, SubsidyListData).then((res) => { $http.post(`/mingpay/v1/isv/order/statistical_product_page`, SubsidyListData).then((res) => {
if (res.data.resultCode === 0) { if (res.data.resultCode === 0) {
this.dataSource = res.data.data.list this.dataSource = res.data.data.list
this.pagination.total = res.data.data.total
} else { } else {
this.$message.error(res.data.message) this.$message.error(res.data.message)
} }
......
...@@ -8,9 +8,7 @@ ...@@ -8,9 +8,7 @@
</span> </span>
<span slot="initialAmount">发放金额</span>> <span slot="initialAmount">发放金额</span>>
<span slot="residueAmount">余额</span> <span slot="residueAmount">余额</span>
<span slot="endTime" slot-scope="endTime"> <span slot="endTime"></span>
{{ timeToStr(endTime) }}
</span>
<span slot="createTime"></span> <span slot="createTime"></span>
</a-table> </a-table>
</div> </div>
...@@ -35,8 +33,7 @@ export default { ...@@ -35,8 +33,7 @@ export default {
dataIndex: 'residueAmount' dataIndex: 'residueAmount'
}, { }, {
title: '截止日期', title: '截止日期',
dataIndex: 'endTime', dataIndex: 'endTime'
scopedSlots: { customRender: 'endTime' }
}, { }, {
title: '创建日期', title: '创建日期',
dataIndex: 'createTime' dataIndex: 'createTime'
......
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