Commit fe04a24c authored by xieyishang's avatar xieyishang

~~

parent 6abaf387
...@@ -71,7 +71,10 @@ ...@@ -71,7 +71,10 @@
</view> </view>
<view class="psmsgs"> <view class="psmsgs">
温馨提示:单笔最少提现1000元,单笔最多提现5000 元;到账时间为T+1 <!-- 温馨提示:单笔最少提现1000元,单笔最多提现5000 元;到账时间为T+1 -->
<view class="" v-for="(item,index) in withdrawRuleTxt" :key="index">
{{item}}
</view>
</view> </view>
<!-- 提交按钮 --> <!-- 提交按钮 -->
...@@ -129,7 +132,10 @@ ...@@ -129,7 +132,10 @@
</view> </view>
<view class="psmsgs"> <view class="psmsgs">
温馨提示:提现到微信零钱预计两小时内到达,提现到银行卡正常到账时间为T+1,节假日顺延;提现时间为:8:00-21:00 <!-- 温馨提示:提现到微信零钱预计两小时内到达,提现到银行卡正常到账时间为T+1,节假日顺延;提现时间为:8:00-21:00 -->
<view class="" v-for="(item,index) in withdrawRuleTxt" :key="index">
{{item}}
</view>
</view> </view>
<!-- 提交按钮 --> <!-- 提交按钮 -->
...@@ -205,7 +211,7 @@ ...@@ -205,7 +211,7 @@
//userTransferMoney 佣金 资金 转余额 //userTransferMoney 佣金 资金 转余额
//cashUserFund 提现 //cashUserFund 提现
import {cashUserFund,storeIndex,storeSendSms } from "@/utils/api/api.js"; import {cashUserFund,storeIndex,storeSendSms,withdrawRule } from "@/utils/api/api.js";
import VerifyIdentity from "@/components/VerifyIdentity/VerifyIdentity.vue"; import VerifyIdentity from "@/components/VerifyIdentity/VerifyIdentity.vue";
import eModal from "@/components/e-modal/e-modal.vue"; import eModal from "@/components/e-modal/e-modal.vue";
...@@ -246,6 +252,8 @@ ...@@ -246,6 +252,8 @@
mobile:"",//手机号码 用户的 mobile:"",//手机号码 用户的
params:{}, params:{},
withdrawRuleTxt:[],//提现规则
}; };
}, },
computed: { computed: {
...@@ -301,7 +309,7 @@ ...@@ -301,7 +309,7 @@
// this.$refs.VerifyIdentity.show(); // this.$refs.VerifyIdentity.show();
// },1000) // },1000)
this.withdrawRule();
}, },
...@@ -320,6 +328,17 @@ ...@@ -320,6 +328,17 @@
} }
}, },
methods:{ methods:{
//获取商家提现规则
withdrawRule(){
withdrawRule({
}).then(res=>{
console.info(res);
if(res.code==0){
this.withdrawRuleTxt = res.data.withdrawRule;
}
})
},
//发送验证码 忘记支付密码 //发送验证码 忘记支付密码
async sendSmsfun(){ async sendSmsfun(){
......
...@@ -96,7 +96,20 @@ export function bankinfoList(data) ...@@ -96,7 +96,20 @@ export function bankinfoList(data)
export function bankList(data) export function bankList(data)
{ {
return request.post("StroeCapital/bankList",data,{ noAuth : true}); return request.post("StroeCapital/bankList",data,{ noAuth : true});
} }
//商家提现规则
export function withdrawRule(data)
{
return request.post("StroeCapital/withdrawRule",data,{ noAuth : true});
}
//解绑银行卡 删除银行卡 //解绑银行卡 删除银行卡
export function deleteBank(data) export function deleteBank(data)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment