問題描述:
小程序端會員碼頁多次切換付款碼出現異常。
解決方法:
pages/users/user_member_code/index.vue,找到這個文件,修改這段代碼。
<view class="acea-row row-center-wrapper h-380" style="margin-top: 56rpx;">
<!-- #ifdef H5 -->
<w-qrcode v-show="!isWeixin || isPay" :options="config.qrc"></w-qrcode>
<image v-if="isWeixin" v-show="!isPay" :src="qrc" class="qrcode"></image>
<!-- #endif -->
<!-- #ifdef MP -->
<w-qrcode v-show="isPay" :options="config.qrc"></w-qrcode>
<image v-show="!isPay" :src="qrc" class="qrcode"></image>
<!-- #endif -->
<!-- #ifdef APP-PLUS -->
<w-qrcode :options="config.qrc"></w-qrcode>
<!-- #endif -->
</view>