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
53aafce6
Commit
53aafce6
authored
Nov 06, 2019
by
wildfirecode
Browse files
Options
Browse Files
Download
Plain Diff
1
parents
2845fa7d
4693788d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
32 additions
and
32 deletions
+32
-32
MainBase.ts
egret/libs/new_wx/MainBase.ts
+11
-11
NetManager.ts
egret/libs/tw/manager/NetManager.ts
+17
-17
MapScene.ts
egret/src/mapScene/MapScene.ts
+4
-4
No files found.
egret/libs/new_wx/MainBase.ts
View file @
53aafce6
...
...
@@ -392,16 +392,16 @@ export default class MainBase extends eui.UILayer {
});
}
getBackReward
()
{
return
new
Promise
((
r
)
=>
{
try
{
if
(
window
[
'getRST'
])
window
[
'getRST'
]();
}
catch
(
error
)
{
}
NetManager
.
ins
.
hc_getBackReward
(()
=>
{
r
();
})
});
}
//
getBackReward() {
//
return new Promise((r) => {
//
try {
//
if(window['getRST']) window['getRST']();
//
} catch(error) { }
//
NetManager.ins.hc_getBackReward(() => {
//
r();
//
})
//
});
//
}
ajaxElement
()
{
return
new
Promise
((
r
)
=>
{
...
...
@@ -441,7 +441,7 @@ export default class MainBase extends eui.UILayer {
this
.
ajaxElement
(),
this
.
hcHome
(),
this
.
hc_userInfo
(),
this
.
getBackReward
(),
//
this.getBackReward(),
this
.
hcRedBoobBaseInfo
(),
]);
...
...
egret/libs/tw/manager/NetManager.ts
View file @
53aafce6
...
...
@@ -975,23 +975,23 @@ export class NetManager extends ABNetManager {
};
this
.
send
(
net
);
}
public
hc_getBackReward
(
callback
:
Function
):
void
{
const
d
:
any
=
{
activityId
:
DataManager
.
ins
.
customCfgData
.
actId
,
detect
:
window
[
'detect'
],
deviceSessionId
:
window
[
'_device_session_id'
]
};
const
net
:
INetData
=
{
name
:
'hc_getBackReward'
,
uri
:
window
[
'duiba'
]
+
'/customActivity/happyclear/getBackReward'
,
type
:
'get'
,
dataType
:
'json'
,
hideMsg
:
true
,
param
:
d
,
callback
:
callback
};
this
.
send
(
net
);
}
//
public hc_getBackReward(callback: Function): void {
//
const d: any = {
//
activityId: DataManager.ins.customCfgData.actId,
//
detect: window['detect'],
//
deviceSessionId: window['_device_session_id']
//
};
//
const net: INetData = {
//
name: 'hc_getBackReward',
//
uri: window['duiba'] + '/customActivity/happyclear/getBackReward',
//
type: 'get',
//
dataType: 'json',
//
hideMsg:true,
//
param: d,
//
callback: callback
//
};
//
this.send(net);
//
}
public
hc_turnableDojoin
(
callback
:
Function
):
void
{
const
d
:
any
=
{
activityId
:
DataManager
.
ins
.
customCfgData
.
actId
,
...
...
egret/src/mapScene/MapScene.ts
View file @
53aafce6
...
...
@@ -126,10 +126,10 @@ export default class MapScene extends Scene {
localStorage
.
setItem
(
'nowTimer2Str'
+
window
[
'CFG'
].
consumerId
,
nowTimerStr2
);
}
const
backData
=
DataManager
.
ins
.
getData
(
'hc_getBackReward'
);
if
(
backData
.
success
&&
backData
.
data
)
{
panels
.
push
(
'back'
);
}
//
const backData = DataManager.ins.getData('hc_getBackReward');
//
if (backData.success && backData.data) {
//
panels.push('back');
//
}
const
{
signInfoVO
}
=
DataManager
.
ins
.
getData
(
'getSignInfo'
);
if
(
signInfoVO
.
continueDay
<
7
)
{
//表示明天还可以签到
...
...
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