From 5da93f20fca48f5179d8bd9355ca1e5bd4f2f98b Mon Sep 17 00:00:00 2001
From: wuhui_zzw <1760308791@qq.com>
Date: Mon, 8 Apr 2024 10:56:40 +0800
Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=EF=BC=9A=E5=88=86=E9=94=80?=
=?UTF-8?q?=E5=95=86=20=E5=88=86=E4=BA=AB=E6=97=B6=E9=9C=80=E8=A6=81?=
=?UTF-8?q?=E5=85=88=E7=94=B3=E8=AF=B7=E8=BD=AC=E6=AD=A3=E7=9A=84=E6=9D=A1?=
=?UTF-8?q?=E4=BB=B6=E4=BF=AE=E6=94=B9=E4=B8=BA=E6=8F=90=E7=8E=B0=E6=97=B6?=
=?UTF-8?q?=E9=9C=80=E8=A6=81=E7=94=B3=E8=AF=B7=E8=BD=AC=E6=AD=A3?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
pages/users/user_spread_user/formal.vue | 10 +++++++++-
pages/users/user_spread_user/index.vue | 11 +++++------
2 files changed, 14 insertions(+), 7 deletions(-)
diff --git a/pages/users/user_spread_user/formal.vue b/pages/users/user_spread_user/formal.vue
index 276a5f4..dc9f479 100644
--- a/pages/users/user_spread_user/formal.vue
+++ b/pages/users/user_spread_user/formal.vue
@@ -24,7 +24,9 @@
-
+
+ 驳回原因:{{ apply_info.reject_reason }}
+
审核中
@@ -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;
diff --git a/pages/users/user_spread_user/index.vue b/pages/users/user_spread_user/index.vue
index a2bab0d..6c58705 100644
--- a/pages/users/user_spread_user/index.vue
+++ b/pages/users/user_spread_user/index.vue
@@ -26,7 +26,7 @@
- 立即提现
+ 立即提现
立即提现
@@ -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) {