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
c27842fa
Commit
c27842fa
authored
Jul 09, 2025
by
haiyoucuv
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
init
parent
a22c69b2
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
10 additions
and
10 deletions
+10
-10
DetailPage.tsx
src/pages/DetailPage/DetailPage.tsx
+3
-3
TurnTable.tsx
src/pages/ResPage/TurnTable/TurnTable.tsx
+1
-1
BuyPanel.tsx
src/panels/BuyPanel/BuyPanel.tsx
+2
-2
NoPrizePanel.tsx
src/panels/NoPrizePanel/NoPrizePanel.tsx
+1
-1
PrizePanel.tsx
src/panels/PrizePanel/PrizePanel.tsx
+1
-1
SellPanel.tsx
src/panels/SellPanel/SellPanel.tsx
+2
-2
No files found.
src/pages/DetailPage/DetailPage.tsx
View file @
c27842fa
...
...
@@ -207,12 +207,12 @@ class DetailPage extends React.Component<any, any> {
/>
<
div
className=
{
styles
.
buyTip
}
>
首次购买
{
minBuyLimit
/
100
}
元起 再次购买
{
minBuyLimit
/
100
}
元起
{
minBuyLimit
/
100
}
元递增
</
div
>
<
Button
className=
{
classNames
(
styles
.
buyBtn
,
styles
.
simulateBuy
)
}
className=
{
classNames
(
styles
.
buyBtn
,
styles
.
simulateBuy
,
"md9"
)
}
onClick=
{
this
.
clickSimulateBuy
}
>
模拟买入
</
Button
>
<
Button
className=
{
classNames
(
styles
.
buyBtn
,
styles
.
reallyBuy
)
}
className=
{
classNames
(
styles
.
buyBtn
,
styles
.
reallyBuy
,
"md10"
)
}
onClick=
{
this
.
clickReallyBuy
}
>
真实买入
</
Button
>
</
motion
.
div
>
...
...
@@ -240,7 +240,7 @@ class DetailPage extends React.Component<any, any> {
}
}
>
全部
</
Button
>
</
div
>
<
Button
className=
{
classNames
(
styles
.
sellBtn
,
styles
.
simulateSell
)
}
className=
{
classNames
(
styles
.
sellBtn
,
styles
.
simulateSell
,
"md13"
)
}
onClick=
{
this
.
clickSimulateSell
}
>
模拟赎回
</
Button
>
</
motion
.
div
>
...
...
src/pages/ResPage/TurnTable/TurnTable.tsx
View file @
c27842fa
...
...
@@ -85,7 +85,7 @@ class TurnTable extends React.Component {
didStop=
{
this
.
onStop
}
/>
<
Button
className=
{
classNames
(
"drawBtn"
,
{
<
Button
className=
{
classNames
(
"drawBtn
ma17
"
,
{
enable
:
remainDrawTime
>
0
,
disable
:
remainDrawTime
<=
0
,
})
}
onClick=
{
this
.
drawHandle
}
/>
...
...
src/panels/BuyPanel/BuyPanel.tsx
View file @
c27842fa
...
...
@@ -24,8 +24,8 @@ export class BuyPanel extends Component<any, any> {
return
<
div
className=
"BuyPanel modal_center"
>
<
div
className=
"bg"
/>
<
div
className=
"tip"
>
您申请模拟购买
{
name
}
产品
{
amount
}
元
</
div
>
<
Button
className=
"btn"
onClick=
{
this
.
clickOk
}
/>
<
Button
className=
"cancel"
onClick=
{
this
.
clickClose
}
/>
<
Button
className=
"btn
md12
"
onClick=
{
this
.
clickOk
}
/>
<
Button
className=
"cancel
md11
"
onClick=
{
this
.
clickClose
}
/>
<
Button
className=
"close"
onClick=
{
this
.
clickClose
}
/>
</
div
>
}
...
...
src/panels/NoPrizePanel/NoPrizePanel.tsx
View file @
c27842fa
...
...
@@ -17,7 +17,7 @@ export class NoPrizePanel extends Component<any, any> {
return
<
div
className=
"NoPrizePanel modal_center"
>
<
div
className=
"bg"
/>
<
Button
className=
"btn"
onClick=
{
this
.
clickClose
}
/>
<
Button
className=
"btn
md19
"
onClick=
{
this
.
clickClose
}
/>
<
Button
className=
"close"
onClick=
{
this
.
clickClose
}
/>
</
div
>
}
...
...
src/panels/PrizePanel/PrizePanel.tsx
View file @
c27842fa
...
...
@@ -21,7 +21,7 @@ export class PrizePanel extends Component<any, any> {
<
div
className=
"bg"
/>
<
img
className=
"img"
src=
{
optionImg
}
/>
<
div
className=
"prizeName"
>
{
optionName
}
</
div
>
<
Button
className=
"btn"
onClick=
{
this
.
clickClose
}
/>
<
Button
className=
"btn
md18
"
onClick=
{
this
.
clickClose
}
/>
<
Button
className=
"close"
onClick=
{
this
.
clickClose
}
/>
</
div
>
}
...
...
src/panels/SellPanel/SellPanel.tsx
View file @
c27842fa
...
...
@@ -24,8 +24,8 @@ export class SellPanel extends Component<any, any> {
return
<
div
className=
"SellPanel modal_center"
>
<
div
className=
"bg"
/>
<
div
className=
"tip"
>
您申请模拟赎回
{
name
}
产品
{
amount
}
份
</
div
>
<
Button
className=
"btn"
onClick=
{
this
.
clickOk
}
/>
<
Button
className=
"cancel"
onClick=
{
this
.
clickClose
}
/>
<
Button
className=
"btn
md15
"
onClick=
{
this
.
clickOk
}
/>
<
Button
className=
"cancel
md14
"
onClick=
{
this
.
clickClose
}
/>
<
Button
className=
"close"
onClick=
{
this
.
clickClose
}
/>
</
div
>
}
...
...
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