Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
shuijf2
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wildfirecode13
shuijf2
Commits
b55bc6cd
Commit
b55bc6cd
authored
Jun 28, 2019
by
wildfirecode
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
502498b2
Changes
12
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
64 additions
and
36 deletions
+64
-36
.DS_Store
.DS_Store
+0
-0
main.scene
assets/scenes/main.scene
+5
-3
PrizeDialogContent.ts
assets/scripts/dialogs/PrizeDialogContent.ts
+4
-4
ScoreDialogContent.ts
assets/scripts/dialogs/ScoreDialogContent.ts
+2
-1
SceneStart.ts
assets/scripts/scenes/SceneStart.ts
+13
-8
bundle.js
debug/bundle.js
+18
-10
bundle.js.map
debug/bundle.js.map
+1
-1
fuck.html
fuck.html
+15
-4
index.html
index.html
+2
-1
manifest.json
manifest.json
+2
-2
dojion.json
mock/customActivity/sjf/activity/dojion.json
+1
-1
rankInfo.json
mock/customActivity/sjf/activity/rankInfo.json
+1
-1
No files found.
.DS_Store
View file @
b55bc6cd
No preview for this file type
assets/scenes/main.scene
View file @
b55bc6cd
...
@@ -383,7 +383,7 @@
...
@@ -383,7 +383,7 @@
"_x": 0,
"_x": 0,
"_y": 245.1060606060605,
"_y": 245.1060606060605,
"x": 0,
"x": 0,
"y":
216.21717171717162
"y":
199.07431457431449
}
}
}
}
},
},
...
@@ -427,7 +427,9 @@
...
@@ -427,7 +427,9 @@
"position": {
"position": {
"_hashCode": 3405,
"_hashCode": 3405,
"_x": 0,
"_x": 0,
"_y": 299.651515151515
"_y": 299.651515151515,
"x": 0,
"y": 271.08008658008646
}
}
}
}
},
},
...
@@ -486,7 +488,7 @@
...
@@ -486,7 +488,7 @@
"uuid": "1fb25a95-98c0-4f3c-9ae9-e8d4e67adf79"
"uuid": "1fb25a95-98c0-4f3c-9ae9-e8d4e67adf79"
}
}
],
],
"disabled":
tru
e
"disabled":
fals
e
},
},
{
{
"name": "ScenePlay",
"name": "ScenePlay",
...
...
assets/scripts/dialogs/PrizeDialogContent.ts
View file @
b55bc6cd
...
@@ -53,11 +53,11 @@ export default class PrizeDialogContent extends DialogContent {
...
@@ -53,11 +53,11 @@ export default class PrizeDialogContent extends DialogContent {
const
texture
=
await
this
.
loadTexture
(
data
.
prizeImage
);
const
texture
=
await
this
.
loadTexture
(
data
.
prizeImage
);
texRender
.
texture
=
texture
;
texRender
.
texture
=
texture
;
if
(
texture
.
bounds
.
width
>
texture
.
bounds
.
height
)
{
if
(
texture
.
bounds
.
width
>
texture
.
bounds
.
height
)
{
const
max
Width
=
50
0
;
const
max
width
=
25
0
;
setScale
(
this
.
pic
,
max
W
idth
/
texture
.
bounds
.
width
)
setScale
(
this
.
pic
,
max
w
idth
/
texture
.
bounds
.
width
)
}
else
{
}
else
{
const
width
=
250
;
const
maxheight
=
250
;
setScale
(
this
.
pic
,
width
/
texture
.
bounds
.
width
)
setScale
(
this
.
pic
,
maxheight
/
texture
.
bounds
.
height
)
}
}
}
}
...
...
assets/scripts/dialogs/ScoreDialogContent.ts
View file @
b55bc6cd
...
@@ -30,7 +30,8 @@ export default class ScoreDialogContent extends DialogContent {
...
@@ -30,7 +30,8 @@ export default class ScoreDialogContent extends DialogContent {
// weddingId: window['CFG'].weddingId,
// weddingId: window['CFG'].weddingId,
// activityId: window['CFG'].activityId
// activityId: window['CFG'].activityId
// })
// })
window
.
location
.
href
=
getRankURL
();
this
.
bubbling
(
'fuckNavigator'
,
'start'
);
window
.
location
.
href
=
getRankURL
();
}
}
// onResponse_rank1() {
// onResponse_rank1() {
...
...
assets/scripts/scenes/SceneStart.ts
View file @
b55bc6cd
...
@@ -73,17 +73,21 @@ export default class SceneStart extends ScillaComponent implements INavigatorVie
...
@@ -73,17 +73,21 @@ export default class SceneStart extends ScillaComponent implements INavigatorVie
if
(
p
.
prizeType
==
data
.
prizeType
)
if
(
p
.
prizeType
==
data
.
prizeType
)
prize
=
p
;
prize
=
p
;
});
});
if
(
!
window
.
localStorage
.
getItem
(
'prizeShowed'
))
{
if
(
!
window
.
localStorage
.
getItem
(
this
.
getKey
()
))
{
if
(
prize
)
//中奖了
if
(
prize
)
//中奖了
this
.
bubbling
(
'showDialog'
,
'Prize'
,
prize
);
this
.
bubbling
(
'showDialog'
,
'Prize'
,
prize
);
else
else
this
.
bubbling
(
'showDialog'
,
'Alert'
,
'您与奖品擦肩而过~'
);
this
.
bubbling
(
'showDialog'
,
'Alert'
,
'您与奖品擦肩而过~'
);
}
}
window
.
localStorage
.
setItem
(
'prizeShowed'
,
'1'
)
window
.
localStorage
.
setItem
(
this
.
getKey
()
,
'1'
)
}
}
}
}
getKey
()
{
return
'prizeShowed-'
+
window
[
'CFG'
].
weixinUid
+
'-'
+
window
[
'CFG'
].
weddingId
+
'-'
+
window
[
'CFG'
].
activityId
}
updateCountTxt
()
{
updateCountTxt
()
{
let
limit
=
0
;
let
limit
=
0
;
if
(
this
.
doJoin
)
{
if
(
this
.
doJoin
)
{
...
@@ -94,6 +98,7 @@ export default class SceneStart extends ScillaComponent implements INavigatorVie
...
@@ -94,6 +98,7 @@ export default class SceneStart extends ScillaComponent implements INavigatorVie
if
(
limit
<
0
)
if
(
limit
<
0
)
limit
=
0
;
limit
=
0
;
setText
(
this
.
countTxt
,
`剩余次数:
${
limit
}
`
);
setText
(
this
.
countTxt
,
`剩余次数:
${
limit
}
`
);
console
.
log
(
`剩余次数:
${
limit
}
`
)
}
}
initGameStage
()
{
initGameStage
()
{
console
.
log
(
'initGameStage'
)
console
.
log
(
'initGameStage'
)
...
@@ -126,19 +131,19 @@ export default class SceneStart extends ScillaComponent implements INavigatorVie
...
@@ -126,19 +131,19 @@ export default class SceneStart extends ScillaComponent implements INavigatorVie
onGotDojoin
()
{
onGotDojoin
()
{
console
.
log
(
'onGotDojoin'
,
this
.
doJoin
);
console
.
log
(
'onGotDojoin'
,
this
.
doJoin
);
this
.
startbtn
.
getComponent
(
Button
).
enabled
=
true
;
this
.
startbtn
.
getComponent
(
Button
).
enabled
=
true
;
this
.
bubbling
(
'fuck'
,
'guide'
);
this
.
updateCountTxt
();
this
.
updateCountTxt
();
setTimeout
(()
=>
{
this
.
bubbling
(
'fuck'
,
'guide'
);
},
50
);
}
}
onGotDojoinError
(
error
)
{
onGotDojoinError
(
error
)
{
this
.
startbtn
.
getComponent
(
Button
).
enabled
=
true
;
this
.
startbtn
.
getComponent
(
Button
).
enabled
=
true
;
if
(
error
===
'40000
1
'
)
{
if
(
error
===
'40000
5
'
)
{
this
.
bubbling
(
'showToast'
,
'活动还未开始
\
n敬请期待~'
);
this
.
bubbling
(
'showToast'
,
'活动还未开始
\
n敬请期待~'
);
}
}
else
if
(
error
===
'400006'
)
{
else
if
(
error
===
'400005'
)
{
this
.
bubbling
(
'showToast'
,
'活动已结束
\
n下次早点来哦~'
);
this
.
bubbling
(
'showToast'
,
'活动已结束
\
n下次早点来哦~'
);
}
}
else
if
(
error
===
'400002'
)
{
else
if
(
error
===
'400002'
)
{
this
.
bubbling
(
'showDialog'
,
'Alert'
,
'您已经没有抽奖机会了'
);
this
.
bubbling
(
'showDialog'
,
'Alert'
,
'您已经没有抽奖机会了'
);
}
}
else
{
else
{
...
...
debug/bundle.js
View file @
b55bc6cd
...
@@ -7507,6 +7507,7 @@
...
@@ -7507,6 +7507,7 @@
};
};
ScoreDialogContent
.
prototype
.
onclick_ranbtn
=
function
()
{
ScoreDialogContent
.
prototype
.
onclick_ranbtn
=
function
()
{
this
.
hide
();
this
.
hide
();
this
.
bubbling
(
'fuckNavigator'
,
'start'
);
window
.
location
.
href
=
getRankURL
();
window
.
location
.
href
=
getRankURL
();
};
};
return
ScoreDialogContent
;
return
ScoreDialogContent
;
...
@@ -7571,15 +7572,18 @@
...
@@ -7571,15 +7572,18 @@
if
(
p
.
prizeType
==
data
.
prizeType
)
if
(
p
.
prizeType
==
data
.
prizeType
)
prize_1
=
p
;
prize_1
=
p
;
});
});
if
(
!
window
.
localStorage
.
getItem
(
'prizeShowed'
))
{
if
(
!
window
.
localStorage
.
getItem
(
this
.
getKey
()
))
{
if
(
prize_1
)
if
(
prize_1
)
this
.
bubbling
(
'showDialog'
,
'Prize'
,
prize_1
);
this
.
bubbling
(
'showDialog'
,
'Prize'
,
prize_1
);
else
else
this
.
bubbling
(
'showDialog'
,
'Alert'
,
'您与奖品擦肩而过~'
);
this
.
bubbling
(
'showDialog'
,
'Alert'
,
'您与奖品擦肩而过~'
);
}
}
window
.
localStorage
.
setItem
(
'prizeShowed'
,
'1'
);
window
.
localStorage
.
setItem
(
this
.
getKey
()
,
'1'
);
}
}
};
};
SceneStart
.
prototype
.
getKey
=
function
()
{
return
'prizeShowed-'
+
window
[
'CFG'
].
weixinUid
+
'-'
+
window
[
'CFG'
].
weddingId
+
'-'
+
window
[
'CFG'
].
activityId
;
};
SceneStart
.
prototype
.
updateCountTxt
=
function
()
{
SceneStart
.
prototype
.
updateCountTxt
=
function
()
{
var
limit
=
0
;
var
limit
=
0
;
if
(
this
.
doJoin
)
{
if
(
this
.
doJoin
)
{
...
@@ -7591,6 +7595,7 @@
...
@@ -7591,6 +7595,7 @@
if
(
limit
<
0
)
if
(
limit
<
0
)
limit
=
0
;
limit
=
0
;
setText$1
(
this
.
countTxt
,
"
\
u5269
\
u4F59
\
u6B21
\
u6570
\
uFF1A"
+
limit
);
setText$1
(
this
.
countTxt
,
"
\
u5269
\
u4F59
\
u6B21
\
u6570
\
uFF1A"
+
limit
);
console
.
log
(
"
\
u5269
\
u4F59
\
u6B21
\
u6570
\
uFF1A"
+
limit
);
};
};
SceneStart
.
prototype
.
initGameStage
=
function
()
{
SceneStart
.
prototype
.
initGameStage
=
function
()
{
console
.
log
(
'initGameStage'
);
console
.
log
(
'initGameStage'
);
...
@@ -7609,17 +7614,20 @@
...
@@ -7609,17 +7614,20 @@
});
});
};
};
SceneStart
.
prototype
.
onGotDojoin
=
function
()
{
SceneStart
.
prototype
.
onGotDojoin
=
function
()
{
var
_this
=
this
;
console
.
log
(
'onGotDojoin'
,
this
.
doJoin
);
console
.
log
(
'onGotDojoin'
,
this
.
doJoin
);
this
.
startbtn
.
getComponent
(
Button
).
enabled
=
true
;
this
.
startbtn
.
getComponent
(
Button
).
enabled
=
true
;
this
.
bubbling
(
'fuck'
,
'guide'
);
this
.
updateCountTxt
();
this
.
updateCountTxt
();
setTimeout
(
function
()
{
_this
.
bubbling
(
'fuck'
,
'guide'
);
},
50
);
};
};
SceneStart
.
prototype
.
onGotDojoinError
=
function
(
error
)
{
SceneStart
.
prototype
.
onGotDojoinError
=
function
(
error
)
{
this
.
startbtn
.
getComponent
(
Button
).
enabled
=
true
;
this
.
startbtn
.
getComponent
(
Button
).
enabled
=
true
;
if
(
error
===
'40000
1
'
)
{
if
(
error
===
'40000
5
'
)
{
this
.
bubbling
(
'showToast'
,
'活动还未开始
\
n敬请期待~'
);
this
.
bubbling
(
'showToast'
,
'活动还未开始
\
n敬请期待~'
);
}
}
else
if
(
error
===
'40000
5
'
)
{
else
if
(
error
===
'40000
6
'
)
{
this
.
bubbling
(
'showToast'
,
'活动已结束
\
n下次早点来哦~'
);
this
.
bubbling
(
'showToast'
,
'活动已结束
\
n下次早点来哦~'
);
}
}
else
if
(
error
===
'400002'
)
{
else
if
(
error
===
'400002'
)
{
...
@@ -8631,7 +8639,7 @@
...
@@ -8631,7 +8639,7 @@
PrizeDialogContent
.
prototype
.
setup
=
function
(
data
)
{
PrizeDialogContent
.
prototype
.
setup
=
function
(
data
)
{
if
(
data
===
void
0
)
{
data
=
{};
}
if
(
data
===
void
0
)
{
data
=
{};
}
return
__awaiter
(
this
,
void
0
,
void
0
,
function
()
{
return
__awaiter
(
this
,
void
0
,
void
0
,
function
()
{
var
texRender
,
texture
,
max
Width
,
width
;
var
texRender
,
texture
,
max
width
,
maxheight
;
return
__generator
(
this
,
function
(
_a
)
{
return
__generator
(
this
,
function
(
_a
)
{
switch
(
_a
.
label
)
{
switch
(
_a
.
label
)
{
case
0
:
case
0
:
...
@@ -8643,12 +8651,12 @@
...
@@ -8643,12 +8651,12 @@
texture
=
_a
.
sent
();
texture
=
_a
.
sent
();
texRender
.
texture
=
texture
;
texRender
.
texture
=
texture
;
if
(
texture
.
bounds
.
width
>
texture
.
bounds
.
height
)
{
if
(
texture
.
bounds
.
width
>
texture
.
bounds
.
height
)
{
max
Width
=
50
0
;
max
width
=
25
0
;
setScale
(
this
.
pic
,
max
W
idth
/
texture
.
bounds
.
width
);
setScale
(
this
.
pic
,
max
w
idth
/
texture
.
bounds
.
width
);
}
}
else
{
else
{
width
=
250
;
maxheight
=
250
;
setScale
(
this
.
pic
,
width
/
texture
.
bounds
.
width
);
setScale
(
this
.
pic
,
maxheight
/
texture
.
bounds
.
height
);
}
}
return
[
2
];
return
[
2
];
}
}
...
...
debug/bundle.js.map
View file @
b55bc6cd
This diff is collapsed.
Click to expand it.
fuck.html
View file @
b55bc6cd
...
@@ -23,13 +23,13 @@
...
@@ -23,13 +23,13 @@
<div
id=
"gameContainer"
style=
"width: 100%;height: 100%;overflow: hidden;"
></div>
<div
id=
"gameContainer"
style=
"width: 100%;height: 100%;overflow: hidden;"
></div>
<script
src=
"//yun.duiba.com.cn/db_games/zepto.min.js"
></script>
<script
src=
"//yun.duiba.com.cn/db_games/zepto.min.js"
></script>
<script
src=
"//yun.duiba.com.cn/db_games/security.js"
></script>
<script
src=
"//yun.duiba.com.cn/db_games/security.js"
></script>
<script
src=
"//yun.duiba.com.cn/db_games/15616
30480
/bundle.js"
></script>
<script
src=
"//yun.duiba.com.cn/db_games/15616
41018
/bundle.js"
></script>
<script>
setTimeout
(
function
()
{
<script>
setTimeout
(
function
()
{
var
loadingEl
=
document
.
getElementById
(
'loading'
);
function
onProcess
(
p
)
{
if
(
p
>=
1
)
{
loadingEl
.
style
.
display
=
'none'
;
}
}
var
loadingEl
=
document
.
getElementById
(
'loading'
);
function
onProcess
(
p
)
{
if
(
p
>=
1
)
{
loadingEl
.
style
.
display
=
'none'
;
}
}
var
options
=
{
resPath
:
"//yun.duiba.com.cn/db_games/15616
26859
/"
};
window
[
'shuijf'
].
startup
(
document
.
getElementById
(
'gameContainer'
),
options
,
onProcess
);
var
options
=
{
resPath
:
"//yun.duiba.com.cn/db_games/15616
39721
/"
};
window
[
'shuijf'
].
startup
(
document
.
getElementById
(
'gameContainer'
),
options
,
onProcess
);
},
100
);
},
100
);
window
[
'COUNT_DOWN_SEC'
]
=
10
;
window
[
'COUNT_DOWN_SEC'
]
=
10
;
window
[
'ruleContent'
]
=
'starttttttt<br>第1行第1行第1行第1行第1行第1行第1行第1行第1行第1行第1行第1行第1行第1行<br>第2行<br>第3行<br>第4行<br>第5行<br>第6行<br>第7行<br>第1行<br>第2行<br>第3行<br>第4行<br>第5行<br>第6行<br>第7行endddddd'
;
window
[
'ruleContent'
]
=
'starttttttt<br>第1行第1行第1行第1行第1行第1行第1行第1行第1行第1行第1行第1行第1行第1行<br>第2行<br>第3行<br>第4行<br>第5行<br>第6行<br>第7行<br>第1行<br>第2行<br>第3行<br>第4行<br>第5行<br>第6行<br>第7行endddddd'
;
</script>
</script>
...
@@ -71,6 +71,17 @@
...
@@ -71,6 +71,17 @@
<script
src=
"https://yun.duiba.com.cn/db_games/debug/vconsole.min.js"
></script>
<script>
// init vConsole
var
vConsole
=
new
VConsole
();
console
.
log
(
'Hello world'
);
</script>
<script
type=
"text/javascript"
>
<script
type=
"text/javascript"
>
var
CFG
=
{
var
CFG
=
{
'startTime'
:
'Wed Jun 26 17:30:00 CST 2019'
,
'startTime'
:
'Wed Jun 26 17:30:00 CST 2019'
,
...
...
index.html
View file @
b55bc6cd
...
@@ -56,7 +56,8 @@
...
@@ -56,7 +56,8 @@
<script
src=
"./security.js"
></script>
<script
src=
"./security.js"
></script>
<script
src=
"debug/bundle.js"
></script>
<script
src=
"debug/bundle.js"
></script>
<script>
<script>
var
CFG
=
{
"startTime"
:
1561523400000
,
"endTime"
:
1561554000000
,
"weddingId"
:
1
,
"freeLimit"
:
100
,
"weixinUid"
:
""
,
"activityId"
:
"3"
,
"nickname"
:
""
,
"activity"
:
{
"activityType"
:
4
,
"brickId"
:
5
,
"drawStatus"
:
0
,
"id"
:
3
,
"joinLimit"
:
100
,
"prizeList"
:
[{
"activityId"
:
3
,
"id"
:
5
,
"prizeCount"
:
5
,
"prizeImage"
:
"//yun.duiba.com.cn/upload/uP99F1462438316972.png"
,
"prizeName"
:
"喜糖摇摇乐奖品1"
,
"prizeRemain"
:
0
,
"prizeType"
:
1
,
"weddingId"
:
1
},
{
"activityId"
:
3
,
"id"
:
6
,
"prizeCount"
:
5
,
"prizeImage"
:
"//yun.duiba.com.cn/upload/uP99F1462438316972.png"
,
"prizeName"
:
"喜糖摇摇乐奖品2"
,
"prizeRemain"
:
1
,
"prizeType"
:
2
,
"weddingId"
:
1
}],
"rankEndTime"
:
1561550400000
,
"weddingId"
:
1
}
};
window
[
'COUNT_DOWN_SEC'
]
=
2
;
var
CFG
=
{
"startTime"
:
1561523400000
,
"endTime"
:
1561554000000
,
"weddingId"
:
1
,
"freeLimit"
:
100
,
"weixinUid"
:
""
,
"activityId"
:
"3"
,
"nickname"
:
""
,
"activity"
:
{
"activityType"
:
4
,
"brickId"
:
5
,
"drawStatus"
:
0
,
"id"
:
3
,
"joinLimit"
:
100
,
"prizeList"
:
[{
"activityId"
:
3
,
"id"
:
5
,
"prizeCount"
:
5
,
"prizeImage"
:
"//yun.duiba.com.cn/db_games/3.jpg"
,
"prizeName"
:
"喜糖摇摇乐奖品1"
,
"prizeRemain"
:
0
,
"prizeType"
:
1
,
"weddingId"
:
1
},
{
"activityId"
:
3
,
"id"
:
6
,
"prizeCount"
:
5
,
"prizeImage"
:
"//yun.duiba.com.cn/upload/uP99F1462438316972.png"
,
"prizeName"
:
"喜糖摇摇乐奖品2"
,
"prizeRemain"
:
1
,
"prizeType"
:
2
,
"weddingId"
:
1
}],
"rankEndTime"
:
1561550400000
,
"weddingId"
:
1
}
};
CFG
.
_rule
=
'starttttttt<br>第1行第1行第1行第1行第1行第1行第1行第1行第1行第1行第1行第1行第1行第1行<br>第2行<br>第3行<br>第4行<br>第5行<br>第6行<br>第7行<br>第1行<br>第2行<br>第3行<br>第4行<br>第5行<br>第6行<br>第7行endddddd'
;
CFG
.
_rule
=
'starttttttt<br>第1行第1行第1行第1行第1行第1行第1行第1行第1行第1行第1行第1行第1行第1行<br>第2行<br>第3行<br>第4行<br>第5行<br>第6行<br>第7行<br>第1行<br>第2行<br>第3行<br>第4行<br>第5行<br>第6行<br>第7行endddddd'
;
...
...
manifest.json
View file @
b55bc6cd
...
@@ -16,8 +16,8 @@
...
@@ -16,8 +16,8 @@
"entryScene"
:
"main"
"entryScene"
:
"main"
},
},
"webServiceUrl-"
:
"http://10.10.93.204:7555 http://localhost:3010"
,
"webServiceUrl-"
:
"http://10.10.93.204:7555 http://localhost:3010"
,
"webServiceUrl
"
:
"http://localhost:4001
"
,
"webServiceUrl
1"
:
"
"
,
"webServiceUrl
1
"
:
"http://localhost:4001"
"webServiceUrl"
:
"http://localhost:4001"
},
},
"dataCenterConfig"
:
{
"dataCenterConfig"
:
{
"dataCenterRoot"
:
[
"dataCenterRoot"
:
[
...
...
mock/customActivity/sjf/activity/dojion.json
View file @
b55bc6cd
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
"prizeId"
:
null
,
"prizeId"
:
null
,
"title"
:
null
,
"title"
:
null
,
"freeLimit"
:
7
,
"freeLimit"
:
7
,
"prizeType"
:
6
,
"prizeType"
:
1
,
"orderStatus"
:
1
,
"orderStatus"
:
1
,
"imgurl"
:
null
,
"imgurl"
:
null
,
"link"
:
null
"link"
:
null
...
...
mock/customActivity/sjf/activity/rankInfo.json
View file @
b55bc6cd
...
@@ -10,7 +10,7 @@
...
@@ -10,7 +10,7 @@
"avatar"
:
"nickName"
,
"avatar"
:
"nickName"
,
"score"
:
1
,
"score"
:
1
,
"rank"
:
"未上榜"
,
"rank"
:
"未上榜"
,
"prizeType"
:
null
,
"prizeType"
:
1
,
"list"
:
[]
"list"
:
[]
}
}
}
}
\ No newline at end of file
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