|
|
@@ -168,7 +168,9 @@
|
|
|
<template #default="{ row }">
|
|
|
<div v-if="row.payType === '1'" class="f-w-5">微信支付</div>
|
|
|
<div v-if="row.payType === '2'" class="f-w-5">对公转账</div>
|
|
|
- <div v-if="row?.payType !=='1'&& row?.payType !=='2'">-</div>
|
|
|
+ <div v-if="row.payType === '3'" class="f-w-5">对公转账收款</div>
|
|
|
+ <div v-if="row.payType === '4'" class="f-w-5">现场收款</div>
|
|
|
+ <div v-if="row?.payType !=='1'&& row?.payType !=='2' && row?.payType !=='3' && row?.payType !=='4'" >-</div>
|
|
|
</template>
|
|
|
</vxe-column>
|
|
|
<vxe-column title="开票信息" field="remark" min-width="100" :formatter="colNoData" v-if="form?.meetingCharge?.hasFee =='1'">
|
|
|
@@ -293,8 +295,8 @@
|
|
|
</el-radio-group>
|
|
|
</el-form-item> -->
|
|
|
<div class="d-flex">
|
|
|
- <div class="orange-button" :class="{'orange-active': collectiontype === '4'}" @click="collectiontype = '4'">对公转账收款</div>
|
|
|
- <div class="green-button" :class="{'green-active': collectiontype === '3'}" @click="collectiontype = '3'">现场收款</div>
|
|
|
+ <div class="orange-button" :class="{'orange-active': collectiontype === '3'}" @click="collectiontype = '3'">对公转账收款</div>
|
|
|
+ <div class="green-button" :class="{'green-active': collectiontype === '4'}" @click="collectiontype = '4'">现场收款</div>
|
|
|
</div>
|
|
|
<div class="f-s-24">确认收款后将直接改为已支付状态,并进入报名审核流程,操作无法撤回请慎重操作。</div>
|
|
|
</div>
|
|
|
@@ -539,9 +541,9 @@ const openTransfer = (row)=>{
|
|
|
editPricedata.value = row
|
|
|
}
|
|
|
const confirmTransfer = async()=>{
|
|
|
- await confirmSigPublicPay(editPricedata.value?.id,collectiontype)
|
|
|
+ await confirmSigPublicPay(editPricedata.value?.id,collectiontype.value)
|
|
|
showTransfer.value = false
|
|
|
- getList();
|
|
|
+ getList();
|
|
|
}
|
|
|
const changeEditPrice = async ()=>{
|
|
|
await editPrice({
|