future 1 năm trước cách đây
mục cha
commit
befd395bbf

+ 4 - 4
assets/resources/ui/home.prefab

@@ -146,7 +146,7 @@
     "_contentSize": {
       "__type__": "cc.Size",
       "width": 1080,
-      "height": 1920
+      "height": 1920.0000000000002
     },
     "_anchorPoint": {
       "__type__": "cc.Vec2",
@@ -293,7 +293,7 @@
     "_lpos": {
       "__type__": "cc.Vec3",
       "x": 0,
-      "y": 285,
+      "y": 285.0000000000001,
       "z": 0
     },
     "_lrot": {
@@ -4384,7 +4384,7 @@
     "_lpos": {
       "__type__": "cc.Vec3",
       "x": 0,
-      "y": -960,
+      "y": -960.0000000000001,
       "z": 0
     },
     "_lrot": {
@@ -11776,7 +11776,7 @@
     "_contentSize": {
       "__type__": "cc.Size",
       "width": 1080,
-      "height": 1920
+      "height": 1920.0000000000002
     },
     "_anchorPoint": {
       "__type__": "cc.Vec2",

+ 6 - 2
assets/script/sdkUtil.ts

@@ -119,8 +119,12 @@ export class SdkUtil {
         if(sys.platform == sys.Platform.BYTEDANCE_MINI_GAME) {
             tt.showLoading({
                 title: title,
-                success(res) { console.log(`${res}`);},
-                fail(err) { console.log(`showLoading调用失败`,err);},
+                success(res) { 
+                    // console.log(`${res}`)
+                },
+                fail(err) { 
+                    // console.log(`showLoading调用失败`,err)
+                },
             })
         }
     }

+ 1 - 3
assets/script/ui/rank/rank.ts

@@ -1,12 +1,10 @@
-import { _decorator, Component, instantiate, Node, Prefab, ScrollView, Sprite, SpriteFrame } from 'cc';
+import { _decorator, Component, instantiate, Node, Prefab, ScrollView } from 'cc';
 import { uiManager } from '../../manager/uiManager';
 import { rank_list_item } from './rank_list_item';
 import { rank_my_info } from './rank_my_info';
 import { rank_list_top } from './rank_list_top';
 import { userDataManager } from '../../manager/userDataManager';
 import { GameManager } from '../../GameManager';
-import { ClientEvent } from '../../lib/clientEvent';
-import { config } from '../../config';
 import { rank_classify } from './rank_classify';
 const { ccclass, property } = _decorator;