|
|
|
@ -218,7 +218,7 @@ |
|
|
|
<span v-else-if="kefu && scope.row.status == 5" style="color: #2741DE;" |
|
|
|
@click="openAddForm(scope.row)">编辑</span> |
|
|
|
<span v-else-if="kefu && scope.row.status == 0" style="color: #FA5A1E;" |
|
|
|
@click="openConfirm('recall',scope.row)">撤回</span> |
|
|
|
@click="openConfirm('recall', scope.row)">撤回</span> |
|
|
|
<span v-else-if="kefu && scope.row.status == 2" style="color: #FA5A1E;" |
|
|
|
@click="openRejectReason(scope.row.rejectReason)">查看驳回理由</span> |
|
|
|
<span v-else-if="activeTab == 'wait' && !kefu" style="color: #2741DE;" |
|
|
|
@ -872,7 +872,13 @@ const handleEditForm = async () => { |
|
|
|
url: '/cashCollection/reSubmit', |
|
|
|
data: { |
|
|
|
...addFormData.value, |
|
|
|
submitterId: adminData.value.id |
|
|
|
submitterId: adminData.value.id, |
|
|
|
permanentGold: (addFormData.value.permanentGold || 0) * 100, |
|
|
|
freeGold: (addFormData.value.freeGold || 0) * 100, |
|
|
|
goodNum: addFormData.value.goodNum || 0, |
|
|
|
paymentCurrency: CurrencyForId(addFormData.value.paymentCurrency) || '', |
|
|
|
receivedMarket: MarketNameForId(addFormData.value.receivedMarket) || '', |
|
|
|
paymentAmount: (addFormData.value.paymentAmount) * 100 |
|
|
|
} |
|
|
|
}) |
|
|
|
if (result.code == 200) { |
|
|
|
@ -1032,7 +1038,7 @@ const closeRecall = () => { |
|
|
|
textContent.value = '' |
|
|
|
RecallNum.value = '' |
|
|
|
} |
|
|
|
const handleRecall = async() => { |
|
|
|
const handleRecall = async () => { |
|
|
|
try { |
|
|
|
const result = await request({ |
|
|
|
url: '/cashCollection/cancel', |
|
|
|
|