45db652c by zhangmeng

去除对公打款

1 parent 94a60674
...@@ -355,7 +355,8 @@ ...@@ -355,7 +355,8 @@
355 <div class="mt10">{{ language == 0 ? '支付方式' : 'Payment Method' }} 355 <div class="mt10">{{ language == 0 ? '支付方式' : 'Payment Method' }}
356 <span v-if="form.paymentType=='1'">{{ language == 0 ? '微信支付' : 'WePay' }}</span> 356 <span v-if="form.paymentType=='1'">{{ language == 0 ? '微信支付' : 'WePay' }}</span>
357 <span v-else-if="form.paymentType=='3'">PayPal</span> 357 <span v-else-if="form.paymentType=='3'">PayPal</span>
358 <span v-else-if="form.paymentType=='4'|| form.paymentType=='5'">{{language == 0 ?'对公转账':'Bank Transfer'}}</span> 358 <span
359 v-else-if="form.paymentType=='4'|| form.paymentType=='5'">{{ language == 0 ? '对公转账' : 'Bank Transfer' }}</span>
359 <span v-else>--</span> 360 <span v-else>--</span>
360 </div> 361 </div>
361 </el-col> 362 </el-col>
...@@ -412,7 +413,9 @@ ...@@ -412,7 +413,9 @@
412 </el-button> 413 </el-button>
413 </div> 414 </div>
414 415
415 <div v-if="form.viewStatus == '0'&&(form.surplus!='0,0'&&form.surplus!='0')&&form.paymentType!='4'&&form.paymentType!='5'" class="pd20"> 416 <div
417 v-if="form.viewStatus == '0'&&(form.surplus!='0,0'&&form.surplus!='0')&&form.paymentType!='4'&&form.paymentType!='5'"
418 class="pd20">
416 419
417 <div class="leftboderTT">{{ language == 0 ? '选择支付方式' : 'Choose payment method' }}</div> 420 <div class="leftboderTT">{{ language == 0 ? '选择支付方式' : 'Choose payment method' }}</div>
418 <div class="mt20"> 421 <div class="mt20">
...@@ -459,10 +462,10 @@ ...@@ -459,10 +462,10 @@
459 fill="#003087" p-id="22662"></path> 462 fill="#003087" p-id="22662"></path>
460 </svg> 463 </svg>
461 </el-radio> 464 </el-radio>
462 <el-radio value="4" v-if="language==0&&type=='hotel'" border> 465 <!-- <el-radio value="4" v-if="language==0&&type=='hotel'" border>-->
463 对公打款 466 <!-- 对公打款-->
464 </el-radio> 467 <!-- </el-radio>-->
465 <el-radio value="5" v-if="language==1&&type=='hotel'" border> 468 <el-radio v-if="language==1&&type=='hotel'" border value="5">
466 Corporate payment 469 Corporate payment
467 </el-radio> 470 </el-radio>
468 </el-radio-group> 471 </el-radio-group>
...@@ -495,17 +498,17 @@ ...@@ -495,17 +498,17 @@
495 <el-col :lg="12"> 498 <el-col :lg="12">
496 <div class="flex"> 499 <div class="flex">
497 <label style="width: 10em"> 500 <label style="width: 10em">
498 {{ language==0?'上传缴费凭证:':'Upload proof:' }} 501 {{ language == 0 ? '上传缴费凭证:' : 'Upload proof:' }}
499 </label> 502 </label>
500 <file-upload :is-show-tip="false" v-model="form.pic" :limit="1"/> 503 <file-upload v-model="form.pic" :is-show-tip="false" :limit="1"/>
501 </div> 504 </div>
502 </el-col> 505 </el-col>
503 <el-col :lg="12"> 506 <el-col :lg="12">
504 <el-button class="fr" text type="primary" @click="downOfflineInvoice" icon="download"> 507 <el-button class="fr" icon="download" text type="primary" @click="downOfflineInvoice">
505 {{ language == 0 ? '下载缴费单' : 'Download Invoice' }} 508 {{ language == 0 ? '下载缴费单' : 'Download Invoice' }}
506 </el-button> 509 </el-button>
507 </el-col> 510 </el-col>
508 <!-- 如果没审批通过--> 511 <!-- 如果没审批通过-->
509 <el-col :lg="24" align="center" justify="center"> 512 <el-col :lg="24" align="center" justify="center">
510 <el-button round type="primary" @click="submitProof">提交凭证</el-button> 513 <el-button round type="primary" @click="submitProof">提交凭证</el-button>
511 </el-col> 514 </el-col>
...@@ -726,7 +729,7 @@ function getData() { ...@@ -726,7 +729,7 @@ function getData() {
726 form.value.extJsonObj = JSON.parse(form.value.extJson) || {} 729 form.value.extJsonObj = JSON.parse(form.value.extJson) || {}
727 matchId.value = form.value.extJsonObj?.activeId 730 matchId.value = form.value.extJsonObj?.activeId
728 //如果对公打款- 731 //如果对公打款-
729 if(form.value.paymentType=='4' || form.value.paymentType=='5'){ 732 if (form.value.paymentType == '4' || form.value.paymentType == '5') {
730 hideconfirmbtn.value = true 733 hideconfirmbtn.value = true
731 } 734 }
732 }).catch(err => { 735 }).catch(err => {
...@@ -1023,7 +1026,7 @@ const downOfflineInvoice = () => { ...@@ -1023,7 +1026,7 @@ const downOfflineInvoice = () => {
1023 } 1026 }
1024 const submitProof = () => { 1027 const submitProof = () => {
1025 //提交凭证 1028 //提交凭证
1026 if(!form.value.pic){ 1029 if (!form.value.pic) {
1027 ElMessage.warning(language.value == 0 ? '请上传凭证' : 'Please upload a voucher') 1030 ElMessage.warning(language.value == 0 ? '请上传凭证' : 'Please upload a voucher')
1028 return 1031 return
1029 } 1032 }
...@@ -1205,5 +1208,10 @@ const submitProof = () => { ...@@ -1205,5 +1208,10 @@ const submitProof = () => {
1205 .price { 1208 .price {
1206 color: orange; 1209 color: orange;
1207 } 1210 }
1208 .proofBox{padding: 20px;margin: 0 20px;border: 1px dashed #999;} 1211
1212 .proofBox {
1213 padding: 20px;
1214 margin: 0 20px;
1215 border: 1px dashed #999;
1216 }
1209 </style> 1217 </style>
......
...@@ -252,6 +252,7 @@ ...@@ -252,6 +252,7 @@
252 252
253 <div v-if="payType == '3'"> 253 <div v-if="payType == '3'">
254 <table cellpadding="0" cellspacing="0" class="table-border table"> 254 <table cellpadding="0" cellspacing="0" class="table-border table">
255 <tbody>
255 <tr> 256 <tr>
256 <th class="head" colspan="2"> 257 <th class="head" colspan="2">
257 {{ language == 0 ? '线下缴费的收款信息' : 'Offline Payment Collection Information' }} 258 {{ language == 0 ? '线下缴费的收款信息' : 'Offline Payment Collection Information' }}
...@@ -313,8 +314,8 @@ ...@@ -313,8 +314,8 @@
313 <span v-else class="text-danger size12">*You can confirm with the contact person by phone after uploading the remittance form. The specific payment results can be viewed in the My Registration section of the personal center to check the progress</span> 314 <span v-else class="text-danger size12">*You can confirm with the contact person by phone after uploading the remittance form. The specific payment results can be viewed in the My Registration section of the personal center to check the progress</span>
314 </td> 315 </td>
315 </tr> 316 </tr>
317 </tbody>
316 </table> 318 </table>
317
318 <div class="text-center"> 319 <div class="text-center">
319 <el-button class="btn-lineG w200px" round type="primary" @click="upRR">{{ 320 <el-button class="btn-lineG w200px" round type="primary" @click="upRR">{{
320 language == 0 ? '保存' : 'Save' 321 language == 0 ? '保存' : 'Save'
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!