diff --git a/config/balance.js b/config/balance.js index ed476cf..da810d2 100644 --- a/config/balance.js +++ b/config/balance.js @@ -18,12 +18,6 @@ export const getDefaultBank = params => params, }) -//校验是否绑定银行卡 -export const checkIsbindBank = params => - http.get('/member/api/bank/is-bind', { - params, - }) - //提现页面展示 export const getWidthdrawShow = params => http.get('/member/api/withdraw/show/add', { @@ -90,12 +84,6 @@ export const getVerification = params => export const verifyBankCard = params => http.post('/member/api/bank/verify-bank-card', params) -//是否配置白名单 白名单不进行银行卡四要素校验 -export const checkIfWhite = params => - http.get('/member/api/bank/is-white-list', { - params, - }) - //银行卡选择下拉选 export const getBankCardChoiceList = params => http.get('/system/api/bank/list', { diff --git a/config/request.js b/config/request.js index c6d6d7e..780c5e4 100644 --- a/config/request.js +++ b/config/request.js @@ -19,7 +19,7 @@ module.exports = vm => { //#ifdef DEV_SERVER console.log('DEV_SERVER') - config.baseURL = 'http://192.168.0.86:8080' + config.baseURL = 'https://t-bl.beida777.com/prod-api' //#endif //#ifdef QA_SERVER diff --git a/pages/mine/balance/index.vue b/pages/mine/balance/index.vue index 1d59e1e..df48118 100644 --- a/pages/mine/balance/index.vue +++ b/pages/mine/balance/index.vue @@ -232,13 +232,14 @@ export default { url: item.path, }) } else if (res.code == 200 && res.flag == 'N') { - this.smShow = true uni.showToast({ title: '请先进行实名认证', }) - uni.navigateTo({ - url: '/pages/selfService/realName/realName', - }) + setTimeout(() => { + uni.navigateTo({ + url: '/pages/selfService/realName/realName', + }) + }, 300) } }) } diff --git a/pages/mine/balance/withdrawal.vue b/pages/mine/balance/withdrawal.vue index 2413958..df7380a 100644 --- a/pages/mine/balance/withdrawal.vue +++ b/pages/mine/balance/withdrawal.vue @@ -134,7 +134,16 @@ {{ '提现' }} - + + 请先绑定默认银行卡 + - + + + \ No newline at end of file + .footerbtn { + display: flex; + align-items: center; + padding: 40rpx; + background: #ffffff; + font-size: 24rpx; + font-weight: 600; + border-radius: 20rpx; + margin-top: 32rpx; + width: 100%; + } +} +