xujing 5 years ago
parent
commit
bd2f1d6d4e
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      project.config.json
  2. 1
    1
      src/pages/card/fans/index.js

+ 1
- 1
project.config.json View File

2
 	"miniprogramRoot": "dist/",
2
 	"miniprogramRoot": "dist/",
3
 	"projectname": "mini-chengjiao",
3
 	"projectname": "mini-chengjiao",
4
 	"description": "知与行联调",
4
 	"description": "知与行联调",
5
-	"appid": "wxda1f84b79b3edeb3",
5
+	"appid": "wxd6f47a9bb3052175",
6
 	"setting": {
6
 	"setting": {
7
 		"urlCheck": false,
7
 		"urlCheck": false,
8
 		"es6": false,
8
 		"es6": false,

+ 1
- 1
src/pages/card/fans/index.js View File

135
           <View>
135
           <View>
136
             {list.map(item =>
136
             {list.map(item =>
137
               <FansItem key={item.uvId} data={item} />)}
137
               <FansItem key={item.uvId} data={item} />)}
138
-            {list.length > 50 && <View style="text-align:center;line-height:120rpx;font-size:24rpx;color:#999"> 仅展示最近50条围观记录</View>}
138
+            {list.length >= 50 && <View style="text-align:center;line-height:120rpx;font-size:24rpx;color:#999"> 仅展示最近50条围观记录</View>}
139
           </View>
139
           </View>
140
           : <EmptyPage text="暂无围观记录哦~" />}
140
           : <EmptyPage text="暂无围观记录哦~" />}
141
 
141