liudan 4 months ago
parent b63b2e752a
commit 76ba994cf2
  1. 4
      api/user.js
  2. 15
      pages/index/component/headerSerch.vue
  3. 4
      pages/user/index.vue
  4. 19
      pages/users/user_cash/index.vue

@ -818,3 +818,7 @@ export function getPrizeData(data) {
export function setPrizeApi(data) { export function setPrizeApi(data) {
return request.post(`user/lottery/try`,data) return request.post(`user/lottery/try`,data)
} }
// 提现说明
export function cashInfo(data) {
return request.get(`agreement/the_withdraw_rule`,data)
}

@ -22,7 +22,7 @@
<!-- :style="'background: '+ bgColor +' ;margin-top:'+ mbConfig +'rpx;'" --> <!-- :style="'background: '+ bgColor +' ;margin-top:'+ mbConfig +'rpx;'" -->
<view class="mp-header"> <view class="mp-header">
<view class="sys-head skeleton-rect" :style="{ height: statusBarHeight }"></view> <view class="sys-head skeleton-rect" :style="{ height: statusBarHeight }"></view>
<view class="serch-box skeleton-rect" style="height: 43px;display: flex;justify-content: space-between;align-items: center;min-width: 550rpx;max-width: 550rpx;"> <view class="serch-box skeleton-rect titleBox">
<!-- <view class="serch-wrapper flex" :style="'padding-left:'+prConfig+'rpx;'"> <!-- <view class="serch-wrapper flex" :style="'padding-left:'+prConfig+'rpx;'">
<view v-if="logoConfig" class="logo skeleton-rect"><image :src="logoConfig" mode=""></image></view> <view v-if="logoConfig" class="logo skeleton-rect"><image :src="logoConfig" mode=""></image></view>
<navigator :url="merId ? '/pages/store/list/index?mer_id='+merId : '/pages/columnGoods/goods_search/index'" :class="logoConfig ? 'input' : 'uninput'" <navigator :url="merId ? '/pages/store/list/index?mer_id='+merId : '/pages/columnGoods/goods_search/index'" :class="logoConfig ? 'input' : 'uninput'"
@ -186,6 +186,19 @@
} }
} }
} }
.titleBox{
height: 43px;
display: flex;
justify-content: space-between;
align-items: center;
/* #ifdef MP */
min-width: 550rpx;
max-width: 550rpx;
/* #endif*/
/* #ifndef MP */
width:98%
/* #endif*/
}
/* #ifdef MP || APP-PLUS */ /* #ifdef MP || APP-PLUS */
.mp-header { .mp-header {
z-index: 999; z-index: 999;

@ -237,10 +237,10 @@
</view> </view>
<u-popup :show="show" mode="bottom" @close="closeHandle"> <u-popup :show="show" mode="bottom" @close="closeHandle">
<view class="popContent"> <view class="popContent">
<button open-type="share" class="popItem"> <!-- <button open-type="share" class="popItem">
<image src="/static/images/v1.png" mode=""></image> <image src="/static/images/v1.png" mode=""></image>
<text>发送给朋友</text> <text>发送给朋友</text>
</button> </button> -->
<view class="popItem" @click="goPoster"> <view class="popItem" @click="goPoster">
<image src="/static/images/v2.png" mode=""></image> <image src="/static/images/v2.png" mode=""></image>
<text>生成海报</text> <text>生成海报</text>

@ -57,12 +57,12 @@
<view class="title"> <view class="title">
提现说明 提现说明
</view> </view>
<view class="textInfo"> <view class="textInfo" v-html="textInfo">
1.单次提现金额 最少 1.00;最多 1000.00;<br/> <!-- 1.单次提现金额 最少 1.00;最多 1000.00;<br/>
2.每月最多可提现 10 ;<br/> 2.每月最多可提现 10 ;<br/>
3.每次收取提现手续费 0.3%;<br/> 3.每次收取提现手续费 0.3%;<br/>
4.提现申请后将审核后到账,到账结果请查收对应渠道服务通知;<br/> 4.提现申请后将审核后到账,到账结果请查收对应渠道服务通知;<br/>
5.如有疑问请及时联系客服; 5.如有疑问请及时联系客服; -->
</view> </view>
</view> </view>
@ -181,7 +181,8 @@
extractBank, extractBank,
getUserInfo, getUserInfo,
spreadInfo, spreadInfo,
getBankInfo getBankInfo,
cashInfo
} from '@/api/user.js'; } from '@/api/user.js';
import { mapGetters } from "vuex"; import { mapGetters } from "vuex";
import cash from '@/components/cash'; import cash from '@/components/cash';
@ -232,7 +233,8 @@
real_name: '', real_name: '',
bank_address: '', bank_address: '',
bank_code: '', bank_code: '',
pay_type: [] pay_type: [],
textInfo:''
}; };
}, },
computed: { computed: {
@ -252,11 +254,18 @@
this.getUserInfo(); this.getUserInfo();
this.getUserExtractBank(); this.getUserExtractBank();
this.getBankInfo(); this.getBankInfo();
this.getCashText()
} else { } else {
toLogin() toLogin()
} }
}, },
methods: { methods: {
getCashText(){
cashInfo().then(res=>{
console.log(res,"999")
this.textInfo = res.data.the_withdraw_rule
})
},
loadType(){ loadType(){
this.pay_type = [] this.pay_type = []
let withdrawType = this.withdraw_type let withdrawType = this.withdraw_type

Loading…
Cancel
Save