|
|
|
@ -231,7 +231,7 @@ |
|
|
|
</el-table> |
|
|
|
</div> |
|
|
|
<div class="pagination"> |
|
|
|
<el-pagination :page-size="pageInfo.pageSize" :page-sizes="[5, 10, 20, 50, 100]" |
|
|
|
<el-pagination background :page-size="pageInfo.pageSize" :page-sizes="[5, 10, 20, 50, 100]" |
|
|
|
layout="total, sizes, prev, pager, next, jumper" :total="total" |
|
|
|
@size-change="handlePagination('size', $event)" |
|
|
|
@current-change="handlePagination('page', $event)"></el-pagination> |
|
|
|
@ -842,9 +842,10 @@ const handleAddForm = async () => { |
|
|
|
submitterId: adminData.value.id, |
|
|
|
permanentGold: (addFormData.value.permanentGold || 0) * 100, |
|
|
|
freeGold: (addFormData.value.freeGold || 0) * 100, |
|
|
|
goodNum: addFormData.value.goodNum || 0, |
|
|
|
goodNum: paymentAmount || 0, |
|
|
|
paymentCurrency: CurrencyForId(addFormData.value.paymentCurrency) || '', |
|
|
|
receivedMarket: MarketNameForId(addFormData.value.receivedMarket) || '' |
|
|
|
receivedMarket: MarketNameForId(addFormData.value.receivedMarket) || '', |
|
|
|
paymentAmount:(addFormData.value.freeGold)*100 |
|
|
|
} |
|
|
|
}) |
|
|
|
if (result.code == 200) { |
|
|
|
@ -1064,7 +1065,7 @@ const submitEditForm = async () => { |
|
|
|
orderCode: editFormData.value.orderCode, |
|
|
|
handlingCharge: editFormData.value.handlingCharge * 100, |
|
|
|
paymentCurrency: CurrencyForId(editFormData.value.paymentCurrency), |
|
|
|
paymentAmount: editFormData.value.paymentAmount, |
|
|
|
paymentAmount: (editFormData.value.paymentAmount)*100, |
|
|
|
receivedCurrency: CurrencyForId(editFormData.value.receivedCurrency), |
|
|
|
receivedAmount: editFormData.value.receivedAmount * 100, |
|
|
|
receivedTime: editFormData.value.receivedTime, |
|
|
|
|