wzx hace 8 meses
padre
commit
db06e48f98

+ 2 - 2
card/common/api.js

@@ -3,8 +3,8 @@ export const apiServer = process.env.API_BASE_URL;
 // console.log("ossUrl", ossUrl);
 // console.log("apiServer", apiServer);
 
-// export const token = '';
-export const token = '96ba3c924394934f7d30fa869a94ce0d';
+export const token = '';
+// export const token = '96ba3c924394934f7d30fa869a94ce0d';
 // export const token = 'bb960dda8604c39242dd2665cc7afd69';
 // export const token = '04f912f3b521305eb42c9d39b0788ac2';
 

+ 2 - 2
card/manifest.json

@@ -2,8 +2,8 @@
     "name" : "card",
     "appid" : "__UNI__A61F96B",
     "description" : "",
-    "versionName" : "2.3.0",
-    "versionCode" : 230,
+    "versionName" : "2.3.1",
+    "versionCode" : 231,
     "transformPx" : false,
     /* 5+App特有相关 */
     "app-plus" : {

+ 2 - 2
card/pages/game/grid/cardconfig/test2.js

@@ -75,10 +75,10 @@ export const localCardConfig = `{
 	"grid": {
 		"css": "
 			.cell-name-uncomplete {
-				color: #CF6B00 !important;
+				display: none;
 			}
 			.cell-name-complete {
-				color: #ffffff !important;
+				display: none;
 			}
 		",
 		"tabPageItems": ["赛事", "排行榜"],

+ 1 - 1
card/pages/game/grid/grid.vue

@@ -38,7 +38,7 @@ https://oss-mbh5.colormaprun.com/card/#/pages/game/grid/grid
 					</view>
 				</view>
 
-				<view v-if="gridBottom && gridBottom != ''" class="gridBottom" v-html="gridBottom"></view>
+				<view v-if="gridBottom && gridBottom != ''" class="gridBottom uni-column" v-html="gridBottom"></view>
 
 				<view class="introduce uni-column">
 					<text class="introduce-title">{{introduce.title}}</text>

+ 2 - 1
card/pages/game/grid/rankList.vue

@@ -43,7 +43,8 @@ https://oss-mbh5.colormaprun.com/card/#/pages/game/grid/rankList
 								</view>
 							</view>
 						</view>
-						<view class="bsi-ranknum">第 {{selfRank.rankNum}} 名</view>
+						<view v-if="selfRank.rankNum > 0" class="bsi-ranknum">第 {{selfRank.rankNum}} 名</view>
+						<view v-else class="bsi-ranknum">暂无名次</view>
 					</view>
 				</view>