Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
X
xiaoxiaole
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
xiaoxiaole
Commits
8afe90e7
Commit
8afe90e7
authored
Nov 05, 2019
by
wildfirecode
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
aa72728f
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
74 additions
and
28 deletions
+74
-28
panelCtrl.ts
egret/libs/new_wx/ctrls/panelCtrl.ts
+12
-3
MapSkin.exml
egret/resource/skins/MapSkin.exml
+6
-1
MapScene.ts
egret/src/mapScene/MapScene.ts
+51
-19
config.js
mock/config.js
+1
-1
advert.json
mock/happyclear/advert.json
+2
-2
getInviteInfo.json
mock/happyclear/getInviteInfo.json
+1
-1
getSignInfo.json
mock/sign/getSignInfo.json
+1
-1
No files found.
egret/libs/new_wx/ctrls/panelCtrl.ts
View file @
8afe90e7
...
...
@@ -3,16 +3,25 @@ import Panel from "../components/Panel";
import
Loading
from
"../components/Loading"
;
import
wait
from
"../../new_tc/wait"
;
export
default
class
PanelCtrl
{
_panels
:
any
[]
showPanels
(
panels
:
any
[])
{
_callback
:
any
;
showPanels
(
panels
:
any
[],
callback
)
{
this
.
_panels
=
panels
;
this
.
_callback
=
callback
;
if
(
panels
.
length
<=
0
)
{
this
.
_callback
();
this
.
_callback
=
null
;
}
if
(
this
.
_panels
.
length
<=
0
)
return
;
const
panel
=
this
.
_panels
.
shift
();
PanelCtrl
.
instance
.
show
(
panel
);
}
checkPanels
(){
if
(
this
.
_panels
&&
this
.
_panels
.
length
<=
0
)
{
this
.
_panels
=
null
;
if
(
this
.
_callback
)
this
.
_callback
();
}
if
(
!
this
.
_panels
||
this
.
_panels
.
length
<=
0
)
return
;
wait
(
300
);
const
panel
=
this
.
_panels
.
shift
();
...
...
egret/resource/skins/MapSkin.exml
View file @
8afe90e7
<?xml version="1.0" encoding="utf-8"?>
<e:Skin
class=
"MapSkin"
width=
"750"
height=
"1206"
xmlns:e=
"http://ns.egret.com/eui"
xmlns:w=
"http://ns.egret.com/wing"
>
<e:Rect
id=
"rectbg"
width=
"750"
height=
"1206"
x=
"2"
y=
"-3"
/>
<e:Rect
id=
"rectbg"
width=
"750"
height=
"1206"
/>
<e:Scroller
id=
"scroll"
width=
"750"
height=
"1624"
x=
"0"
y=
"0"
scrollPolicyH=
"off"
scrollPolicyV=
"on"
locked=
"true"
>
<e:Group
id=
"scrollGroup"
>
</e:Group>
...
...
@@ -140,6 +140,7 @@
<e:Image
id=
"act2Btn"
source=
"map2红包大作战_png"
x=
"163.76"
y=
"159"
/>
</e:Group>
<e:Image
id=
"actsShowBtn"
source=
"map2+_png"
x=
"-7.64"
y=
"5.45"
/>
<e:Image
source=
"maphot_png"
x=
"91.52"
y=
"15.72"
/>
</e:Group>
<e:Group
id=
"settingsx"
x=
"30"
scaleX=
"1.4"
scaleY=
"1.4"
bottom=
"23"
locked=
"true"
>
<e:Group
id=
"settingGroup"
x=
"2"
y=
"6.08"
visible=
"false"
>
...
...
@@ -200,5 +201,9 @@
</e:Group>
<e:Label
text=
"点击开宝箱"
y=
"791"
size=
"37"
horizontalCenter=
"0"
bold=
"true"
/>
</e:Group>
<e:Group
id=
"guide"
visible=
"false"
>
<e:Rect
width=
"750"
height=
"1624"
x=
"0"
y=
"0"
alpha=
"0.7"
/>
<e:Image
id=
"guideInner"
source=
"map2热门引导_png"
x=
"12.62"
y=
"346.28"
/>
</e:Group>
<w:Config
id=
"16c89f4ae1a"
/>
</e:Skin>
\ No newline at end of file
egret/src/mapScene/MapScene.ts
View file @
8afe90e7
...
...
@@ -142,14 +142,13 @@ export default class MapScene extends Scene {
if
(
!
readCache
()
&&
getHomeData
().
levels
.
length
<=
0
)
{
//引导
const
guide
=
new
GuideCon
(()
=>
{
PanelCtrl
.
instance
.
showPanels
(
panels
);
PanelCtrl
.
instance
.
showPanels
(
panels
,
this
.
onAllPanelHide
);
});
this
.
addChild
(
guide
);
guide
.
play
(
1
)
console
.
log
(
guide
)
}
else
{
//不用引导
PanelCtrl
.
instance
.
showPanels
(
panels
);
PanelCtrl
.
instance
.
showPanels
(
panels
,
this
.
onAllPanelHide
);
}
},
window
[
'signActivityId'
]);
...
...
@@ -192,7 +191,7 @@ export default class MapScene extends Scene {
for
(
const
key
in
MapScene
.
iconHash
)
{
const
levelOrder
=
parseInt
(
key
);
const
element
=
MapScene
.
iconHash
[
key
];
if
(
!
element
.
hasEventListener
(
egret
.
TouchEvent
.
TOUCH_TAP
))
{
if
(
!
element
.
hasEventListener
(
egret
.
TouchEvent
.
TOUCH_TAP
))
{
element
.
addEventListener
(
egret
.
TouchEvent
.
TOUCH_TAP
,
()
=>
{
if
(
(
levelOrder
>
(
homeData
.
levels
.
length
+
1
)
&&
levelOrder
>
1
)
...
...
@@ -204,7 +203,7 @@ export default class MapScene extends Scene {
PanelCtrl
.
instance
.
show
(
'StartPanel'
,
key
);
NetManager
.
ins
.
clickLog
(
getlogItem
(
19
))
},
this
);
}
}
}
if
(
homeData
.
levels
.
length
<
window
[
'total_level'
])
{
...
...
@@ -265,22 +264,28 @@ export default class MapScene extends Scene {
this
.
scroll
.
addEventListener
(
egret
.
Event
.
ENTER_FRAME
,
this
.
onEnterFrame
,
this
);
}
onAllPanelHide
=
()
=>
{
if
(
!
localStorage
.
getItem
(
'activityguide'
)
)
{
this
[
'guide'
].
visible
=
true
;
}
}
onEnterFrame
()
{
const
offset
=
0
;
const
y0
=
this
.
scroll
.
viewport
.
scrollV
+
offset
;
const
offset
=
0
;
const
y0
=
this
.
scroll
.
viewport
.
scrollV
+
offset
;
const
y1
=
this
.
stage
.
stageHeight
+
this
.
scroll
.
viewport
.
scrollV
-
offset
;
// console.log(y0, y1);
let
count
=
0
;
for
(
const
key
in
MapScene
.
iconHash
)
{
const
icon
=
MapScene
.
iconHash
[
key
];
if
(
icon
[
'visibleY'
]
>=
y0
&&
icon
[
'visibleY'
]
<=
y1
)
{
if
(
icon
[
'visibleY'
]
>=
y0
&&
icon
[
'visibleY'
]
<=
y1
)
{
icon
.
show
();
}
else
if
(
icon
.
parent
)
{
}
else
if
(
icon
.
parent
)
{
icon
.
hide
();
}
if
(
icon
.
parent
)
count
++
;
if
(
icon
.
parent
)
count
++
;
}
}
...
...
@@ -519,11 +524,18 @@ export default class MapScene extends Scene {
}
onTap_actsShowBtn
()
{
this
[
'actIconsGroup'
].
visible
=
!
this
[
'actIconsGroup'
].
visible
;
this
[
'actIconsGroup'
].
visible
=
!
this
[
'actIconsGroup'
].
visible
;
}
onTap_act1btn
()
{
PanelCtrl
.
instance
.
show
(
"HbCutTime"
);
}
onTap_guide
()
{
this
[
'guide'
].
visible
=
false
;
localStorage
.
setItem
(
'activityguide'
,
'1'
);
}
onTap_act2btn
()
{
PanelCtrl
.
instance
.
show
(
"HbCutTime"
);
}
onTap_inviteBtn
()
{
NetManager
.
ins
.
clickLog
(
getlogItem
(
33
));
...
...
@@ -618,7 +630,10 @@ export default class MapScene extends Scene {
switch
(
true
)
{
case
(
flag
==
0
):
// 未完成 显示倒计时
this
[
"inviteGroup"
].
visible
=
true
;
if
(
!
mapAdvert
||
mapAdvert
.
enable
==
false
)
this
[
'activitys'
].
y
=
458
;
if
(
!
mapAdvert
||
mapAdvert
.
enable
==
false
)
{
this
[
'activitys'
].
y
=
458
;
this
[
'guideInner'
].
y
=
185
;
}
NetManager
.
ins
.
showLog
(
getlogItem
(
33
));
this
[
"inviteTipsBg"
].
visible
=
true
;
this
[
"inviteTips"
].
visible
=
true
;
...
...
@@ -631,7 +646,10 @@ export default class MapScene extends Scene {
case
(
flag
==
1
):
// 完成未开奖 待领奖 显示待领奖
NetManager
.
ins
.
showLog
(
getlogItem
(
33
));
this
[
"inviteGroup"
].
visible
=
true
;
if
(
!
mapAdvert
||
mapAdvert
.
enable
==
false
)
this
[
'activitys'
].
y
=
458
;
if
(
!
mapAdvert
||
mapAdvert
.
enable
==
false
)
{
this
[
'activitys'
].
y
=
458
;
this
[
'guideInner'
].
y
=
185
;
}
this
[
"inviteTipsBg"
].
visible
=
true
;
this
[
"inviteTips"
].
visible
=
true
;
this
[
"inviteTips"
].
text
=
"待领奖"
;
...
...
@@ -639,14 +657,20 @@ export default class MapScene extends Scene {
case
(
flag
==
2
):
// 领奖成功 无角标
case
(
flag
==
3
):
// 领奖失败 无角标
this
[
"inviteGroup"
].
visible
=
true
;
if
(
!
mapAdvert
||
mapAdvert
.
enable
==
false
)
this
[
'activitys'
].
y
=
458
;
if
(
!
mapAdvert
||
mapAdvert
.
enable
==
false
)
{
this
[
'activitys'
].
y
=
458
;
this
[
'guideInner'
].
y
=
185
;
}
NetManager
.
ins
.
showLog
(
getlogItem
(
33
));
this
[
"inviteTipsBg"
].
visible
=
false
;
this
[
"inviteTips"
].
visible
=
false
;
break
;
case
(
flag
==
4
):
// 可以开启下一次发任务 显示立即到账
this
[
"inviteGroup"
].
visible
=
true
;
if
(
!
mapAdvert
||
mapAdvert
.
enable
==
false
)
this
[
'activitys'
].
y
=
458
;
if
(
!
mapAdvert
||
mapAdvert
.
enable
==
false
)
{
this
[
'activitys'
].
y
=
458
;
this
[
'guideInner'
].
y
=
185
;
}
NetManager
.
ins
.
showLog
(
getlogItem
(
33
));
this
[
"inviteTipsBg"
].
visible
=
true
;
this
[
"inviteTips"
].
visible
=
true
;
...
...
@@ -654,7 +678,10 @@ export default class MapScene extends Scene {
break
;
case
(
flag
==
5
):
// 等待开启下一次发任务 无角标
this
[
"inviteGroup"
].
visible
=
true
;
if
(
!
mapAdvert
||
mapAdvert
.
enable
==
false
)
this
[
'activitys'
].
y
=
458
;
if
(
!
mapAdvert
||
mapAdvert
.
enable
==
false
)
{
this
[
'activitys'
].
y
=
458
;
this
[
'guideInner'
].
y
=
185
;
}
NetManager
.
ins
.
showLog
(
getlogItem
(
33
));
this
[
"inviteTipsBg"
].
visible
=
false
;
this
[
"inviteTips"
].
visible
=
false
;
...
...
@@ -662,10 +689,13 @@ export default class MapScene extends Scene {
case
(
flag
==
6
):
// 无入口
this
[
"inviteGroup"
].
visible
=
false
;
this
[
'adBtn'
].
y
=
323.76
;
if
(
mapAdvert
&&
mapAdvert
.
enable
)
if
(
mapAdvert
&&
mapAdvert
.
enable
)
{
this
[
'guideInner'
].
y
=
185
;
this
[
'activitys'
].
y
=
458
;
else
}
else
{
this
[
'guideInner'
].
y
=
30
;
this
[
'activitys'
].
y
=
303.76
;
}
break
;
default
:
break
;
...
...
@@ -717,7 +747,9 @@ export default class MapScene extends Scene {
protected
initEvents
()
{
// this['goldBtn'].addEventListener(egret.TouchEvent.TOUCH_TAP, this.onTap_goldBtn, this)
this
[
'guide'
].
addEventListener
(
egret
.
TouchEvent
.
TOUCH_TAP
,
this
.
onTap_guide
,
this
);
this
[
'act1Btn'
].
addEventListener
(
egret
.
TouchEvent
.
TOUCH_TAP
,
this
.
onTap_act1btn
,
this
);
this
[
'act2Btn'
].
addEventListener
(
egret
.
TouchEvent
.
TOUCH_TAP
,
this
.
onTap_act2btn
,
this
);
this
[
'actsShowBtn'
].
addEventListener
(
egret
.
TouchEvent
.
TOUCH_TAP
,
this
.
onTap_actsShowBtn
,
this
);
this
[
'inviteBtn'
].
addEventListener
(
egret
.
TouchEvent
.
TOUCH_TAP
,
this
.
onTap_inviteBtn
,
this
);
this
[
'friendBtn'
].
addEventListener
(
egret
.
TouchEvent
.
TOUCH_TAP
,
this
.
onTap_friendBtn
,
this
)
...
...
mock/config.js
View file @
8afe90e7
...
...
@@ -46,7 +46,7 @@ const config = {
data
:
'./happyclear/openTreasureBox.json'
},
'/customActivity/happyclear/home'
:
{
data
:
'./happyclear/home
max
.json'
data
:
'./happyclear/home.json'
},
'/customActivity/happyclear/getLevelInfo'
:
{
data
:
'./happyclear/getLevelInfo.json'
...
...
mock/happyclear/advert.json
View file @
8afe90e7
...
...
@@ -10,7 +10,7 @@
}
]
},
"noticeA
1
dvert"
:
{
"noticeAdvert"
:
{
"enable"
:
true
,
"advertList"
:
[
{
...
...
@@ -19,7 +19,7 @@
}
]
},
"popupAd
1
vert"
:
{
"enable"
:
true
,
"popupAdvert"
:
{
"enable"
:
true
,
"advertList"
:
[
{
"img"
:
"//yun.duiba.com.cn/images/201910/zqtdp6xibw.jpg"
,
...
...
mock/happyclear/getInviteInfo.json
View file @
8afe90e7
...
...
@@ -8,7 +8,7 @@
"invitationCount"
:
1
,
"sysTime"
:
1572403459405
,
"endTime"
:
1572489858000
,
"completeFlag"
:
6
,
"completeFlag"
:
5
,
"openPrizMsg"
:
null
,
"prizeType"
:
"7"
,
"prizeName"
:
null
,
...
...
mock/sign/getSignInfo.json
View file @
8afe90e7
...
...
@@ -2,6 +2,6 @@
"success"
:
true
,
"signInfoVO"
:
{
"continueDay"
:
6
,
"todaySigned"
:
1
"todaySigned"
:
0
}
}
\ 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