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
1d22ae14
Commit
1d22ae14
authored
Jun 19, 2024
by
haiyoucuv
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
整理一下代码
parent
24c3912e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
ChangeEquipPanel.ts
assets/Scripts/Panels/ChangeEquipPanel/ChangeEquipPanel.ts
+4
-2
No files found.
assets/Scripts/Panels/ChangeEquipPanel/ChangeEquipPanel.ts
View file @
1d22ae14
...
...
@@ -160,7 +160,7 @@ export class ChangeEquipPanel extends Panel {
async
getTaskInfo
()
{
if
(
!
this
.
taskInfo
)
{
const
success
=
store
.
updateTask
();
const
success
=
await
store
.
updateTask
();
if
(
!
success
)
return
{};
this
.
taskInfo
=
{};
store
.
taskInfo
.
forEach
((
v
)
=>
{
...
...
@@ -168,13 +168,14 @@ export class ChangeEquipPanel extends Panel {
});
}
console
.
log
(
"taskInfo: "
,
this
.
taskInfo
)
return
this
.
taskInfo
;
}
/** 获取装备信息 */
async
getEquipInfo
()
{
const
[{
success
,
data
},
taskInfo
]
=
await
Promise
.
all
([
await
sendWebNetWithToken
(
WebNetName
.
equip
),
sendWebNetWithToken
(
WebNetName
.
equip
),
this
.
getTaskInfo
(),
]);
...
...
@@ -186,6 +187,7 @@ export class ChangeEquipPanel extends Panel {
equipTaskInfo
.
map
(((
item
)
=>
{
if
(
!
item
.
taskCode
)
return
;
const
task
=
taskInfo
[
item
.
taskCode
];
if
(
!
task
)
return
;
item
.
title
=
task
.
title
item
.
intervalLimitSize
=
task
.
intervalLimitSize
item
.
completedSize
=
task
.
completedSize
...
...
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