This commit is contained in:
唐明明
2023-03-23 13:39:28 +08:00
parent 88ed4bdadf
commit b17d6ccb3b
4 changed files with 38 additions and 18 deletions

View File

@@ -195,14 +195,14 @@ import mixin from 'uview-ui/libs/mixin/mixin';
})
break;
case 'wx':
if(this.payType == 'price') this.onUmsPay('mp')
if(this.payType == 'diff') this.onDiffUmsPay('mp')
if(this.payType == 'free') this.onFreePay('mp')
if(this.payType == 'price') this.onUmsPay('app')
if(this.payType == 'diff') this.onDiffUmsPay('app')
if(this.payType == 'free') this.onFreePay('app')
break;
case 'ali':
if(this.payType == 'price') this.onUmsPay('mp_alipay')
if(this.payType == 'diff') this.onDiffUmsPay('mp_alipay')
if(this.payType == 'free') this.onFreePay('mp_alipay')
if(this.payType == 'price') this.onUmsPay('app_alipay')
if(this.payType == 'diff') this.onDiffUmsPay('app_alipay')
if(this.payType == 'free') this.onFreePay('app_alipay')
break;
}
},
@@ -223,10 +223,10 @@ import mixin from 'uview-ui/libs/mixin/mixin';
this.getState = true
this.trade_id = res.trade_id
switch (type){
case 'mp':
case 'app':
this.onMiniWx()
break;
case 'mp_alipay':
case 'app_alipay':
plus.runtime.openURL(res.alipay)
break;
}
@@ -252,10 +252,10 @@ import mixin from 'uview-ui/libs/mixin/mixin';
this.getState = true
this.trade_id = res.trade_id
switch (type){
case 'mp':
case 'app':
this.onMiniWx()
break;
case 'mp_alipay':
case 'app_alipay':
plus.runtime.openURL(res.alipay)
break;
}
@@ -277,10 +277,10 @@ import mixin from 'uview-ui/libs/mixin/mixin';
this.getState = true
this.trade_id = res.trade_id
switch (type){
case 'mp':
case 'app':
this.onMiniWx()
break;
case 'mp_alipay':
case 'app_alipay':
plus.runtime.openURL(res.alipay)
break;
}

View File

@@ -103,21 +103,21 @@
</view>
<view class="from-item from-item-100">
<label>
现居住地址
<text>*</text>现居住地址
<uni-icons v-if="baseInfo.check_params.now_domicile" class="from-icon" type="info" size="18" color="red" @click="modifyToast(baseInfo.check_params.now_domicile.description)"></uni-icons>
</label>
<input class="from-input" type="number" v-model="baseInfo.now_domicile" placeholder="输入现居住地址">
</view>
<view class="from-item from-item-100">
<label>
现单位地址
<text>*</text>现单位地址
<uni-icons v-if="baseInfo.check_params.now_company_address" class="from-icon" type="info" size="18" color="red" @click="modifyToast(baseInfo.check_params.now_company_address.description)"></uni-icons>
</label>
<input class="from-input" type="number" v-model="baseInfo.now_company_address" placeholder="输入现单位地址">
</view>
<view class="from-item from-item-100">
<label>
现单位名称
<text>*</text>现单位名称
<uni-icons v-if="baseInfo.check_params.now_company_name" class="from-icon" type="info" size="18" color="red" @click="modifyToast(baseInfo.check_params.now_company_name.description)"></uni-icons>
</label>
<input class="from-input" type="number" v-model="baseInfo.now_company_name" placeholder="输入现单位名称">