Compare commits

..

No commits in common. "3f6af2260aa242e8eaf3af0f2362ef5925cb8427" and "bbdc5534b57277951c7119111c86f8478c351e97" have entirely different histories.

3 changed files with 6 additions and 25 deletions

View File

@ -279,11 +279,3 @@ export function batchReject(data) {
data data
}) })
} }
export function refreshPayStatus(params) {
return request({
url: '/pay/manage/online-payment/compensationCallBack',
method: 'get',
params
})
}

View File

@ -1006,9 +1006,10 @@ export default {
numberToCurrencyNo(obj.serviceCharge), numberToCurrencyNo(obj.serviceCharge),
numberToCurrencyNo(obj.incomeTax), numberToCurrencyNo(obj.incomeTax),
numberToCurrencyNo(obj.issuedAmount), numberToCurrencyNo(obj.issuedAmount),
'', numberToCurrencyNo(obj.settleCashAmount),
'', numberToCurrencyNo(obj.settleServiceCharge),
'', numberToCurrencyNo(obj.settleIncomeTax),
numberToCurrencyNo(obj.settleIssuedAmount),
'', '',
'', '',
'', '',

View File

@ -295,14 +295,12 @@
> >
<template slot-scope="scope"> <template slot-scope="scope">
<el-button <el-button
v-show="scope.row.payStatus !== 1"
v-has-buttons="['OnlinePayDetailsRefreshStatus']"
style="color: #ffad41" style="color: #ffad41"
type="text" type="text"
size="small" size="small"
@click="refreshStatus(scope.row)" @click="toFixed(scope.row.pkId)"
> >
刷新状态 {{ '导出' }}
</el-button> </el-button>
</template> </template>
</el-table-column> </el-table-column>
@ -478,16 +476,6 @@ export default {
return 'success-row' return 'success-row'
} }
return '' return ''
},
refreshStatus({ businessCode }) {
api.refreshPayStatus({ businessCode }).then((res) => {
if (res.code === 200) {
this.$message.success('刷新成功')
this.getDataList()
} else {
this.$message.error(res.msg)
}
})
} }
} }
} }