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
10a5a589
Commit
10a5a589
authored
Jul 04, 2025
by
haiyoucuv
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
init
parent
6b071040
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
66 additions
and
1 deletion
+66
-1
btn.png
src/assets/NoPrizePanel/btn.png
+0
-0
noPrize.png
src/assets/NoPrizePanel/noPrize.png
+0
-0
close.png
src/assets/common/close.png
+0
-0
TurnTable.tsx
src/pages/ResPage/TurnTable/TurnTable.tsx
+4
-1
NoPrizePanel.less
src/panels/NoPrizePanel/NoPrizePanel.less
+36
-0
NoPrizePanel.tsx
src/panels/NoPrizePanel/NoPrizePanel.tsx
+26
-0
No files found.
src/assets/NoPrizePanel/btn.png
0 → 100644
View file @
10a5a589
9.88 KB
src/assets/NoPrizePanel/noPrize.png
0 → 100644
View file @
10a5a589
12 KB
src/assets/common/close.png
View replaced file @
6b071040
View file @
10a5a589
1.54 KB
|
W:
|
H:
1.28 KB
|
W:
|
H:
2-up
Swipe
Onion skin
src/pages/ResPage/TurnTable/TurnTable.tsx
View file @
10a5a589
...
@@ -8,6 +8,8 @@ import { _asyncThrottle } from "@/utils/utils.ts";
...
@@ -8,6 +8,8 @@ import { _asyncThrottle } from "@/utils/utils.ts";
import
API
from
"@/api"
;
import
API
from
"@/api"
;
import
resStore
from
"@/store/ResStore.ts"
;
import
resStore
from
"@/store/ResStore.ts"
;
import
classNames
from
"classnames"
;
import
classNames
from
"classnames"
;
import
{
NoPrizePanel
}
from
"@/panels/NoPrizePanel/NoPrizePanel.tsx"
;
import
{
ModalCtrl
}
from
"@/core/ctrls/ModalCtrl.tsx"
;
@
observer
@
observer
class
TurnTable
extends
React
.
Component
{
class
TurnTable
extends
React
.
Component
{
...
@@ -21,7 +23,8 @@ class TurnTable extends React.Component {
...
@@ -21,7 +23,8 @@ class TurnTable extends React.Component {
onStop
=
()
=>
{
onStop
=
()
=>
{
this
.
btnStarting
=
false
;
this
.
btnStarting
=
false
;
// modalStore.pushPop("PrizePanel", this.drawResultInfo);
resStore
.
updateInfo
();
// ModalCtrl.showModal(NoPrizePanel, this.drawResultInfo);
}
}
// 开始抽奖
// 开始抽奖
...
...
src/panels/NoPrizePanel/NoPrizePanel.less
0 → 100644
View file @
10a5a589
@import "../../res.less";
.NoPrizePanel {
width: 750px;
height: 100%;
left: 0;
top: 0;
position: absolute;
.bg {
position: absolute;
left: 82px;
top: 448px;
width: 585px;
height: 388px;
.webpBg("NoPrizePanel/noPrize.png");
}
.btn {
position: absolute;
left: 120px;
top: 673px;
width: 510px;
height: 138px;
.webpBg("NoPrizePanel/btn.png");
}
.close {
position: absolute;
left: 346px;
top: 958px;
width: 58px;
height: 58px;
.webpBg("common/close.png");
}
}
src/panels/NoPrizePanel/NoPrizePanel.tsx
0 → 100644
View file @
10a5a589
import
{
Component
}
from
"react"
;
import
"./NoPrizePanel.less"
;
import
{
Button
}
from
"@grace/ui"
;
import
{
ModalCtrl
}
from
"@/core/ctrls/ModalCtrl.tsx"
;
export
class
NoPrizePanel
extends
Component
<
any
,
any
>
{
componentDidMount
()
{
}
clickClose
=
()
=>
{
ModalCtrl
.
closeModal
();
}
render
()
{
return
<
div
className=
"NoPrizePanel"
>
<
div
className=
"bg"
/>
<
Button
className=
"btn"
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