正式版发布问题修复

This commit is contained in:
donqi 2022-07-19 11:34:10 +08:00
parent 3ac990eb63
commit 53bf50ba3f
3 changed files with 9 additions and 23 deletions

View File

@ -47,10 +47,6 @@
"path": "serv-detail"
}, {
"path": "statement-desc"
}, {
"path": "bank-account-bind"
}, {
"path": "my-money-bag"
}]
}, {
"root":"pages/publish/",

View File

@ -6,12 +6,12 @@
<block slot="content">帐号绑定/修改</block>
</cu-custom>
<view class="margin-lr-sm margin-tb-lg shadow-warp">
<view class="bg-gray flex justify-start align-center text-xl padding-lr padding-top-xs">
<!-- <view class="bg-gray flex justify-start align-center text-xl padding-lr padding-top-xs">
<view class="padding-lr padding-tb-sm" :class="curAccountType === '0' ? 'curTab' : ''" data-type="0" @click="changAccountType">支付宝</view>
<view class="padding-lr padding-tb-sm" :class="curAccountType === '1' ? 'curTab' : ''" data-type="1" @click="changAccountType">银行卡</view>
</view>
</view> -->
<!-- 支付宝 -->
<view v-if="curAccountType == '0'" class="bg-white padding text-lg">
<!-- <view v-if="curAccountType == '0'" class="bg-white padding text-lg">
<view>
<view class="margin-bottom-sm">开户人姓名</view>
<input type="digit" placeholder="请输入开户人姓名" placeholder-style="color:#989898" v-model="formData.name">
@ -20,9 +20,9 @@
<view class="margin-bottom-sm">支付宝账户</view>
<input type="digit" placeholder="请输入支付宝账户" placeholder-style="color:#989898" v-model="formData.account">
</view>
</view>
</view> -->
<!-- 银行卡 -->
<view v-else-if="curAccountType === '1'" class="bg-white padding text-lg">
<!-- <view v-else-if="curAccountType === '1'" class="bg-white padding text-lg">
<view>
<view class="margin-bottom-sm">开户人姓名</view>
<input type="text" placeholder="请输入开户人姓名" placeholder-style="color:#989898" v-model="formData.name">
@ -39,22 +39,12 @@
<view class="margin-bottom-sm">银行卡号</view>
<input type="text" placeholder="请输入银行卡号" placeholder-style="color:#989898" v-model="formData.bankNum">
</view>
<!-- <view class="margin-top">
<view class="margin-bottom-sm">银行卡号开户城市</view>
<view class="flex">
<my-uni-combox class="flex-sub margin-right-xs" :candidates="provinceList"
:showField="'areaName'" placeholder="选择省份" v-model="formData.provinceObj"
@input="chooseRegion($event)"></my-uni-combox>
<my-uni-combox class="flex-sub margin-right-xs" :candidates="cityList"
:showField="'areaName'" placeholder="选择城市" v-model="formData.cityObj"></my-uni-combox>
</view>
</view> -->
</view>
</view>
<!-- 操作按钮 -->
<view class="margin-lr">
<!-- <view class="margin-lr">
<button class="cu-btn lg bg-main-color long-btn shadow-blur" @click="submit">提交</button>
</view>
</view> -->
</view>
</template>

View File

@ -133,7 +133,7 @@
},
bindBankAccount() {
uni.navigateTo({
url: '/pages/my/bank-account-bind'
url: '/pages/my/b-arrive-bind'
})
}
},