chengjie il y a 7 ans
Parent
commit
a9bf3af33a

+ 1 - 1
app.js

@@ -11,7 +11,7 @@ App({
11 11
     this.globalData.systemInfo = wx.getSystemInfoSync();
12 12
   },
13 13
   globalData: {
14
-    Version: "1.1.0",
14
+    Version: "1.1.1",
15 15
     IsProduction: true,
16 16
     ProgramID: 106,
17 17
     AppID: "wx313a8f2c0741efe1",

BIN
images/02023.png


BIN
images/02025.png


BIN
images/02026.png


BIN
images/02027.png


BIN
images/02028.png


+ 16 - 95
pages/about/membercenter.js

@@ -5,12 +5,12 @@ const app = getApp();
5 5
 
6 6
 Page({
7 7
   data: {
8
-    IsAccredit:false,
8
+    IsAccredit: false,
9 9
   },
10 10
   onLoad: function (options) {
11 11
 
12
-    var member="非会员";
13
-    if (app.globalData.userInfo.IsMember==1)
12
+    var member = "非会员";
13
+    if (app.globalData.userInfo.IsMember == 1)
14 14
       member = "付费会员";
15 15
 
16 16
     this.setData({
@@ -20,16 +20,16 @@ Page({
20 20
 
21 21
     this.init();
22 22
   },
23
-  init:function(){
23
+  init: function () {
24 24
     var that = this;
25
-    server.getData('GetWXUsersAllTime?ProductID=' + app.globalData.ProgramID+'&UserID=' + app.globalData.userInfo.UserID, function (data) {
25
+    server.getData('GetWXUsersAllTime?ProductID=' + app.globalData.ProgramID + '&UserID=' + app.globalData.userInfo.UserID, function (data) {
26 26
       if (data) {
27
-        for(var i=0;i<data.length;i++){
28
-            if (data[i].ID==app.globalData.ProgramID){
29
-              if (that.data.Member=="非会员"){
30
-                data[i].Time = common.formatDateCHS(app.globalData.userInfo.CreateTime);
31
-              }
27
+        for (var i = 0; i < data.length; i++) {
28
+          if (data[i].ID == app.globalData.ProgramID) {
29
+            if (that.data.Member == "非会员") {
30
+              data[i].Time = common.formatDateCHS(app.globalData.userInfo.CreateTime);
32 31
             }
32
+          }
33 33
         }
34 34
         that.setData({
35 35
           ProductList: data,
@@ -47,8 +47,8 @@ Page({
47 47
       }
48 48
     });
49 49
   },
50
-  gotoPaylist:function(){
51
-    var that=this;
50
+  gotoPaylist: function () {
51
+    var that = this;
52 52
     wx.getSetting({
53 53
       success(res) {
54 54
         if (res.authSetting['scope.userInfo']) {
@@ -56,95 +56,16 @@ Page({
56 56
             url: '../about/paylist',
57 57
           });
58 58
         }
59
-        else{
59
+        else {
60 60
           that.getAccredit();
61 61
         }
62 62
       }
63 63
     });
64
-    
65
-  },
66
-  getAccredit: function () {
67
-    if (!this.data.IsAccredit) {
68
-      var that = this;
69
-      wx.getSetting({
70
-        success(res) {
71
-          if (!res.authSetting['scope.userInfo']) {
72
-            wx.authorize({
73
-              scope: 'scope.userInfo',
74
-              success() {
75
-                that.getUserInfo();
76
-              },
77
-              fail() {
78
-                wx.openSetting({
79
-                  success(res) {
80
-                    that.getUserInfo();
81
-                  }
82
-                });
83
-              }
84
-            })
85
-          }
86
-        }
87
-      })
88
-    }
89
-  },
90
-  //得到用户信息
91
-  getUserInfo: function () {
92
-    var that = this
93
-    //调用登录接口
94
-    wx.login({
95
-      success: function (res0) {
96
-        wx.getUserInfo({
97
-          withCredentials: true,
98
-          success: function (res) {
99
-            var userID = app.globalData.userInfo.UserID;
100
-            app.globalData.userInfo = res.userInfo;
101
-            app.globalData.userInfo.UserID = userID;
102
-
103
-            app.globalData.userInfo.NickName = app.globalData.userInfo.nickName;
104
-            app.globalData.userInfo.AvatarUrl = app.globalData.userInfo.avatarUrl;
105 64
 
106
-            // that.hasGetShareInfo(app.globalData.userInfo);
107
-            that.setData({
108
-              IsAccredit: true,
109
-              NickName: app.globalData.userInfo.NickName,
110
-              AvatarUrl: app.globalData.userInfo.AvatarUrl
111
-            });
112
-
113
-            app.globalData.userInfo.Code = res0.code;
114
-            app.globalData.userInfo.iv = res.iv;
115
-            app.globalData.userInfo.encryptedData = res.encryptedData;
116
-            that.login(app.globalData.userInfo);
117
-          },
118
-          fail: function (res) {
119
-            
120
-          }
121
-        });
122
-      },
123
-      fail: function () {
124
-      }
125
-    });
126 65
   },
127
-  login: function (param) {
128
-    var that = this;
129
-    server.postData('HanziLogin', {
130
-      Code: param.Code,
131
-      NickName: param.nickName,
132
-      Language: param.language,
133
-      Gender: param.gender,
134
-      City: param.city,
135
-      Province: param.province,
136
-      Country: param.country,
137
-      AvatarUrl: param.avatarUrl,
138
-      ProgramVersion: app.globalData.Version,
139
-      Introducer: app.globalData.introducer,
140
-      UserSource: app.globalData.userSource,
141
-      SourceID: app.globalData.SourceID,
142
-      LastUserSource: app.globalData.userSource,
143
-      iv: param.iv,
144
-      encryptedData: param.encryptedData,
145
-    }, function (data) {
146
-
66
+  gotoPayFinished: function () {
67
+    wx.navigateTo({
68
+      url: '../about/payfinished?type=accredit',
147 69
     });
148
-    
149 70
   },
150 71
 })

+ 5 - 5
pages/about/membercenter.wxml

@@ -1,14 +1,14 @@
1 1
 <view class="container FlexColumn" style='height:{{Height}}rpx;'>
2
-  <view class="title0" bindtap="getAccredit" wx:if="{{!IsAccredit}}">
3
-    为保障您的消费权益,在购买后请尽快授权用户信息!
2
+  <view class="title0" bindtap="gotoPayFinished" wx:if="{{!IsAccredit}}">
3
+    去登录,开通统计、套装、礼品卡等功能
4 4
   </view>
5 5
   <view class="title1">
6 6
     <view class="title1_1">会员信息</view>
7 7
   </view>
8
-  <view class="title3 FlexRow" bindtap="getAccredit" wx:if="{{!IsAccredit}}">
8
+  <view class="title3 FlexRow" bindtap="gotoPayFinished" wx:if="{{!IsAccredit}}">
9 9
     <view class="title2_1 FlexColumn">
10
-      <view class="red">授权用户信息</view>
11
-      <view class="title3_2">授权后才能正常使用统计、套装、礼品卡等功能</view>
10
+      <view class="red">登录</view>
11
+      <view class="title3_2">无需注册,授权即可登录;未登录部分功能不可使用</view>
12 12
     </view>
13 13
     <view class="title2_2 FlexRow">
14 14
       <image src='../../images/Arrow.png' class="Arrow" />

+ 2 - 3
pages/about/newuserlist.wxml

@@ -11,7 +11,7 @@
11 11
     </view>
12 12
   </view>
13 13
   <view class="text2">满6位新用户</view>
14
-  <view class="text3">升级到永久有效期</view>
14
+  <view class="text3">可延长有效期3个月</view>
15 15
   <view class="text4">技巧:转发到家长群,又快又有效率。</view>
16 16
   <button class="btnParent FlexRow" open-type="share">
17 17
     <view class="btn" bindtap="">
@@ -19,8 +19,7 @@
19 19
     </view>
20 20
   </button>
21 21
   <view class="text5">活动细则</view>
22
-  <text class="text6">* 购买产品并参加本活动,达到要求后有效期将升级为永久有效。</text>
23
-  <text class="text7 text6">* 购买前的邀请同样有效;购买前已达到,将在购买后自动生效。</text>
22
+  <text class="text6">* 本活动仅对会员(付费用户)开放,推荐结果自成为会员后开始计算。奖品自动生效,在达到要求后有效期延长3个月。</text>
24 23
   <text class="text7 text6">* “新用户”是指:从未打开过本小程序的微信帐号,经由您通过转发使对方打开小程序。</text>
25 24
 
26 25
 </view>

+ 1 - 1
pages/about/newuserlist.wxss

@@ -97,7 +97,6 @@
97 97
   color:#fff;
98 98
 }
99 99
 
100
-
101 100
 .text5 {
102 101
   font-size: 20rpx;
103 102
   margin-top: 30rpx;
@@ -106,6 +105,7 @@
106 105
   font-size: 20rpx;
107 106
   margin-top: 20rpx;
108 107
   width:600rpx;
108
+  font-weight: 400;
109 109
 }
110 110
 .text7 {
111 111
   margin-top: 10rpx;

+ 4 - 4
pages/about/orderlist.js

@@ -20,7 +20,7 @@ Page({
20 20
         Name: "英语自然拼读",
21 21
         Remark: "原价19.80元,有效期6个月",
22 22
         Price: 1980,
23
-        Remark2: "成套购买赠永久有效期",
23
+        Remark2: "成套购买加送6个月",
24 24
         Image: "06006",
25 25
         IsSelect: true,
26 26
       }, {
@@ -28,7 +28,7 @@ Page({
28 28
         Name: "语文汉语拼音",
29 29
         Remark: "原价9.90元,有效期6个月",
30 30
         Price: 990,
31
-        Remark2: "成套购买赠永久有效期",
31
+        Remark2: "成套购买加送6个月",
32 32
         Image: "06007",
33 33
         IsSelect: true,
34 34
       }, {
@@ -36,7 +36,7 @@ Page({
36 36
         Name: "语文识字",
37 37
         Remark: "原价9.80元,有效期6个月",
38 38
         Price: 980,
39
-        Remark2: "成套购买赠永久有效期",
39
+        Remark2: "成套购买加送6个月",
40 40
         Image: "06008",
41 41
         IsSelect: true,
42 42
       },
@@ -110,7 +110,7 @@ Page({
110 110
       if (detail == currentProductMoney) {
111 111
         server.payMoney(3, money, null, function () {
112 112
           wx.navigateTo({
113
-            url: '../about/payfinished',
113
+            url: '../about/payfinished?type=single',
114 114
           });
115 115
         });
116 116
       }

+ 121 - 14
pages/about/payfinished.js

@@ -7,18 +7,35 @@ Page({
7 7
   data: {
8 8
   },
9 9
   onLoad: function (options) {
10
-    var text1= "请确认购买记录";
11
-    var text2 = "查看我的订单";
12
-    if (options && options.type=="all"){
13
-      text1 = "套装产品必须逐个激活";
14
-      text2 = "赶紧去激活";
15
-      wx.setStorageSync("IsShowActivty", true);
10
+    var text0 = "", text1 = "", text2 = "", text3 = "";
11
+    if (options) {
12
+      if (options.type == "accredit") {
13
+        text0 = "会员登录";
14
+        text1 = "无需注册,微信授权即可登录";
15
+        text2 = "去登录";
16
+        text3 = "注意:会员登录后可使用付费功能。授权微信用户信息即可一键登录。为保障消费权益,购买后请尽快授权用户信息。登录后才能正常使用统计、排行、我的订单、套装、礼品卡等功能。";
17
+      }
18
+      else if (options.type == "single") {
19
+        text0 = "你好,会员";
20
+        text1 = "请确认购买结果";
21
+        text2 = "去查看";
22
+        text3 = "注意:如遇网络问题未能解锁,请清理手机内存并重新打开微信小程序,一般即可恢复正常。如仍未解决,可通过首页底部“意见反馈”联系我们为您处理。";
23
+      }
24
+      else if (options.type == "all") {
25
+        text0 = "套装产品必须激活";
26
+        text1 = "激活后才能正常使用";
27
+        text2 = "去激活";
28
+        text3 = "注意:如遇网络问题未能解锁,请清理手机内存并重新打开微信小程序,一般即可恢复正常。如仍未解决,可通过首页底部“意见反馈”联系我们为您处理。";
29
+        wx.setStorageSync("IsShowActivty", true);
30
+      }
16 31
     }
17 32
 
18 33
     this.setData({
19 34
       Height: common.getSystemHeight(),
20
-      Text1:text1,
21
-      Text2:text2,
35
+      Text0: text0,
36
+      Text1: text1,
37
+      Text2: text2,
38
+      Text3: text3,
22 39
       OrderType: options.type,
23 40
     });
24 41
   },
@@ -32,14 +49,104 @@ Page({
32 49
       url: '../index/index'
33 50
     });
34 51
   },
35
-  gotoPayList: function () {
36
-    wx.navigateTo({
37
-      url: '../about/paylist?type=finished',
52
+  goto: function () {
53
+    var that=this;
54
+    if (this.data.OrderType == "accredit") {
55
+      var that = this;
56
+      wx.getSetting({
57
+        success(res) {
58
+          if (!res.authSetting['scope.userInfo']) {
59
+            wx.authorize({
60
+              scope: 'scope.userInfo',
61
+              success() {
62
+                that.getUserInfo();
63
+              },
64
+              fail() {
65
+                wx.openSetting({
66
+                  success(res) {
67
+                    that.getUserInfo();
68
+                  },
69
+                });
70
+              }
71
+            })
72
+          }
73
+          else {
74
+            that.getUserInfo();
75
+          }
76
+        }
77
+      })
78
+      
79
+    }
80
+    else if (this.data.OrderType == "single" || this.data.OrderType == "all") {
81
+      wx.navigateTo({
82
+        url: '../about/paylist?type=finished',
83
+      });
84
+    }
85
+  },
86
+  //得到用户信息
87
+  getUserInfo: function () {
88
+    var that = this
89
+    //调用登录接口
90
+    wx.login({
91
+      success: function (res0) {
92
+        wx.getUserInfo({
93
+          withCredentials: true,
94
+          success: function (res) {
95
+            var userID = app.globalData.userInfo.UserID;
96
+            app.globalData.userInfo = res.userInfo;
97
+            app.globalData.userInfo.UserID = userID;
98
+
99
+            app.globalData.userInfo.NickName = app.globalData.userInfo.nickName;
100
+            app.globalData.userInfo.AvatarUrl = app.globalData.userInfo.avatarUrl;
101
+
102
+            // that.hasGetShareInfo(app.globalData.userInfo);
103
+            that.setData({
104
+              IsAccredit: true,
105
+              NickName: app.globalData.userInfo.NickName,
106
+              AvatarUrl: app.globalData.userInfo.AvatarUrl
107
+            });
108
+
109
+            app.globalData.userInfo.Code = res0.code;
110
+            app.globalData.userInfo.iv = res.iv;
111
+            app.globalData.userInfo.encryptedData = res.encryptedData;
112
+            that.login(app.globalData.userInfo);
113
+          },
114
+          fail: function (res) {
115
+            wx.reLaunch({
116
+              url: '../main/index'
117
+            });
118
+          }
119
+        });
120
+      },
121
+      fail: function () {
122
+        wx.reLaunch({
123
+          url: '../main/index'
124
+        });
125
+      }
38 126
     });
39 127
   },
40
-  gotoNewUserList: function () {
41
-    wx.navigateTo({
42
-      url: '../about/newuserlist',
128
+  login: function (param) {
129
+    var that = this;
130
+    server.postData('HanziLogin', {
131
+      Code: param.Code,
132
+      NickName: param.nickName,
133
+      Language: param.language,
134
+      Gender: param.gender,
135
+      City: param.city,
136
+      Province: param.province,
137
+      Country: param.country,
138
+      AvatarUrl: param.avatarUrl,
139
+      ProgramVersion: app.globalData.Version,
140
+      Introducer: app.globalData.introducer,
141
+      UserSource: app.globalData.userSource,
142
+      SourceID: app.globalData.SourceID,
143
+      LastUserSource: app.globalData.userSource,
144
+      iv: param.iv,
145
+      encryptedData: param.encryptedData,
146
+    }, function (data) {
147
+      wx.reLaunch({
148
+        url: '../main/index'
149
+      });
43 150
     });
44 151
   },
45 152
   onShareAppMessage: function () {

+ 1 - 1
pages/about/payfinished.json

@@ -1,6 +1,6 @@
1 1
 {
2 2
   "navigationBarBackgroundColor": "#F5E2BE",
3
-  "navigationBarTitleText": "订单",
3
+  "navigationBarTitleText": "感谢购买",
4 4
   "backgroundColor": "#F5E2BE",
5 5
   "enablePullDownRefresh": false
6 6
 }

+ 5 - 14
pages/about/payfinished.wxml

@@ -1,21 +1,12 @@
1 1
 <view class="container FlexColumn" style='height:{{Height}}rpx;'>
2 2
   <image src="../../images/06003.png" class="bg" />
3
-  <text class="text1">感谢购买</text>
4
-  <text class="text1_1">{{Text1}}</text>
3
+  <text class="text0">{{Text0}}</text>
4
+  <text class="text1">{{Text1}}</text>
5 5
 
6
-  <view class="btn" bindtap="gotoPayList">
6
+  <view class="btn" bindtap="goto">
7 7
     <view class="btn1">{{Text2}}</view>
8 8
   </view>
9
-  <text class="text2">注意:如遇网络问题未能解锁,请清理手机内存并重新打开微信小程序,一般即可恢复正常。如仍未解决,可通过首页底部“意见反馈”联系我们为您处理。</text>
9
+  <view class="line2"></view>
10
+  <text class="text3">{{Text3}}</text>
10 11
 
11
-  <block wx:if="{{OrderType!='all'}}">
12
-    <view class="line2"></view>
13
-    <view class="text4">
14
-      想要获得永久有效期?
15
-    </view>
16
-    <view class="text5 text3 FlexRow" bindtap="gotoNewUserList">
17
-      <image src="../../images/Triangle.png" class="Triangle" />
18
-      <view>告诉我怎么做</view>
19
-    </view>
20
-  </block>
21 12
 </view>

+ 11 - 32
pages/about/payfinished.wxss

@@ -13,13 +13,14 @@
13 13
   left:0;
14 14
 }
15 15
 
16
-.text1{
16
+.text0{
17 17
   font-size:36rpx;
18 18
   text-align: center;
19
-  margin-top: 132rpx;
19
+  margin-top: 280rpx;
20
+  z-index: 10;
20 21
 }
21 22
 
22
-.text1_1{
23
+.text1{
23 24
   font-size:44rpx;
24 25
   text-align: center;
25 26
   margin-top: 10rpx;
@@ -31,7 +32,8 @@
31 32
   height: 104rpx;
32 33
   background-color: #035834;
33 34
   border-radius: 14rpx;
34
-  margin-top: 88rpx;
35
+  margin-top: 90rpx;
36
+  z-index: 10;
35 37
 }
36 38
 
37 39
 .btn1 {
@@ -47,43 +49,20 @@
47 49
   color:#fff;
48 50
 }
49 51
 
50
-.text2{
51
-  font-size:22rpx;
52
-  width:560rpx; 
53
-  margin-top: 50rpx;
54
-  z-index: 10;
55
-}
56
-
57 52
 .line2{
58 53
   width: 600rpx;
59 54
   height:3rpx;
60 55
   background-color: #593613;
61
-  margin-top:360rpx;
56
+  margin-top:350rpx;
62 57
   z-index: 10;
63 58
 }
64 59
 
65
-
66 60
 .text3{
67
-  font-size:36rpx;
68
-  color:#A20602;
69
-  margin-top: 90rpx;
70
-  z-index: 10;
71
-}
72
-
73
-.Triangle{
74
-  width: 16rpx;
75
-  height:22rpx;
76
-  margin-right: 22rpx;
77
-}
78
-
79
-.text4{
80
-  font-size:28rpx;
81
-  margin-top: 60rpx;
61
+  font-size:22rpx;
62
+  width:560rpx; 
63
+  margin-top: 40rpx;
82 64
   z-index: 10;
65
+  font-weight: 400;
83 66
 }
84 67
 
85
-.text5{
86
-  margin-top: 20rpx;
87
-  z-index: 10;
88
-}
89 68
 

+ 1 - 1
pages/about/paylist.wxml

@@ -1,7 +1,7 @@
1 1
 <view class="container FlexColumn" style='min-height:{{Height}}rpx;'>
2 2
   <block wx:if="{{PayList.length>0}}">
3 3
     <view class="text0" wx:if="{{IsShowActivty}}">
4
-      有产品未激活,请立即处理!
4
+      套装产品未激活,必须激活才能正常使用,请立即处理
5 5
     </view>
6 6
     <view class="text1" bindtap='gotoFeedback'>购买后如不能正常使用,请清理内存后重启微信并打开小程序,</view>
7 7
     <view class="text2 FlexRow" bindtap='gotoFeedback'>

+ 10 - 1
pages/main/index.js

@@ -41,6 +41,14 @@ Page({
41 41
             IsAccredit: true,
42 42
           });
43 43
         }
44
+        else{
45
+          //付费用户请去授权
46
+          if (app.globalData.userInfo.IsMember == 1) {
47
+            wx.navigateTo({
48
+              url: '../about/payfinished?type=accredit',
49
+            });
50
+          }
51
+        }
44 52
       }
45 53
     })
46 54
 
@@ -52,6 +60,7 @@ Page({
52 60
   onShow: function () {
53 61
     this.getData();
54 62
 
63
+    //进入详情出来后,让用户授权
55 64
     if (!this.data.IsAccredit) {
56 65
       var IsRemindAccredit = wx.getStorageSync("IsRemindAccredit");
57 66
       if (IsRemindAccredit == 1) {
@@ -361,7 +370,7 @@ Page({
361 370
       var money = app.globalData.PayMoney;
362 371
       server.payMoney(3, money,null, function () {
363 372
         wx.navigateTo({
364
-          url: '../about/payfinished',
373
+          url: '../about/payfinished?type=single',
365 374
         });
366 375
       });
367 376
       setTimeout(function () {

+ 2 - 8
pages/main/index.wxml

@@ -125,14 +125,10 @@
125 125
         <view class="payButton" bindtap='getPay'></view>
126 126
       </image>
127 127
       <!-- 次日 -->
128
-      <image src='../../images/02026.png' class="img02026 img02025" wx:if="{{IsMember==0 && !IsFirstDay && NewUserNumber<NewUserNumberMax}}">
128
+      <image src='../../images/02026.png' class="img02026 img02025" wx:if="{{IsMember==0 && !IsFirstDay}}">
129 129
         <view class="payButton2 payButton" bindtap='getPay'></view>
130 130
         <view class="getNewUser" bindtap='gotoNewUser'></view>
131 131
       </image>
132
-      <!-- 满员 -->
133
-      <image src='../../images/02027.png' class="img02027 img02025" wx:if="{{IsMember==0 && !IsFirstDay && NewUserNumber>=NewUserNumberMax}}">
134
-        <view class="payButton2 payButton" bindtap='getPay'></view>
135
-      </image>
136 132
       <!-- 已付 -->
137 133
       <image src='../../images/02028.png' class="img02028 img02025" wx:if="{{IsMember==1 && !IsFirstDay && NewUserNumber<NewUserNumberMax}}">
138 134
         <view class="getNewUser2 getNewUser" bindtap='gotoNewUser'></view>
@@ -193,9 +189,7 @@ wx:if="{{IsMemberForeverRemind==1}}">
193 189
       <view class="panel1 FlexColumn">
194 190
         <image src='../../images/02023.png' class="img" />
195 191
         <view class="text1">恭喜你</view>
196
-        <view class="text2">获得永久有效期奖励</view>
197
-        <view class="line"></view>
198
-        <view class="text3">*购买本产品后自动生效</view>
192
+        <view class="text2">获得3个月有效期</view>
199 193
       </view>
200 194
       <view class="panel2 FlexColumn">
201 195
         知道了

+ 6 - 6
pages/main/index.wxss

@@ -418,23 +418,23 @@
418 418
 }
419 419
 .payInfo .img02025{
420 420
   width:100%;
421
-  height:953rpx;
421
+  height:1100rpx;
422 422
   position: relative;
423 423
 }
424 424
 .payInfo .img02026{
425
-  height:1024rpx;
425
+  height:810rpx;
426 426
 }
427 427
 .payInfo .img02027{
428 428
   height:696rpx;
429 429
 }
430 430
 .payInfo .img02028{
431
-  height:586rpx;
431
+  height:580rpx;
432 432
 }
433 433
 .payInfo .payButton{
434 434
   width:600rpx;
435 435
   height:104rpx;
436 436
   position: absolute;
437
-  top:690rpx;
437
+  top:800rpx;
438 438
   left:75rpx;
439 439
 }
440 440
 .payInfo .payButton2{
@@ -481,7 +481,7 @@
481 481
 
482 482
 .IsMemberForever .btn {
483 483
   width: 600rpx;
484
-  height: 729rpx;
484
+  height: 640rpx;
485 485
   background-color: #D2D2D2;
486 486
   border-radius: 40rpx;
487 487
   margin-top: 230rpx;
@@ -489,7 +489,7 @@
489 489
 }
490 490
 .IsMemberForever .btn1 {
491 491
   width: 100%;
492
-  height: 709rpx;
492
+  height: 620rpx;
493 493
   background-color: #F0F0F0;
494 494
   border-radius: 40rpx;
495 495
   position:relative;

+ 1 - 1
pages/main/list.js

@@ -169,7 +169,7 @@ Page({
169 169
       var money = app.globalData.PayMoney;
170 170
       server.payMoney(3, money,null, function () {
171 171
         wx.navigateTo({
172
-          url: '../about/payfinished',
172
+          url: '../about/payfinished?type=single',
173 173
         });
174 174
       });
175 175
       setTimeout(function () {

+ 6 - 0
project.config.json

@@ -85,6 +85,12 @@
85 85
 					"name": "\b激活",
86 86
 					"pathName": "pages/index/index",
87 87
 					"query": "SourceID=106&ProductBuyInfoID=3306&ProductID=106&ProductUserID=1&BuyType=109"
88
+				},
89
+				{
90
+					"id": -1,
91
+					"name": "新用户",
92
+					"pathName": "pages/about/newuserlist",
93
+					"query": ""
88 94
 				}
89 95
 			]
90 96
 		}