Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
华
华夏模拟理财_20250701
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
华夏模拟理财_20250701
Commits
18699ee4
Commit
18699ee4
authored
Jul 02, 2025
by
haiyoucuv
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
init
parent
9df3573f
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
135 additions
and
2 deletions
+135
-2
App.tsx
src/App.tsx
+2
-1
backBtn.png
src/assets/ResPage/backBtn.png
+0
-0
bg.png
src/assets/ResPage/bg.png
+0
-0
rankBg.png
src/assets/ResPage/rankBg.png
+0
-0
RecordPage.module.less
src/pages/RecordPage/RecordPage.module.less
+0
-0
RecordPage.tsx
src/pages/RecordPage/RecordPage.tsx
+1
-1
ResPage.module.less
src/pages/ResPage/ResPage.module.less
+88
-0
ResPage.tsx
src/pages/ResPage/ResPage.tsx
+44
-0
No files found.
src/App.tsx
View file @
18699ee4
...
...
@@ -19,6 +19,7 @@ import { loadFont } from "@/core/preload.ts";
import
DetailPage
from
"@/pages/DetailPage/DetailPage.tsx"
;
import
RecordPage
from
"@/pages/RecordPage/RecordPage.tsx"
;
import
ResPage
from
"@/pages/ResPage/ResPage.tsx"
;
@
observer
...
...
@@ -29,7 +30,7 @@ class App extends Component {
const
defaultPage
=
{
myPrize
:
MyPrize
,
// TODO 举例子 新宿台奖品页
index
:
LoadingDemo
,
}[
skinId
]
||
Re
cord
Page
;
}[
skinId
]
||
Re
s
Page
;
PageCtrl
.
changePage
(
defaultPage
);
}
...
...
src/assets/ResPage/backBtn.png
0 → 100644
View file @
18699ee4
295 Bytes
src/assets/ResPage/bg.png
0 → 100644
View file @
18699ee4
166 KB
src/assets/ResPage/rankBg.png
0 → 100644
View file @
18699ee4
23.7 KB
src/pages/RecordPage/
Detail
Page.module.less
→
src/pages/RecordPage/
Record
Page.module.less
View file @
18699ee4
File moved
src/pages/RecordPage/RecordPage.tsx
View file @
18699ee4
import
React
from
'react'
;
import
{
observer
}
from
'mobx-react'
;
import
styles
from
'./
Detail
Page.module.less'
;
import
styles
from
'./
Record
Page.module.less'
;
import
{
Button
}
from
"@grace/ui"
;
@
observer
...
...
src/pages/ResPage/ResPage.module.less
0 → 100644
View file @
18699ee4
@import "../../res.less";
.ResPage {
width: 100%;
height: 100%;
left: 0;
top: 0;
position: absolute;
overflow: hidden;
.webpBg("ResPage/bg.png");
background-size: 750px 1746px;
background-position: left top;
display: flex;
align-items: center;
justify-content: center;
.rankBg {
position: absolute;
left: 21px;
top: 112px;
width: 709px;
height: 407px;
.webpBg("ResPage/rankBg.png");
.rankTip {
position: absolute;
background-color: rgb(249, 231, 208);
left: 234px;
border-radius: 11px;
width: 417px;
height: 52px;
display: flex;
align-items: center;
justify-content: flex-start;
padding-left: 21px;
box-sizing: border-box;
font-size: 24px;
color: #a3741f;
font-weight: bold;
span {
margin-left: 16px;
font-weight: normal;
}
}
.rank1 {
top: 109px;
background: none;
span {
margin-left: 4px;
font-size: 30px;
color: #ee4e32;
font-weight: bold;
height: 40px;
}
}
.rank2 {
top: 169px;
}
.rank3 {
top: 229px;
}
.rank4 {
top: 287px;
}
}
.backBtn {
position: absolute;
left: 28px;
top: 58px;
width: 18px;
height: 32px;
.webpBg("ResPage/backBtn.png");
}
}
src/pages/ResPage/ResPage.tsx
0 → 100644
View file @
18699ee4
import
React
from
'react'
;
import
{
observer
}
from
'mobx-react'
;
import
styles
from
'./ResPage.module.less'
;
import
{
Button
}
from
"@grace/ui"
;
import
classNames
from
"classnames"
;
@
observer
class
ResPage
extends
React
.
Component
<
any
,
any
>
{
state
=
{}
async
componentDidMount
()
{
}
clickBack
=
()
=>
{
}
render
()
{
const
{}
=
this
.
state
;
return
<
div
className=
{
styles
.
ResPage
}
>
<
div
className=
{
styles
.
rankBg
}
>
<
div
className=
{
classNames
(
styles
.
rankTip
,
styles
.
rank1
)
}
>
我的收益区间在
<
span
>
3000元及以上
</
span
>
</
div
>
<
div
className=
{
classNames
(
styles
.
rankTip
,
styles
.
rank2
)
}
>
理财资金
<
span
>
334556675元
</
span
>
</
div
>
<
div
className=
{
classNames
(
styles
.
rankTip
,
styles
.
rank3
)
}
>
累计收益
<
span
>
2213元
</
span
>
</
div
>
<
div
className=
{
classNames
(
styles
.
rankTip
,
styles
.
rank4
)
}
>
理财周期
<
span
>
2025.06.22-2025.07.22
</
span
>
</
div
>
</
div
>
<
Button
className=
{
styles
.
backBtn
}
onClick=
{
this
.
clickBack
}
/>
</
div
>;
}
}
export
default
ResPage
;
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