混合支付

This commit is contained in:
唐明明
2023-03-17 15:57:43 +08:00
parent 9eb1f97e4c
commit 7de206c0a2
13 changed files with 395 additions and 75 deletions

View File

@@ -1,5 +1,5 @@
<template>
<view class="content">
<view class="content" v-if="!loding">
<block v-if="!eSign">
<!-- 上传身份证 -->
<view class="identity-from">
@@ -54,7 +54,7 @@
<view class="identity-from" v-if="eSign">
<view class="identity-inpus">
<label>经营城市</label>
<view class="identity-inpus-text">{{province}} {{city}}</view>
<view class="identity-inpus-text">{{province}} {{city || '-'}}</view>
<!-- <input type="text" placeholder="-" v-model="city" disabled> -->
</view>
</view>
@@ -71,6 +71,7 @@
export default {
data() {
return {
loding : true,
idCard : false,
eSign : false,
isPathChange: false,
@@ -123,7 +124,8 @@
certified().then(res => {
let { id_card, e_sign } = res;
this.idCard = id_card;
this.eSign = e_sign;
this.eSign = e_sign;
this.loding = false
if(this.idCard){
this.getInfo()
return
@@ -187,6 +189,7 @@
showpath: res.back_card,
path : res.back_card_path
}
if(res.province.id != 0){
this.province = res.province.name
this.provincesVal = this.provinces.findIndex(val => val.id === res.province.id)