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
32be2a02
Commit
32be2a02
authored
Aug 04, 2025
by
俞嘉婷
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: 埋点全部重埋
parent
608d58e4
Changes
12
Show whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
33 additions
and
21 deletions
+33
-21
DetailPage.tsx
src/pages/DetailPage/DetailPage.tsx
+3
-3
TurnTable.tsx
src/pages/ResPage/TurnTable/TurnTable.tsx
+3
-3
BuyPanel.tsx
src/panels/BuyPanel/BuyPanel.tsx
+2
-2
NoPrizePanel.tsx
src/panels/NoPrizePanel/NoPrizePanel.tsx
+7
-1
PrizePanel.tsx
src/panels/PrizePanel/PrizePanel.tsx
+7
-1
SellPanel.tsx
src/panels/SellPanel/SellPanel.tsx
+2
-2
firstPop.jsx
src/panels/firstPop/firstPop.jsx
+1
-1
jumpConfirmPop.jsx
src/panels/jumpConfirmPop/jumpConfirmPop.jsx
+2
-2
loginpop.jsx
src/panels/loginpop/loginpop.jsx
+1
-1
newbieModal.tsx
src/panels/newbieModal/newbieModal.tsx
+2
-2
signCom.jsx
src/panels/taskPanel/signCom/signCom.jsx
+2
-2
tipspop.jsx
src/panels/tipspop/tipspop.jsx
+1
-1
No files found.
src/pages/DetailPage/DetailPage.tsx
View file @
32be2a02
...
...
@@ -246,12 +246,12 @@ class DetailPage extends React.Component<any, any> {
</
div
>
<
div
className=
{
styles
.
btnArea
}
>
<
Button
className=
{
classNames
(
styles
.
btn
,
styles
.
simulate
,
"md
9
"
)
}
className=
{
classNames
(
styles
.
btn
,
styles
.
simulate
,
"md
18
"
)
}
onClick=
{
this
.
clickSimulateBuy
}
>
模拟买入
</
Button
>
<
Button
className=
{
classNames
(
styles
.
btn
,
styles
.
really
,
"md1
0
"
)
}
className=
{
classNames
(
styles
.
btn
,
styles
.
really
,
"md1
7
"
)
}
onClick=
{
this
.
clickReallyBuy
}
>
真实买入
</
Button
>
</
div
>
...
...
@@ -283,7 +283,7 @@ class DetailPage extends React.Component<any, any> {
<
div
className=
{
styles
.
tip
}
>
{
" "
}
</
div
>
<
div
className=
{
styles
.
btnArea
}
>
<
Button
className=
{
classNames
(
styles
.
btn
,
styles
.
simulate
,
"md1
3
"
)
}
className=
{
classNames
(
styles
.
btn
,
styles
.
simulate
,
"md1
6
"
)
}
style=
{
{
width
:
"100%"
}
}
onClick=
{
this
.
clickSimulateSell
}
>
模拟赎回
</
Button
>
...
...
src/pages/ResPage/TurnTable/TurnTable.tsx
View file @
32be2a02
...
...
@@ -28,9 +28,9 @@ class TurnTable extends React.Component {
resStore
.
updateInfo
();
if
(
this
.
drawResultInfo
.
prizeId
==
"thanks"
)
{
ModalCtrl
.
showModal
(
NoPrizePanel
,
this
.
drawResultInfo
);
ModalCtrl
.
showModal
(
NoPrizePanel
,
{
type
:
'final_turntable'
,
...
this
.
drawResultInfo
}
);
}
else
{
ModalCtrl
.
showModal
(
PrizePanel
,
this
.
drawResultInfo
);
ModalCtrl
.
showModal
(
PrizePanel
,
{
type
:
'final_turntable'
,
...
this
.
drawResultInfo
}
);
}
}
...
...
@@ -88,7 +88,7 @@ class TurnTable extends React.Component {
didStop=
{
this
.
onStop
}
/>
<
Button
className=
{
classNames
(
"drawBtn md
17
"
,
{
<
Button
className=
{
classNames
(
"drawBtn md
32
"
,
{
enable
:
remainDrawTime
>
0
,
disable
:
remainDrawTime
<=
0
,
})
}
onClick=
{
this
.
drawHandle
}
/>
...
...
src/panels/BuyPanel/BuyPanel.tsx
View file @
32be2a02
...
...
@@ -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 md1
2
"
onClick=
{
this
.
clickOk
}
/>
<
Button
className=
"cancel md
11
"
onClick=
{
this
.
clickClose
}
/>
<
Button
className=
"btn md1
9
"
onClick=
{
this
.
clickOk
}
/>
<
Button
className=
"cancel md
20
"
onClick=
{
this
.
clickClose
}
/>
<
Button
className=
"close"
onClick=
{
this
.
clickClose
}
/>
</
div
>
}
...
...
src/panels/NoPrizePanel/NoPrizePanel.tsx
View file @
32be2a02
...
...
@@ -6,6 +6,12 @@ import { ModalCtrl } from "@/core/ctrls/ModalCtrl.tsx";
export
class
NoPrizePanel
extends
Component
<
any
,
any
>
{
BTN_MD
=
{
new_turntable
:
'15'
,
red
:
'27'
,
final_turntable
:
'34'
}
componentDidMount
()
{
}
...
...
@@ -19,7 +25,7 @@ export class NoPrizePanel extends Component<any, any> {
return
<
div
className=
"NoPrizePanel modal_center"
>
<
div
className=
"bg"
/>
<
Button
className=
{
`btn md${t
ype == 'red' ? '27' : '19'
}`
}
onClick=
{
this
.
clickClose
}
/>
<
Button
className=
{
`btn md${t
his.BTN_MD[type]
}`
}
onClick=
{
this
.
clickClose
}
/>
<
Button
className=
"close"
onClick=
{
this
.
clickClose
}
/>
</
div
>
}
...
...
src/panels/PrizePanel/PrizePanel.tsx
View file @
32be2a02
...
...
@@ -9,6 +9,12 @@ import NewRecordPage from '../../pages/newRecordPage/index.jsx';
export
class
PrizePanel
extends
Component
<
any
,
any
>
{
BTN_MD
=
{
new_turntable
:
'14'
,
red
:
'26'
,
final_turntable
:
'33'
}
componentDidMount
()
{
}
...
...
@@ -34,7 +40,7 @@ export class PrizePanel extends Component<any, any> {
<
div
className=
"bg2"
/>
<
img
className=
"img"
src=
{
optionImg
}
/>
<
div
className=
"prizeName"
>
{
optionName
}
</
div
>
<
Button
className=
{
`btn md${t
ype == 'red' ? '26' : '18'}`
}
onClick=
{
this
.
clickBtn
}
/>
<
Button
className=
{
`btn md${t
his.BTN_MD[type]}`
}
onClick=
{
this
.
clickBtn
}
/>
{
type
!=
'red'
&&
<
div
className=
"tips"
>
奖品可在【首页】_【我的奖品】中查看
</
div
>
}
<
Button
className=
"close"
onClick=
{
this
.
clickClose
}
/>
</
div
>
...
...
src/panels/SellPanel/SellPanel.tsx
View file @
32be2a02
...
...
@@ -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 md
15
"
onClick=
{
this
.
clickOk
}
/>
<
Button
className=
"cancel md
14
"
onClick=
{
this
.
clickClose
}
/>
<
Button
className=
"btn md
21
"
onClick=
{
this
.
clickOk
}
/>
<
Button
className=
"cancel md
22
"
onClick=
{
this
.
clickClose
}
/>
<
Button
className=
"close"
onClick=
{
this
.
clickClose
}
/>
</
div
>
}
...
...
src/panels/firstPop/firstPop.jsx
View file @
32be2a02
...
...
@@ -47,7 +47,7 @@ class FirstPop extends React.Component {
<
div
className=
{
`check_icon ${privacyChecked ? 'checked' : ''}`
}
onClick=
{
()
=>
this
.
setState
({
privacyChecked
:
!
this
.
state
.
privacyChecked
})
}
></
div
>
<
div
className=
"check_text"
>
{
notifyText
}
</
div
>
</
div
>
}
<
Button
className=
"happy_btn md
2
"
onClick=
{
this
.
handleSubmit
}
></
Button
>
<
Button
className=
"happy_btn md
3
"
onClick=
{
this
.
handleSubmit
}
></
Button
>
<
Button
className=
"close"
onClick=
{
this
.
close
}
></
Button
>
</
div
>
</>);
...
...
src/panels/jumpConfirmPop/jumpConfirmPop.jsx
View file @
32be2a02
...
...
@@ -31,8 +31,8 @@ class JumpConfirmPop extends React.Component {
<
div
className=
"jumpConfirmPop modal_center"
>
<
span
className=
"bg"
></
span
>
<
div
className=
"text"
>
离开模拟理财功能
<
br
/>
前往真实理财产品交易页面
</
div
>
<
Button
className=
"think_btn"
onClick=
{
this
.
handleClose
}
/>
<
Button
className=
"confirm_btn"
onClick=
{
this
.
handleConfirm
}
/>
<
Button
className=
"think_btn
md23
"
onClick=
{
this
.
handleClose
}
/>
<
Button
className=
"confirm_btn
md24
"
onClick=
{
this
.
handleConfirm
}
/>
<
Button
className=
"close"
onClick=
{
this
.
handleClose
}
/>
</
div
>
);
...
...
src/panels/loginpop/loginpop.jsx
View file @
32be2a02
...
...
@@ -215,7 +215,7 @@ class Loginpop extends React.Component {
<
span
className=
"content_title"
onClick=
{
()
=>
this
.
setState
({
showPrivacyPop
:
true
})
}
dangerouslySetInnerHTML=
{
{
__html
:
agreementTitle
}
}
></
span
>
</
div
>
</
div
>
}
<
Button
className=
{
`btn
md3 ${getUrlParam("off") == 1 ? 'enter_btn' : '
'}`
}
onClick=
{
this
.
handleSubmit
}
></
Button
>
<
Button
className=
{
`btn
${getUrlParam("off") == 1 ? 'enter_btn md36' : 'md2
'}`
}
onClick=
{
this
.
handleSubmit
}
></
Button
>
{
/* <Button className="close" onClick={this.close}></Button> */
}
</
div
>
...
...
src/panels/newbieModal/newbieModal.tsx
View file @
32be2a02
...
...
@@ -28,9 +28,9 @@ export class NewbieModal extends Component<any, any> {
// resStore.updateInfo();
ModalCtrl
.
closeModal
();
if
(
this
.
drawResultInfo
?.
prizeId
==
"thanks"
||
!
this
.
drawResultInfo
?.
prizeId
)
{
ModalCtrl
.
showModal
(
NoPrizePanel
,
this
.
drawResultInfo
);
ModalCtrl
.
showModal
(
NoPrizePanel
,
{
type
:
'new_turntable'
,
...
this
.
drawResultInfo
}
);
}
else
{
ModalCtrl
.
showModal
(
PrizePanel
,
{
optionImg
:
this
.
drawResultInfo
?.
prizeImg
,
optionName
:
this
.
drawResultInfo
?.
prizeName
});
ModalCtrl
.
showModal
(
PrizePanel
,
{
type
:
'new_turntable'
,
optionImg
:
this
.
drawResultInfo
?.
prizeImg
,
optionName
:
this
.
drawResultInfo
?.
prizeName
});
}
}
...
...
src/panels/taskPanel/signCom/signCom.jsx
View file @
32be2a02
...
...
@@ -57,8 +57,8 @@ class SignCom extends React.Component {
<
span
className=
"sign_section_bg"
></
span
>
<
span
className=
"sign_tips"
>
最高可得
{
((
checkIn
?.
totalExperienceNum
||
0
)
/
10000
).
toFixed
(
0
)
}
万理财体验金
</
span
>
{
checkIn
?.
todayCheckIn
?
<
Button
className=
"signed_btn
md8
"
onClick=
{
this
.
signedHandle
}
></
Button
>
:
<
Button
className=
"sign_btn
md8
"
onClick=
{
this
.
signHandle
}
></
Button
>
?
<
Button
className=
"signed_btn"
onClick=
{
this
.
signedHandle
}
></
Button
>
:
<
Button
className=
"sign_btn"
onClick=
{
this
.
signHandle
}
></
Button
>
}
<
div
className=
"sign_progress"
>
<
span
className=
"progress_bg"
></
span
>
...
...
src/panels/tipspop/tipspop.jsx
View file @
32be2a02
...
...
@@ -55,7 +55,7 @@ class Tipspop extends React.Component {
<
div
className=
"code_bg"
>
<
img
className=
"code_img"
src=
{
this
.
state
.
qrcode
}
alt=
""
/>
</
div
>
<
Button
className=
"btn"
onClick=
{
this
.
closeHandle
}
></
Button
>
<
Button
className=
"btn
md35
"
onClick=
{
this
.
closeHandle
}
></
Button
>
<
Button
className=
"close"
onClick=
{
this
.
closeHandle
}
></
Button
>
</
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