Commit fe04a24c authored by xieyishang's avatar xieyishang

~~

parent 6abaf387
......@@ -71,7 +71,10 @@
</view>
<view class="psmsgs">
温馨提示:单笔最少提现1000元,单笔最多提现5000 元;到账时间为T+1
<!-- 温馨提示:单笔最少提现1000元,单笔最多提现5000 元;到账时间为T+1 -->
<view class="" v-for="(item,index) in withdrawRuleTxt" :key="index">
{{item}}
</view>
</view>
<!-- 提交按钮 -->
......@@ -129,7 +132,10 @@
</view>
<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>
<!-- 提交按钮 -->
......@@ -205,7 +211,7 @@
//userTransferMoney 佣金 资金 转余额
//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 eModal from "@/components/e-modal/e-modal.vue";
......@@ -246,6 +252,8 @@
mobile:"",//手机号码 用户的
params:{},
withdrawRuleTxt:[],//提现规则
};
},
computed: {
......@@ -301,7 +309,7 @@
// this.$refs.VerifyIdentity.show();
// },1000)
this.withdrawRule();
},
......@@ -320,6 +328,17 @@
}
},
methods:{
//获取商家提现规则
withdrawRule(){
withdrawRule({
}).then(res=>{
console.info(res);
if(res.code==0){
this.withdrawRuleTxt = res.data.withdrawRule;
}
})
},
//发送验证码 忘记支付密码
async sendSmsfun(){
......
......@@ -98,6 +98,19 @@ export function bankList(data)
return request.post("StroeCapital/bankList",data,{ noAuth : true});
}
//商家提现规则
export function withdrawRule(data)
{
return request.post("StroeCapital/withdrawRule",data,{ noAuth : true});
}
//解绑银行卡 删除银行卡
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