Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
I
icbcRPG
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
wildfirecode13
icbcRPG
Commits
f70c08b4
Commit
f70c08b4
authored
Dec 21, 2020
by
wildfirecode13
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
d7e2fb21
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
23 additions
and
197 deletions
+23
-197
app.jsx
project/src/app.jsx
+3
-4
sign.jsx
project/src/components/sign/sign.jsx
+1
-1
detail2.jsx
project/src/pages/detail2/detail2.jsx
+8
-1
main3.jsx
project/src/pages/main3/main3.jsx
+11
-1
mainpage.jsx
project/src/pages/mainpage/mainpage.jsx
+0
-102
mainpage.less
project/src/pages/mainpage/mainpage.less
+0
-88
No files found.
project/src/app.jsx
View file @
f70c08b4
...
@@ -3,12 +3,11 @@ import ReactDOM from "react-dom";
...
@@ -3,12 +3,11 @@ import ReactDOM from "react-dom";
import
MD
from
'../MD'
;
import
MD
from
'../MD'
;
import
{
MOCK_STATUS
}
from
'../sparkrc'
;
import
{
MOCK_STATUS
}
from
'../sparkrc'
;
import
"./app.less"
;
import
"./app.less"
;
import
Detail2
from
"./pages/detail2/detail2.jsx"
;
//此处为spark-cli动态生成
//此处为spark-cli动态生成
import
Loading
from
"./pages/loading/loading.jsx"
;
import
Loading
from
"./pages/loading/loading.jsx"
;
import
Mainpage
from
"./pages/mainpage/mainpage.jsx"
;
import
Main3
from
"./pages/main3/main3.jsx"
;
import
Main3
from
"./pages/main3/main3.jsx"
;
import
Detail2
from
"./pages/detail2/detail2.jsx"
;
import
{
AUPOP
,
AUP_MBX_STATE
}
from
'./pop'
;
import
{
Aup
,
AUPOP
,
AUP_MBX_STATE
}
from
'./pop'
;
MOCK_STATUS
&&
(
require
(
'../mock/index'
));
MOCK_STATUS
&&
(
require
(
'../mock/index'
));
MD
();
MD
();
...
@@ -16,7 +15,7 @@ class App extends Component {
...
@@ -16,7 +15,7 @@ class App extends Component {
constructor
(
props
)
{
constructor
(
props
)
{
super
(
props
);
super
(
props
);
this
.
state
=
{
this
.
state
=
{
page
:
'
detail
'
,
page
:
'
loading
'
,
};
};
}
}
...
...
project/src/components/sign/sign.jsx
View file @
f70c08b4
...
@@ -16,7 +16,7 @@ class Sign extends Component {
...
@@ -16,7 +16,7 @@ class Sign extends Component {
componentDidMount
()
{
componentDidMount
()
{
setTimeout
(()
=>
{
setTimeout
(()
=>
{
Toast
(
'sdfsdfsdfsdf'
,
1000
*
100
);
//
Toast('sdfsdfsdfsdf', 1000 * 100);
},
1000
);
},
1000
);
}
}
...
...
project/src/pages/detail2/detail2.jsx
View file @
f70c08b4
...
@@ -13,6 +13,13 @@ class Detail2 extends Component {
...
@@ -13,6 +13,13 @@ class Detail2 extends Component {
};
};
}
}
componentDidMount
(){
setTimeout
(()
=>
{
this
.
props
.
navigateTo
(
'mainpage'
)
},
2000
);
}
render
()
{
render
()
{
const
arr
=
[];
const
arr
=
[];
for
(
let
i
=
0
;
i
<
10
;
i
++
)
{
for
(
let
i
=
0
;
i
<
10
;
i
++
)
{
...
@@ -29,7 +36,7 @@ class Detail2 extends Component {
...
@@ -29,7 +36,7 @@ class Detail2 extends Component {
<
div
className=
"detail2_item_list"
uuid=
"3804f60d-697f-4d68-98b5-ca8cf2e2d3ba"
>
<
div
className=
"detail2_item_list"
uuid=
"3804f60d-697f-4d68-98b5-ca8cf2e2d3ba"
>
{
{
arr
.
map
((
i
)
=>
(
arr
.
map
((
i
)
=>
(
<
div
className=
"detail2_item "
uuid=
"4d8289ea-9464-4a92-a81c-3e24c364e707"
>
<
div
key=
{
i
}
className=
"detail2_item "
uuid=
"4d8289ea-9464-4a92-a81c-3e24c364e707"
>
<
span
className=
"detail2_item_title "
uuid=
"48b63d65-a3d8-4b94-b979-3fcb19c9d89c"
>
<
span
className=
"detail2_item_title "
uuid=
"48b63d65-a3d8-4b94-b979-3fcb19c9d89c"
>
每日签到
{
i
}
每日签到
{
i
}
</
span
>
</
span
>
...
...
project/src/pages/main3/main3.jsx
View file @
f70c08b4
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
import
React
,
{
Component
}
from
'react'
;
import
React
,
{
Component
}
from
'react'
;
import
resList
from
'../../resconfig/resList'
;
//import API from '../../api';
import
resList
from
'../../resconfig/resList'
;
//import API from '../../api';
import
{
Aup
,
AUPOP
,
AUP_MBX_STATE
}
from
'../../pop'
;
import
'./main3.less'
;
import
'./main3.less'
;
class
Main3
extends
Component
{
class
Main3
extends
Component
{
...
@@ -13,6 +13,16 @@ class Main3 extends Component {
...
@@ -13,6 +13,16 @@ class Main3 extends Component {
};
};
}
}
componentDidMount
()
{
if
(
this
.
props
.
data
)
{
setTimeout
(()
=>
{
// Aup.show('PopRule', {}, this)
// Aup.show('Userinfo', {}, this);
// Aup.show('Sign', {}, this); // Aup.show('Select', {}, this);
},
200
);
}
}
render
()
{
render
()
{
return
(
return
(
<
div
className=
"main3 "
uuid=
"8754a9d1-7453-474b-b722-7cb71483ae85"
>
<
div
className=
"main3 "
uuid=
"8754a9d1-7453-474b-b722-7cb71483ae85"
>
...
...
project/src/pages/mainpage/mainpage.jsx
deleted
100644 → 0
View file @
d7e2fb21
'use strict'
;
import
React
,
{
Component
}
from
'react'
;
import
resList
from
'../../resconfig/resList'
;
//import API from '../../api';
import
'./mainpage.less'
;
import
{
Aup
,
AUPOP
,
AUP_MBX_STATE
}
from
'../../pop'
;
class
Mainpage
extends
Component
{
constructor
(
props
)
{
super
(
props
);
this
.
state
=
{
resList
:
resList
,
};
}
componentDidMount
()
{
if
(
this
.
props
.
data
)
{
setTimeout
(()
=>
{
// Aup.show('PopRule', {}, this)
// Aup.show('Userinfo', {}, this);
Aup
.
show
(
'Sign'
,
{},
this
);
// Aup.show('Select', {}, this);
},
200
);
}
}
render
()
{
return
(
<
div
className=
"mainpage "
uuid=
"1898b1e3-7737-449c-b7bf-0ee3cc1182bc"
>
<
img
className=
"main_bg "
uuid=
"a0f83312-9ae7-4672-a6f6-4202140f86d7"
src=
{
this
.
state
.
resList
[
'6552b8b5-695f-49df-b74b-ad44aad81fd5'
].
url
}
/>
<
div
className=
"main_guide1 "
uuid=
"96dcfa18-ae8b-4f1b-aa08-6cabe9421c59"
>
<
img
className=
"main_guide1_bg2 "
uuid=
"a0325fdb-ff80-4c8f-8acd-0b21a429222e"
src=
{
this
.
state
.
resList
[
'228a8b05-3ca7-49d9-b8c6-4a6081eca39c'
].
url
}
/>
<
div
className=
"main_guide1_pop "
uuid=
"c4a62680-a427-48b5-826a-712f63f9a78f"
>
<
img
className=
"main_guide1_bg1 "
uuid=
"82835a57-239b-4a5f-b549-d479e4eb41df"
src=
{
this
.
state
.
resList
[
'79dcfca1-182c-49a1-ae2d-6c766a509ad9'
].
url
}
/>
<
span
className=
"main_guide1_txt "
uuid=
"2e1732e4-f5f2-4e8b-aa06-c26f2d24920d"
>
亲爱的朋友,欢迎来到e趣小镇,我是您的小镇管家小e! 首先赠送你10000欢趣豆 下面跟着我一起了解e趣小镇吧!
</
span
>
</
div
>
</
div
>
<
img
className=
"main_guide2 "
uuid=
"5774a705-4112-4719-a9eb-10ad79f9aaff"
src=
{
this
.
state
.
resList
[
'c88a14e8-fc0a-47b0-8e74-5e0d60a9aa27'
].
url
}
/>
<
img
className=
"main_guide3 "
uuid=
"73b50009-e44c-4466-8b59-8660fbc126cc"
src=
{
this
.
state
.
resList
[
'ef6eb21b-0ea0-441a-8de1-85b5c2f555fd'
].
url
}
/>
<
img
className=
"main_guide4 "
uuid=
"dd1830ef-df12-4831-b43b-3b5543907cf4"
src=
{
this
.
state
.
resList
[
'a4ccaf41-5a52-4cd5-82d3-6716e5c27d17'
].
url
}
/>
<
img
className=
"main_guide5 "
uuid=
"7fe077e3-50f2-4c90-a332-23525311567d"
src=
{
this
.
state
.
resList
[
'f843394c-9904-4134-ac2c-bde91e5a4f08'
].
url
}
/>
<
img
className=
"main_guide6 "
uuid=
"65dd0bd9-e7dd-4e2e-bc54-1ffc6dea5c37"
src=
{
this
.
state
.
resList
[
'907d8167-51e6-4f73-b4c6-ebc8af060aba'
].
url
}
/>
<
img
className=
"main_guide7 "
uuid=
"b56f9c9b-d76e-496f-b296-08e7253e5b35"
src=
{
this
.
state
.
resList
[
'fb184f33-56b2-4f62-9482-244ac9b24401'
].
url
}
/>
<
img
className=
"main_guide8 "
uuid=
"4d64de57-63e7-42da-9a3d-2900e7bb8717"
src=
{
this
.
state
.
resList
[
'1beada9a-81e4-4603-8446-9e961c914a9d'
].
url
}
/>
<
img
className=
"main_guide9 "
uuid=
"ac4a7c12-d6f8-40d9-8563-27f7c725b2f5"
src=
{
this
.
state
.
resList
[
'ef3545cf-abef-4010-99ed-16d6129c855d'
].
url
}
/>
<
img
className=
"main_skip "
uuid=
"a322a72f-6bed-4991-8029-69fcae878bb5"
src=
{
this
.
state
.
resList
[
'92613e30-1ac0-46f4-bc8a-a0ffa8f42b99'
].
url
}
/>
</
div
>
);
}
}
export
default
Mainpage
;
project/src/pages/mainpage/mainpage.less
deleted
100644 → 0
View file @
d7e2fb21
.mainpage {
width: 752px;
height: 1666px;
position: absolute;
.main_bg {
width: 750px;
height: 1624px;
position: absolute;
}
.main_guide1 {
width: 752px;
height: 1666px;
position: absolute;
.main_guide1_bg2 {
width: 752px;
height: 1666px;
position: absolute;
}
.main_guide1_pop {
width: 633px;
height: 416px;
left: 44px;
top: 461px;
position: absolute;
.main_guide1_bg1 {
width: 633px;
height: 416px;
position: absolute;
}
.main_guide1_txt {
width: 417px;
height: 173px;
left: 117px;
top: 90px;
position: absolute;
font-size: 30px;
color: #434343;
}
}
}
.main_guide2 {
width: 750px;
height: 1624px;
position: absolute;
}
.main_guide3 {
width: 750px;
height: 1624px;
position: absolute;
}
.main_guide4 {
width: 750px;
height: 1624px;
position: absolute;
}
.main_guide5 {
width: 750px;
height: 1624px;
position: absolute;
}
.main_guide6 {
width: 750px;
height: 1624px;
position: absolute;
}
.main_guide7 {
width: 750px;
height: 1624px;
position: absolute;
}
.main_guide8 {
width: 750px;
height: 1624px;
position: absolute;
}
.main_guide9 {
width: 750px;
height: 1624px;
position: absolute;
}
.main_skip {
width: 107px;
height: 35px;
left: 321px;
top: 1394px;
position: absolute;
}
}
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