panhui 2 ani în urmă
părinte
comite
c6e09d43c5

+ 1 - 1
android/app/build.gradle

@@ -6,7 +6,7 @@ android {
         applicationId "com.bigauction.mobile"
         minSdkVersion rootProject.ext.minSdkVersion
         targetSdkVersion rootProject.ext.targetSdkVersion
-        versionCode 79
+        versionCode 80
         versionName "1.0.0"
         testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
         aaptOptions {

+ 2 - 2
ios/App/App.xcodeproj/project.pbxproj

@@ -352,7 +352,7 @@
 				CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = NO;
 				CODE_SIGN_ENTITLEMENTS = App/App.entitlements;
 				CODE_SIGN_STYLE = Automatic;
-				CURRENT_PROJECT_VERSION = 79;
+				CURRENT_PROJECT_VERSION = 80;
 				DEFINES_MODULE = NO;
 				DEVELOPMENT_TEAM = 72P5Y6N578;
 				INFOPLIST_FILE = App/Info.plist;
@@ -377,7 +377,7 @@
 				CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = NO;
 				CODE_SIGN_ENTITLEMENTS = App/App.entitlements;
 				CODE_SIGN_STYLE = Automatic;
-				CURRENT_PROJECT_VERSION = 79;
+				CURRENT_PROJECT_VERSION = 80;
 				DEFINES_MODULE = NO;
 				DEVELOPMENT_TEAM = 72P5Y6N578;
 				INFOPLIST_FILE = App/Info.plist;

+ 3 - 3
src/version.json

@@ -1,12 +1,12 @@
 {
     "ios": {
         "version": "1.0.0",
-        "build": 79
+        "build": 80
     },
     "android": {
         "version": "1.0.0",
-        "build": 79,
+        "build": 80,
         "versionCode": 12
     },
-    "www": 1064
+    "www": 1065
 }

+ 48 - 13
src/views/RankPage.vue

@@ -66,7 +66,7 @@
                                     <div class="name">{{ item.nickname }}</div>
                                 </div>
 
-                                <div class="rank-val" v-if="tab === 1 && i < 10">
+                                <div class="rank-val" :class="[`rank-val_${i}`]" v-if="tab === 1 && i < 10">
                                     <img class="val-bg" :src="rankValue[i].img" alt="" />
                                     <div class="val-content">
                                         <div class="text1">{{ rankValue[i].label }}</div>
@@ -469,29 +469,64 @@ function goInvite() {
         justify-content: center;
 
         .text1 {
-            font-size: 14px;
+            font-size: 12px;
             font-weight: bold;
-            color: #d8d8d8;
+            color: #4d4d4d;
             line-height: 14px;
-            background: linear-gradient(180deg, #ed5701 0%, #c40800 100%);
-            -webkit-background-clip: text;
-            background-clip: text;
-            -webkit-text-fill-color: transparent;
         }
         .text2 {
-            font-size: 10px;
+            font-size: 12px;
             font-weight: bold;
-            color: #d8d8d8;
+            color: #4d4d4d;
             line-height: 12px;
-            background: linear-gradient(180deg, #ed5701 0%, #c40800 100%);
-            -webkit-background-clip: text;
-            background-clip: text;
-            -webkit-text-fill-color: transparent;
             margin-top: 4px;
             .nor {
                 font-weight: normal;
             }
         }
     }
+
+    &.rank-val_0 {
+        .val-content {
+            .text1 {
+                background: linear-gradient(180deg, #ed5701 0%, #c40800 100%);
+                -webkit-background-clip: text;
+                -webkit-text-fill-color: transparent;
+            }
+            .text2 {
+                background: linear-gradient(180deg, #ed5701 0%, #c40800 100%);
+                -webkit-background-clip: text;
+                -webkit-text-fill-color: transparent;
+            }
+        }
+    }
+    &.rank-val_1 {
+        .val-content {
+            .text1 {
+                background: linear-gradient(180deg, #004f84 0%, #0a4268 100%);
+                -webkit-background-clip: text;
+                -webkit-text-fill-color: transparent;
+            }
+            .text2 {
+                background: linear-gradient(180deg, #004f84 0%, #0a4268 100%);
+                -webkit-background-clip: text;
+                -webkit-text-fill-color: transparent;
+            }
+        }
+    }
+    &.rank-val_2 {
+        .val-content {
+            .text1 {
+                background: linear-gradient(180deg, #ae4432 0%, #9d1c06 100%);
+                -webkit-background-clip: text;
+                -webkit-text-fill-color: transparent;
+            }
+            .text2 {
+                background: linear-gradient(180deg, #ae4432 0%, #9d1c06 100%);
+                -webkit-background-clip: text;
+                -webkit-text-fill-color: transparent;
+            }
+        }
+    }
 }
 </style>