Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
TianGongKaiWu-20251203
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
TianGongKaiWu-20251203
Commits
31719a0f
Commit
31719a0f
authored
Dec 16, 2025
by
王勇霞
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: 调整
parent
3102756f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
HomePage.tsx
src/pages/HomePage/HomePage.tsx
+1
-1
signCom.jsx
src/panels/signCom/signCom.jsx
+2
-1
No files found.
src/pages/HomePage/HomePage.tsx
View file @
31719a0f
...
...
@@ -286,7 +286,7 @@ class HomePage extends React.Component<any, any> {
<
div
className=
"rate_wrap"
>
<
div
className=
"yield_rate"
>
<
div
className=
"yield_rate_label"
>
收益率
</
div
>
<
div
className=
"yield_rate_value"
>
{
this
.
formatProfit
(
virtualAssets
?.
profit
)
}
%
</
div
>
<
div
className=
"yield_rate_value"
>
{
virtualAssets
?.
profit
?
(
+
virtualAssets
?.
profit
/
100
)
:
0
}
%
</
div
>
</
div
>
<
div
className=
"yesterday_amount"
>
<
div
className=
"yesterday_amount_label"
>
昨日收益
</
div
>
...
...
src/panels/signCom/signCom.jsx
View file @
31719a0f
...
...
@@ -68,10 +68,11 @@ class SignCom extends React.Component {
if
(
!
store
.
judgeActTime
())
return
const
{
success
,
data
}
=
await
API
.
doSign
();
if
(
success
)
{
Toast
.
show
(
"签到成功~"
)
Toast
.
show
(
`签到成功,获得
${
data
?.
options
?.[
0
]?.
sendCount
||
0
}
模拟理财金
`
)
}
await this.getSignInfo();
await store.updateIndex();
// 浏览任务
const {signInfo, currentWeek} = this.state
...
...
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