|
@@ -24,6 +24,9 @@
|
|
|
<radio color="#2DCF8C" value="weixin" :checked="'weixin' === radioCurrent" />
|
|
|
</view>
|
|
|
</view>
|
|
|
+ <template v-if="!wxEnv && projectFlag === 'zhijin'">
|
|
|
+ <view class="pay-list-item flex-center">暂无可用支付方式</view>
|
|
|
+ </template>
|
|
|
<!-- #endif -->
|
|
|
</template>
|
|
|
<template v-if="alipayEnv && projectFlag === 'puding' && projectFlag !== 'zhijin'">
|
|
@@ -281,9 +284,11 @@ export default {
|
|
|
this.radioCurrent = 'weixinzn';
|
|
|
} else if (this.projectFlag === 'wudang') {
|
|
|
this.radioCurrent = 'juhe';
|
|
|
- } else if (this.wxEnv) {
|
|
|
+ } else if (this.projectFlag === 'zhijin' && this.wxEnv) {
|
|
|
this.radioCurrent = 'weixin';
|
|
|
- } else {
|
|
|
+ } else if (this.projectFlag !== 'zhijin' && this.wxEnv) {
|
|
|
+ this.radioCurrent = 'weixin';
|
|
|
+ } else if (this.projectFlag !== 'zhijin') {
|
|
|
this.radioCurrent = 'juhe';
|
|
|
}
|
|
|
// 打开弹出层
|