Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
kww_dayDayGetCredits_250512
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
kww_dayDayGetCredits_250512
Commits
7e9f6c3c
Commit
7e9f6c3c
authored
May 12, 2025
by
haiyoucuv
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
init
parent
b94305bc
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
144 additions
and
0 deletions
+144
-0
.npmrc
.npmrc
+1
-0
bg.jpg
src/assets/HomePage/bg.jpg
+0
-0
checkBg.png
src/assets/HomePage/checkBg.png
+0
-0
signBg.png
src/assets/HomePage/signBg.png
+0
-0
Check.less
src/pages/HomePage/Check/Check.less
+30
-0
Check.tsx
src/pages/HomePage/Check/Check.tsx
+24
-0
HomePage.less
src/pages/HomePage/HomePage.less
+48
-0
HomePage.tsx
src/pages/HomePage/HomePage.tsx
+10
-0
Sign.less
src/pages/HomePage/Sign/Sign.less
+9
-0
Sign.tsx
src/pages/HomePage/Sign/Sign.tsx
+22
-0
No files found.
.npmrc
0 → 100644
View file @
7e9f6c3c
registry = http://npm.dui88.com
\ No newline at end of file
src/assets/HomePage/bg.jpg
0 → 100644
View file @
7e9f6c3c
146 KB
src/assets/HomePage/checkBg.png
0 → 100644
View file @
7e9f6c3c
34.7 KB
src/assets/HomePage/signBg.png
0 → 100644
View file @
7e9f6c3c
35.3 KB
src/pages/HomePage/Check/Check.less
0 → 100644
View file @
7e9f6c3c
@import "../../../res.less";
.homepage > .homeRoot > .check {
position: relative;
margin-top: 30px;
margin-left: 5px;
width: 741px;
min-height: 1400px;
.check-color {
position: absolute;
left: 8px;
right: 8px;
top: 300px;
bottom: 0;
border-radius: 8px;
background-color: rgb(255, 255, 251);
box-shadow: 0 5px 10px 0 rgba(235, 198, 192, 0.22), inset 0 2px 3px 0 rgba(255, 255, 255, 0.72), inset 0 24px 125px 0 rgba(255, 255, 255, 0.7);
}
.check-bg {
position: absolute;
left: 0;
top: 0;
width: 741px;
height: 563px;
.webpBg("HomePage/checkBg.png");
}
}
src/pages/HomePage/Check/Check.tsx
0 → 100644
View file @
7e9f6c3c
import
React
from
'react'
;
import
{
observer
}
from
'mobx-react'
;
import
'./Check.less'
;
import
store
from
"@/store/store.ts"
;
@
observer
class
Check
extends
React
.
Component
<
any
,
any
>
{
componentDidMount
()
{
}
render
()
{
const
{}
=
store
.
indexData
return
<
div
className=
"check"
>
<
div
className=
"check-color"
/>
<
div
className=
"check-bg"
/>
</
div
>;
}
}
export
default
Check
;
src/pages/HomePage/HomePage.less
View file @
7e9f6c3c
...
...
@@ -8,4 +8,52 @@
overflow-y: scroll;
overflow-x: hidden;
.homeRoot {
width: 100%;
padding-top: 961px;
padding-bottom: 120px;
.webpBg("HomePage/bg.jpg");
background-size: 750px 977px;
background-repeat: no-repeat;
background-position: top center;
background-color: #fff2e4;
.sign {
margin-left: 5px;
margin-top: 0;
width: 741px;
height: 455px;
.webpBg("HomePage/signBg.png");
}
.check {
position: relative;
margin-top: 30px;
margin-left: 5px;
width: 741px;
min-height: 1400px;
.check-color {
position: absolute;
left: 8px;
right: 8px;
top: 300px;
bottom: 0;
border-radius: 8px;
background-color: rgb(255, 255, 251);
box-shadow: 0 5px 10px 0 rgba(235, 198, 192, 0.22), inset 0 2px 3px 0 rgba(255, 255, 255, 0.72), inset 0 24px 125px 0 rgba(255, 255, 255, 0.7);
}
.check-bg {
position: absolute;
left: 0;
top: 0;
width: 741px;
height: 563px;
.webpBg("HomePage/checkBg.png");
}
}
}
}
src/pages/HomePage/HomePage.tsx
View file @
7e9f6c3c
...
...
@@ -3,6 +3,8 @@ import { observer } from 'mobx-react';
import
'./HomePage.less'
;
import
{
getUrlParam
}
from
"@/utils/utils.ts"
;
import
store
from
"@/store/store.ts"
;
import
Check
from
"@/pages/HomePage/Check/Check.tsx"
;
import
Sign
from
"@/pages/HomePage/Sign/Sign.tsx"
;
@
observer
...
...
@@ -21,7 +23,15 @@ class HomePage extends React.Component<any, any> {
render
()
{
const
{
}
=
store
.
indexData
return
<
div
className=
"homepage"
ref=
{
(
el
)
=>
this
.
root
=
el
}
>
<
div
className=
"homeRoot"
>
<
div
className=
"sign"
>
</
div
>
<
Sign
/>
<
Check
/>
</
div
>
</
div
>;
}
}
...
...
src/pages/HomePage/Sign/Sign.less
0 → 100644
View file @
7e9f6c3c
@import "../../../res.less";
.homepage > .homeRoot > .sign {
margin-left: 5px;
margin-top: 0;
width: 741px;
height: 455px;
.webpBg("HomePage/signBg.png");
}
src/pages/HomePage/Sign/Sign.tsx
0 → 100644
View file @
7e9f6c3c
import
React
from
'react'
;
import
{
observer
}
from
'mobx-react'
;
import
'./Sign.less'
;
import
store
from
"@/store/store.ts"
;
@
observer
class
Sign
extends
React
.
Component
<
any
,
any
>
{
componentDidMount
()
{
}
render
()
{
const
{}
=
store
.
indexData
return
<
div
className=
"sign"
>
</
div
>;
}
}
export
default
Sign
;
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