Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Z
ZheShangBank_TaoQuan_20240612
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
SparkProjects
ZheShangBank_TaoQuan_20240612
Commits
51ad6333
Commit
51ad6333
authored
Jul 29, 2024
by
俞嘉婷
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: 切换圈圈页面 按钮和任务板块共存 圈圈按钮、任务按钮逻辑调整
parent
30683fac
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
1237 additions
and
75 deletions
+1237
-75
ChangeEquipPanel.ts
assets/Scripts/Panels/ChangeEquipPanel/ChangeEquipPanel.ts
+36
-14
ChangeEquipPanel.prefab
assets/resources/ChangeEquipPanel/ChangeEquipPanel.prefab
+657
-54
mainBtnNotHave.png
assets/resources/ChangeEquipPanel/img/mainBtnNotHave.png
+0
-0
mainBtnNotHave.png.meta
...ts/resources/ChangeEquipPanel/img/mainBtnNotHave.png.meta
+134
-0
mainBtnUsing.png
assets/resources/ChangeEquipPanel/img/mainBtnUsing.png
+0
-0
mainBtnUsing.png.meta
assets/resources/ChangeEquipPanel/img/mainBtnUsing.png.meta
+134
-0
task_btn_done.png
assets/resources/ChangeEquipPanel/img/task_btn_done.png
+0
-0
task_btn_done.png.meta
assets/resources/ChangeEquipPanel/img/task_btn_done.png.meta
+134
-0
task_btn_not.png
assets/resources/ChangeEquipPanel/img/task_btn_not.png
+0
-0
task_btn_not.png.meta
assets/resources/ChangeEquipPanel/img/task_btn_not.png.meta
+134
-0
Bg.png.meta
assets/resources/NoGetRankPrizePanel/img/Bg.png.meta
+2
-2
index.html
build/web-mobile-001/index.html
+6
-5
No files found.
assets/Scripts/Panels/ChangeEquipPanel/ChangeEquipPanel.ts
View file @
51ad6333
...
...
@@ -96,6 +96,12 @@ export class ChangeEquipPanel extends Panel {
/** 高亮按钮 */
@
property
(
Node
)
mainBtn
:
Node
=
null
;
/** 未获得按钮 */
@
property
(
Node
)
MainBtnNotHave
:
Node
=
null
;
/** 使用中按钮 */
@
property
(
Node
)
MainBtnUsing
:
Node
=
null
;
/** 任务栏 */
@
property
(
Node
)
taskBox
:
Node
=
null
;
...
...
@@ -106,6 +112,9 @@ export class ChangeEquipPanel extends Panel {
/** 任务去完成 */
@
property
(
Node
)
taskBtn
:
Node
=
null
;
/** 任务已完成 */
@
property
(
Node
)
taskBtnDone
:
Node
=
null
;
/** 猫猫爪 */
@
property
(
Node
)
...
...
@@ -312,33 +321,46 @@ export class ChangeEquipPanel extends Panel {
console.log(data);
if (!!isUsed) {
/** 已装备 */
this.mainBtnGrey.active = true;
/** 使用中 */
this.MainBtnUsing.active = true;
this.MainBtnNotHave.active = false;
this.mainBtnGrey.active = false;
this.mainBtn.active = false;
this.taskBox.active =
false
;
this.taskBox.active =
loopType != '1'
;
} else if (!!!isUsed) {
// loopType 1 青铜没有taskCode 没有这俩字段 直接展示「更换装备」
if (loopType == '1' || completedSize >= intervalLimitSize) {
/** 已解锁未装备 */
this.MainBtnNotHave.active = false;
this.MainBtnUsing.active = false;
this.mainBtnGrey.active = false;
this.mainBtn.active = true;
this.taskBox.active =
false
;
this.taskBox.active =
loopType != '1'
;
} else {
/** 未解锁 */
this.MainBtnNotHave.active = true;
this.MainBtnUsing.active = false;
this.mainBtnGrey.active = false;
this.mainBtn.active = false;
this.taskBox.active = true;
this.taskBox.getChildByName("Title").getComponent(Label).string = strFormat(title, 22);
if (taskCode == "bank_2201") {
const descObj = taskData.desc ? JSON.parse(taskData.desc) : {};
const t = descObj?.progressAmount || 0;
this.taskBox.getChildByName("Progress").getComponent(Label).string = `
累计已提升金额:
$
{
t
}
元
`;
} else {
this.taskBox.getChildByName("Progress").getComponent(Label).string = `
完成
$
{
completedSize
}
/${intervalLimitSize}`
;
}
this.taskBox.active = loopType != '1';
}
}
this.taskBox.getChildByName("Title").getComponent(Label).string = strFormat(title, 22);
if (taskCode == "bank_2201") {
const descObj = taskData.desc ? JSON.parse(taskData.desc) : {};
const t = descObj?.progressAmount || 0;
this.taskBox.getChildByName("Progress").getComponent(Label).string = `
累计已提升金额:
$
{
t
}
元
`;
} else {
this.taskBox.getChildByName("Progress").getComponent(Label).string = `
完成
$
{
completedSize
}
/${intervalLimitSize}`
;
}
if
(
completedSize
>=
intervalLimitSize
)
{
this
.
taskBtnDone
.
active
=
true
;
this
.
taskBtn
.
active
=
false
;
}
else
{
this
.
taskBtnDone
.
active
=
false
;
this
.
taskBtn
.
active
=
true
;
}
}
/** 去完成任务 */
...
...
assets/resources/ChangeEquipPanel/ChangeEquipPanel.prefab
View file @
51ad6333
...
...
@@ -40,26 +40,32 @@
"__id__": 196
},
{
"__id__": 2
32
"__id__": 2
40
},
{
"__id__": 240
"__id__": 248
},
{
"__id__": 254
},
{
"__id__": 262
}
],
"_active": true,
"_components": [
{
"__id__": 2
46
"__id__": 2
70
},
{
"__id__": 2
48
"__id__": 2
72
},
{
"__id__": 2
50
"__id__": 2
74
}
],
"_prefab": {
"__id__": 2
52
"__id__": 2
76
},
"_lpos": {
"__type__": "cc.Vec3",
...
...
@@ -3286,21 +3292,24 @@
},
{
"__id__": 221
},
{
"__id__": 229
}
],
"_active": false,
"_components": [
{
"__id__": 2
29
"__id__": 2
37
}
],
"_prefab": {
"__id__": 23
1
"__id__": 23
9
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y": -
75.
5,
"y": -
22
5,
"z": 0
},
"_lrot": {
...
...
@@ -3526,7 +3535,7 @@
},
"_contentSize": {
"__type__": "cc.Size",
"width":
8
0,
"width":
10
0,
"height": 50.4
},
"_anchorPoint": {
...
...
@@ -3565,7 +3574,7 @@
"_string": "获取途径",
"_horizontalAlign": 0,
"_verticalAlign": 1,
"_actualFontSize": 2
0
,
"_actualFontSize": 2
5
,
"_fontSize": 25,
"_fontFamily": "Arial",
"_lineHeight": 40,
...
...
@@ -3724,7 +3733,7 @@
"_string": "",
"_horizontalAlign": 0,
"_verticalAlign": 1,
"_actualFontSize": 2
0
,
"_actualFontSize": 2
8
,
"_fontSize": 28,
"_fontFamily": "Arial",
"_lineHeight": 40,
...
...
@@ -3844,7 +3853,7 @@
},
"_contentSize": {
"__type__": "cc.Size",
"width":
4
0,
"width": 0,
"height": 50.4
},
"_anchorPoint": {
...
...
@@ -3883,7 +3892,7 @@
"_string": "",
"_horizontalAlign": 0,
"_verticalAlign": 1,
"_actualFontSize": 2
0
,
"_actualFontSize": 2
8
,
"_fontSize": 28,
"_fontFamily": "Arial",
"_lineHeight": 40,
...
...
@@ -4043,7 +4052,7 @@
"a": 255
},
"_spriteFrame": {
"__uuid__": "
ab4ff04a-6bcb-402a-97dd-f4ba9adbef94
@f9941",
"__uuid__": "
f0173f8e-78fa-439b-af37-e6c6a76b7ae7
@f9941",
"__expectedType__": "cc.SpriteFrame"
},
"_type": 0,
...
...
@@ -4134,6 +4143,201 @@
"targetOverrides": null,
"nestedPrefabInstanceRoots": null
},
{
"__type__": "cc.Node",
"_name": "BtnDone",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": {
"__id__": 196
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 230
},
{
"__id__": 232
},
{
"__id__": 234
}
],
"_prefab": {
"__id__": 236
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 200,
"y": 0,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
},
"_lscale": {
"__type__": "cc.Vec3",
"x": 1,
"y": 1,
"z": 1
},
"_mobility": 0,
"_layer": 33554432,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": ""
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 229
},
"_enabled": true,
"__prefab": {
"__id__": 231
},
"_contentSize": {
"__type__": "cc.Size",
"width": 182,
"height": 67
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "4cVeWPRKRFjaLyTL8T0jhE"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 229
},
"_enabled": true,
"__prefab": {
"__id__": 233
},
"_customMaterial": null,
"_srcBlendFactor": 2,
"_dstBlendFactor": 4,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_spriteFrame": {
"__uuid__": "2a0bcc98-5fcc-49da-8cae-8fd1ce9f3d98@f9941",
"__expectedType__": "cc.SpriteFrame"
},
"_type": 0,
"_fillType": 0,
"_sizeMode": 1,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_useGrayscale": false,
"_atlas": null,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "0frGui8B5Gg4HT3+POITtV"
},
{
"__type__": "cc.Button",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 229
},
"_enabled": true,
"__prefab": {
"__id__": 235
},
"clickEvents": [],
"_interactable": true,
"_transition": 0,
"_normalColor": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_hoverColor": {
"__type__": "cc.Color",
"r": 211,
"g": 211,
"b": 211,
"a": 255
},
"_pressedColor": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_disabledColor": {
"__type__": "cc.Color",
"r": 124,
"g": 124,
"b": 124,
"a": 255
},
"_normalSprite": null,
"_hoverSprite": null,
"_pressedSprite": null,
"_disabledSprite": null,
"_duration": 0.1,
"_zoomScale": 1.2,
"_target": null,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "e7OiAQEsJBTKCw21XSaXaq"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "39EhxhCnZNFrySW1KRJqBB",
"instance": null,
"targetOverrides": null,
"nestedPrefabInstanceRoots": null
},
{
"__type__": "cc.UITransform",
"_name": "",
...
...
@@ -4144,7 +4348,7 @@
},
"_enabled": true,
"__prefab": {
"__id__": 23
0
"__id__": 23
8
},
"_contentSize": {
"__type__": "cc.Size",
...
...
@@ -4187,22 +4391,22 @@
"_active": false,
"_components": [
{
"__id__": 2
33
"__id__": 2
41
},
{
"__id__": 2
35
"__id__": 2
43
},
{
"__id__": 2
37
"__id__": 2
45
}
],
"_prefab": {
"__id__": 2
39
"__id__": 2
47
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y": -
6
0,
"y": -
5
0,
"z": 0
},
"_lrot": {
...
...
@@ -4234,11 +4438,11 @@
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 2
32
"__id__": 2
40
},
"_enabled": true,
"__prefab": {
"__id__": 2
34
"__id__": 2
42
},
"_contentSize": {
"__type__": "cc.Size",
...
...
@@ -4262,11 +4466,11 @@
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 2
32
"__id__": 2
40
},
"_enabled": true,
"__prefab": {
"__id__": 2
36
"__id__": 2
44
},
"_customMaterial": null,
"_srcBlendFactor": 2,
...
...
@@ -4307,11 +4511,11 @@
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 2
32
"__id__": 2
40
},
"_enabled": true,
"__prefab": {
"__id__": 2
38
"__id__": 2
46
},
"clickEvents": [],
"_interactable": true,
...
...
@@ -4382,19 +4586,19 @@
"_active": false,
"_components": [
{
"__id__": 24
1
"__id__": 24
9
},
{
"__id__": 2
43
"__id__": 2
51
}
],
"_prefab": {
"__id__": 2
45
"__id__": 2
53
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y": -
6
0,
"y": -
5
0,
"z": 0
},
"_lrot": {
...
...
@@ -4426,11 +4630,11 @@
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 24
0
"__id__": 24
8
},
"_enabled": true,
"__prefab": {
"__id__": 2
42
"__id__": 2
50
},
"_contentSize": {
"__type__": "cc.Size",
...
...
@@ -4454,11 +4658,11 @@
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 24
0
"__id__": 24
8
},
"_enabled": true,
"__prefab": {
"__id__": 2
44
"__id__": 2
52
},
"_customMaterial": null,
"_srcBlendFactor": 2,
...
...
@@ -4507,26 +4711,416 @@
"nestedPrefabInstanceRoots": null
},
{
"__type__": "cc.
UITransform
",
"_name": "",
"__type__": "cc.
Node
",
"_name": "
MainBtnNotHave
",
"_objFlags": 0,
"__editorExtras__": {},
"
node
": {
"
_parent
": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 247
},
"_contentSize": {
"__type__": "cc.Size",
"width": 750,
"height": 1624
"_children": [],
"_active": false,
"_components": [
{
"__id__": 255
},
{
"__id__": 257
},
{
"__id__": 259
}
],
"_prefab": {
"__id__": 261
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y": -50,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
},
"_lscale": {
"__type__": "cc.Vec3",
"x": 1,
"y": 1,
"z": 1
},
"_mobility": 0,
"_layer": 33554432,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": ""
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 254
},
"_enabled": true,
"__prefab": {
"__id__": 256
},
"_contentSize": {
"__type__": "cc.Size",
"width": 398,
"height": 155
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "f5U2s++e1H6JLVgZvGQ6ZZ"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 254
},
"_enabled": true,
"__prefab": {
"__id__": 258
},
"_customMaterial": null,
"_srcBlendFactor": 2,
"_dstBlendFactor": 4,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_spriteFrame": {
"__uuid__": "5472c93d-0612-40d1-a97e-efb8e770a4e4@f9941",
"__expectedType__": "cc.SpriteFrame"
},
"_type": 0,
"_fillType": 0,
"_sizeMode": 1,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_useGrayscale": false,
"_atlas": null,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "24JmoOcilBeo22Rw+kU6qJ"
},
{
"__type__": "cc.Button",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 254
},
"_enabled": true,
"__prefab": {
"__id__": 260
},
"clickEvents": [],
"_interactable": true,
"_transition": 0,
"_normalColor": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_hoverColor": {
"__type__": "cc.Color",
"r": 211,
"g": 211,
"b": 211,
"a": 255
},
"_pressedColor": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_disabledColor": {
"__type__": "cc.Color",
"r": 124,
"g": 124,
"b": 124,
"a": 255
},
"_normalSprite": null,
"_hoverSprite": null,
"_pressedSprite": null,
"_disabledSprite": null,
"_duration": 0.1,
"_zoomScale": 1.2,
"_target": null,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "8dlHfnpuRPxpSXdkIO+ACJ"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "d8C0IJGepPdImIU3CMAsLa",
"instance": null,
"targetOverrides": null,
"nestedPrefabInstanceRoots": null
},
{
"__type__": "cc.Node",
"_name": "MainBtnUsing",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": {
"__id__": 1
},
"_children": [],
"_active": false,
"_components": [
{
"__id__": 263
},
{
"__id__": 265
},
{
"__id__": 267
}
],
"_prefab": {
"__id__": 269
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y": -50,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
},
"_lscale": {
"__type__": "cc.Vec3",
"x": 1,
"y": 1,
"z": 1
},
"_mobility": 0,
"_layer": 33554432,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": ""
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 262
},
"_enabled": true,
"__prefab": {
"__id__": 264
},
"_contentSize": {
"__type__": "cc.Size",
"width": 398,
"height": 155
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "83QSGwJ9tGCZSLhqfuRcFT"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 262
},
"_enabled": true,
"__prefab": {
"__id__": 266
},
"_customMaterial": null,
"_srcBlendFactor": 2,
"_dstBlendFactor": 4,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_spriteFrame": {
"__uuid__": "84841372-78b9-48ac-928f-2f4784b172bd@f9941",
"__expectedType__": "cc.SpriteFrame"
},
"_type": 0,
"_fillType": 0,
"_sizeMode": 1,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_useGrayscale": false,
"_atlas": null,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "5dZmmlFPFKnbd6UgvV8R6V"
},
{
"__type__": "cc.Button",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 262
},
"_enabled": true,
"__prefab": {
"__id__": 268
},
"clickEvents": [],
"_interactable": true,
"_transition": 0,
"_normalColor": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_hoverColor": {
"__type__": "cc.Color",
"r": 211,
"g": 211,
"b": 211,
"a": 255
},
"_pressedColor": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_disabledColor": {
"__type__": "cc.Color",
"r": 124,
"g": 124,
"b": 124,
"a": 255
},
"_normalSprite": null,
"_hoverSprite": null,
"_pressedSprite": null,
"_disabledSprite": null,
"_duration": 0.1,
"_zoomScale": 1.2,
"_target": null,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "1bCyXoU5BPx4IsiYzIPGcf"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "b7TTd5pvxEtpWZnpcOXuEY",
"instance": null,
"targetOverrides": null,
"nestedPrefabInstanceRoots": null
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 271
},
"_contentSize": {
"__type__": "cc.Size",
"width": 750,
"height": 1624
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_id": ""
},
...
...
@@ -4544,7 +5138,7 @@
},
"_enabled": true,
"__prefab": {
"__id__": 2
49
"__id__": 2
73
},
"middleNode": {
"__id__": 111
...
...
@@ -4571,10 +5165,16 @@
"__id__": 169
},
"mainBtnGrey": {
"__id__": 24
0
"__id__": 24
8
},
"mainBtn": {
"__id__": 232
"__id__": 240
},
"MainBtnNotHave": {
"__id__": 254
},
"MainBtnUsing": {
"__id__": 262
},
"taskBox": {
"__id__": 196
...
...
@@ -4585,6 +5185,9 @@
"taskBtn": {
"__id__": 221
},
"taskBtnDone": {
"__id__": 229
},
"cat": {
"__id__": 19
},
...
...
@@ -4616,7 +5219,7 @@
},
"_enabled": true,
"__prefab": {
"__id__": 2
51
"__id__": 2
75
},
"_alignFlags": 45,
"_target": null,
...
...
assets/resources/ChangeEquipPanel/img/mainBtnNotHave.png
0 → 100644
View file @
51ad6333
22.6 KB
assets/resources/ChangeEquipPanel/img/mainBtnNotHave.png.meta
0 → 100644
View file @
51ad6333
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "5472c93d-0612-40d1-a97e-efb8e770a4e4",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "5472c93d-0612-40d1-a97e-efb8e770a4e4@6c48a",
"displayName": "mainBtnNotHave",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "5472c93d-0612-40d1-a97e-efb8e770a4e4",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "5472c93d-0612-40d1-a97e-efb8e770a4e4@f9941",
"displayName": "mainBtnNotHave",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 398,
"height": 155,
"rawWidth": 398,
"rawHeight": 155,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-199,
-77.5,
0,
199,
-77.5,
0,
-199,
77.5,
0,
199,
77.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
155,
398,
155,
0,
0,
398,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-199,
-77.5,
0
],
"maxPos": [
199,
77.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "5472c93d-0612-40d1-a97e-efb8e770a4e4@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "5472c93d-0612-40d1-a97e-efb8e770a4e4@6c48a"
}
}
assets/resources/ChangeEquipPanel/img/mainBtnUsing.png
0 → 100644
View file @
51ad6333
43.4 KB
assets/resources/ChangeEquipPanel/img/mainBtnUsing.png.meta
0 → 100644
View file @
51ad6333
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "84841372-78b9-48ac-928f-2f4784b172bd",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "84841372-78b9-48ac-928f-2f4784b172bd@6c48a",
"displayName": "mainBtnUsing",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "84841372-78b9-48ac-928f-2f4784b172bd",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "84841372-78b9-48ac-928f-2f4784b172bd@f9941",
"displayName": "mainBtnUsing",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 398,
"height": 155,
"rawWidth": 398,
"rawHeight": 155,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-199,
-77.5,
0,
199,
-77.5,
0,
-199,
77.5,
0,
199,
77.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
155,
398,
155,
0,
0,
398,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-199,
-77.5,
0
],
"maxPos": [
199,
77.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "84841372-78b9-48ac-928f-2f4784b172bd@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "84841372-78b9-48ac-928f-2f4784b172bd@6c48a"
}
}
assets/resources/ChangeEquipPanel/img/task_btn_done.png
0 → 100644
View file @
51ad6333
3.81 KB
assets/resources/ChangeEquipPanel/img/task_btn_done.png.meta
0 → 100644
View file @
51ad6333
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "2a0bcc98-5fcc-49da-8cae-8fd1ce9f3d98",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "2a0bcc98-5fcc-49da-8cae-8fd1ce9f3d98@6c48a",
"displayName": "task_btn_done",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "2a0bcc98-5fcc-49da-8cae-8fd1ce9f3d98",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "2a0bcc98-5fcc-49da-8cae-8fd1ce9f3d98@f9941",
"displayName": "task_btn_done",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 182,
"height": 67,
"rawWidth": 182,
"rawHeight": 67,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-91,
-33.5,
0,
91,
-33.5,
0,
-91,
33.5,
0,
91,
33.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
67,
182,
67,
0,
0,
182,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-91,
-33.5,
0
],
"maxPos": [
91,
33.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "2a0bcc98-5fcc-49da-8cae-8fd1ce9f3d98@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "2a0bcc98-5fcc-49da-8cae-8fd1ce9f3d98@6c48a"
}
}
assets/resources/ChangeEquipPanel/img/task_btn_not.png
0 → 100644
View file @
51ad6333
4.45 KB
assets/resources/ChangeEquipPanel/img/task_btn_not.png.meta
0 → 100644
View file @
51ad6333
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "f0173f8e-78fa-439b-af37-e6c6a76b7ae7",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "f0173f8e-78fa-439b-af37-e6c6a76b7ae7@6c48a",
"displayName": "task_btn_not",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "f0173f8e-78fa-439b-af37-e6c6a76b7ae7",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "f0173f8e-78fa-439b-af37-e6c6a76b7ae7@f9941",
"displayName": "task_btn_not",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 182,
"height": 67,
"rawWidth": 182,
"rawHeight": 67,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-91,
-33.5,
0,
91,
-33.5,
0,
-91,
33.5,
0,
91,
33.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
67,
182,
67,
0,
0,
182,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-91,
-33.5,
0
],
"maxPos": [
91,
33.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "f0173f8e-78fa-439b-af37-e6c6a76b7ae7@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "f0173f8e-78fa-439b-af37-e6c6a76b7ae7@6c48a"
}
}
assets/resources/NoGetRankPrizePanel/img/Bg.png.meta
View file @
51ad6333
...
...
@@ -11,7 +11,7 @@
"6c48a": {
"importer": "texture",
"uuid": "2ff03921-0804-417d-849d-93bf9a90c21e@6c48a",
"displayName": "
b
g",
"displayName": "
B
g",
"id": "6c48a",
"name": "texture",
"userData": {
...
...
@@ -35,7 +35,7 @@
"f9941": {
"importer": "sprite-frame",
"uuid": "2ff03921-0804-417d-849d-93bf9a90c21e@f9941",
"displayName": "
b
g",
"displayName": "
B
g",
"id": "f9941",
"name": "spriteFrame",
"userData": {
...
...
build/web-mobile-001/index.html
View file @
51ad6333
...
...
@@ -39,7 +39,7 @@
<script
src=
"//yun.duiba.com.cn/polaris/SVGA.Lite.v2.1.1.d3a67cbc13c591c53c6f87ab34c57ce387010374.js"
crossorigin=
"anonymous"
></script>
<script
src=
"//yun.duiba.com.cn/aurora/assets/2403d1edf2acd15b179306b6ddaa5f0967d78a8f.js"
></script>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"//yun.duiba.com.cn/db_games/ccc_game/template3d/172
1979133810
/style.css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"//yun.duiba.com.cn/db_games/ccc_game/template3d/172
2256860379
/style.css"
/>
<style>
.sui-captcha
{
...
...
@@ -95,19 +95,20 @@
<script>
window
.
voucherPackUrl
=
"https://mobapp.czbank.com/life/voucherPack.html"
;
window
.
creditsUrl
=
"https://mobapp.czbank.com/homeChanels/credits.html"
;
</script>
<!-- Polyfills bundle. -->
<script
src=
"//yun.duiba.com.cn/db_games/ccc_game/template3d/172
1979133810
/src/polyfills.bundle.js"
charset=
"utf-8"
></script>
<script
src=
"//yun.duiba.com.cn/db_games/ccc_game/template3d/172
2256860379
/src/polyfills.bundle.js"
charset=
"utf-8"
></script>
<!-- SystemJS support. -->
<script
src=
"//yun.duiba.com.cn/db_games/ccc_game/template3d/172
1979133810
/src/system.bundle.js"
charset=
"utf-8"
></script>
<script
src=
"//yun.duiba.com.cn/db_games/ccc_game/template3d/172
2256860379
/src/system.bundle.js"
charset=
"utf-8"
></script>
<!-- Import map -->
<script
src=
"//yun.duiba.com.cn/db_games/ccc_game/template3d/172
1979133810
/src/import-map.json"
type=
"systemjs-importmap"
charset=
"utf-8"
></script>
<script
src=
"//yun.duiba.com.cn/db_games/ccc_game/template3d/172
2256860379
/src/import-map.json"
type=
"systemjs-importmap"
charset=
"utf-8"
></script>
<script>
System
.
import
(
'//yun.duiba.com.cn/db_games/ccc_game/template3d/172
1979133810
/index.js'
).
catch
(
function
(
err
)
{
System
.
import
(
'//yun.duiba.com.cn/db_games/ccc_game/template3d/172
2256860379
/index.js'
).
catch
(
function
(
err
)
{
console
.
error
(
err
);
})
</script>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment