修改:分销商 分享时需要先申请转正的条件修改为提现时需要申请转正
This commit is contained in:
parent
823be2a5d0
commit
5da93f20fc
|
|
@ -24,7 +24,9 @@
|
|||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view class="reject_reason" v-if="apply_info.reject_reason && apply_info.status == 2">
|
||||
驳回原因:{{ apply_info.reject_reason }}
|
||||
</view>
|
||||
<!--提交按钮-->
|
||||
<template v-if="apply_info">
|
||||
<view v-if="apply_info.status == 0" class="submit-btn not-btn">审核中</view>
|
||||
|
|
@ -309,6 +311,12 @@ export default {
|
|||
.list-item:not(:last-child){
|
||||
border-bottom: 1px solid #eee;
|
||||
}
|
||||
.reject_reason{
|
||||
font-size: 26rpx;
|
||||
padding: 20rpx 0;
|
||||
color: #fe5968;
|
||||
line-height: 35rpx;
|
||||
}
|
||||
.submit-btn{
|
||||
width: 100%;
|
||||
margin: 50rpx auto auto auto;
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@
|
|||
</view>
|
||||
</view>
|
||||
<!-- #ifdef APP-PLUS || H5 -->
|
||||
<navigator url="/pages/users/user_cash/index" hover-class="none" class='bnt b-color'>立即提现</navigator>
|
||||
<view @click="goToPage('/pages/users/user_cash/index')" class='bnt b-color'>立即提现</view>
|
||||
<!-- #endif -->
|
||||
<!-- #ifdef MP -->
|
||||
<view @click="openSubscribe('/pages/users/user_cash/index')" class='bnt b-color'>立即提现</view>
|
||||
|
|
@ -127,14 +127,13 @@
|
|||
this.isShowAuth = e
|
||||
},
|
||||
openSubscribe: function(page) {
|
||||
let _this = this;
|
||||
uni.showLoading({
|
||||
title: '正在加载',
|
||||
})
|
||||
openEextractSubscribe().then(res => {
|
||||
uni.hideLoading();
|
||||
uni.navigateTo({
|
||||
url: page,
|
||||
});
|
||||
_this.goToPage(page);
|
||||
}).catch(() => {
|
||||
uni.hideLoading();
|
||||
});
|
||||
|
|
@ -158,10 +157,10 @@
|
|||
// 页面跳转
|
||||
goToPage(path){
|
||||
// 判断:如果是分享海报 判断是否转正
|
||||
if(path === '/pages/users/user_spread_code/index' && this.userInfo.is_formal != 1){
|
||||
if(path === '/pages/users/user_cash/index' && this.userInfo.is_formal != 1){
|
||||
uni.showModal({
|
||||
title: '提示',
|
||||
content: '未转正,无分享权限!',
|
||||
content: '未转正,无操作权限!',
|
||||
cancelText: '取消',
|
||||
confirmText: '申请转正',
|
||||
success: function(res) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue