Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Sign in
Toggle navigation
X
xzf_uniapp-wechat-web
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
李智书
xzf_uniapp-wechat-web
Commits
f410f21c
Commit
f410f21c
authored
Feb 13, 2025
by
袁玲利
Browse files
Options
Browse Files
Download
Plain Diff
渤海银行提现金额置空
parents
f1f2f9ee
87c4fee1
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
91 additions
and
15 deletions
+91
-15
src/pages/BankModule/Reflect/Reflect.vue
src/pages/BankModule/Reflect/Reflect.vue
+4
-0
src/pages/CampusFundingGuardian/CampusFundingGuardian.vue
src/pages/CampusFundingGuardian/CampusFundingGuardian.vue
+46
-5
src/pages/gameOrder/gameOrder.vue
src/pages/gameOrder/gameOrder.vue
+41
-10
No files found.
src/pages/BankModule/Reflect/Reflect.vue
View file @
f410f21c
...
...
@@ -219,6 +219,10 @@
sessionid
:
sessionID
,
wechattype
:
1
}
if
(
bankInfo
.
accountType
==
4
)
{
// 渤海银行提现amount置空值
params
.
amount
=
""
;
}
$
.
ajax
({
url
:
withdrawSmsUrl
,
type
:
"
POST
"
,
...
...
src/pages/CampusFundingGuardian/CampusFundingGuardian.vue
View file @
f410f21c
...
...
@@ -61,22 +61,63 @@
</view>
</view>
<view
class=
"img"
></view>
<view
class=
"open"
>
<view
class=
"open"
v-if=
"CompusComsumeData.sch_open_cons_membership"
>
<view
class=
"finger"
></view>
</view>
</view>
</
template
>
<
script
>
var
gHost
=
"
https://
"
+
window
.
location
.
host
;
if
(
window
.
location
.
protocol
!=
"
https:
"
)
{
gHost
=
"
https://uat-pay.xiaopay.net
"
;
}
export
default
{
data
()
{
return
{
faceType
:
""
,
fromPage
:
""
,
sessionId
:
""
,
CompusComsumeData
:
{}
};
},
onLoad
:
function
(
options
)
{},
onLoad
:
function
(
options
)
{
this
.
sessionId
=
options
.
sessionId
||
""
;
},
onShow
()
{},
methods
:
{
// 小程序游戏统计接口
async
GetCompusComsumeData
()
{
$
.
ajax
({
url
:
gHost
+
"
/wechat/svweapp/GetCompusComsumeData?sessionid=
"
+
this
.
sessionId
,
type
:
"
post
"
,
dataType
:
"
json
"
,
contentType
:
"
application/x-www-form-urlencoded
"
,
data
:
{
feeType
:
3
,
},
success
:
function
(
res
)
{
if
(
res
.
code
==
10000
)
{
console
.
log
(
res
);
this
.
CompusComsumeData
=
res
.
results
return
;
}
uni
.
showToast
({
icon
:
"
none
"
,
mask
:
true
,
title
:
res
.
message
,
});
return
;
},
error
:
function
(
error
)
{
reject
(
error
);
},
});
},
},
};
</
script
>
...
...
src/pages/gameOrder/gameOrder.vue
View file @
f410f21c
...
...
@@ -104,6 +104,13 @@ export default {
description
:
"
奇思妙想的拼图世界
"
,
appId
:
"
wxb5612f7e17786c46
"
,
},
{
icon
:
this
.
$ImgUrl
+
"
gameOrder/game13.png
"
,
name
:
"
酷鼠宝快跑
"
,
score
:
"
跑酷消除
"
,
description
:
"
一款轻松快乐的消除游戏。快些挖洞,帮助鼠宝逃离大蛇的追击吧!
"
,
appId
:
"
wxad3052c2d2a34787
"
,
},
],
params
:
{
sessionid
:
""
,
...
...
@@ -115,22 +122,36 @@ export default {
second
:
0
,
};
},
mounted
()
{
this
.
games
.
sort
(()
=>
0.5
-
Math
.
random
());
if
(
this
.
getQueryParams
(
"
userId
"
))
{
this
.
params
.
userid
=
this
.
getQueryParams
(
"
userId
"
);
}
if
(
this
.
getQueryParams
(
"
sessionid
"
))
{
this
.
params
.
sessionid
=
this
.
getQueryParams
(
"
sessionid
"
);
onShow
()
{
uni
.
$on
(
"
refreshPage
"
,
(
data
)
=>
{
console
.
log
(
data
,
"
ttttttttttttt
"
);
if
(
data
.
reload
)
{
this
.
init
();
}
this
.
params
.
behavior
=
"
viewPage
"
;
this
.
params
.
data
=
"
gameOrder
"
;
this
.
GameStatistics
();
})
;
},
mounted
()
{
this
.
init
();
},
methods
:
{
init
()
{
const
self
=
this
;
this
.
games
.
sort
(()
=>
0.5
-
Math
.
random
());
this
.
params
.
userid
=
this
.
getQueryParams
(
"
userId
"
)
||
uni
.
getStorageSync
(
"
userid
"
);
this
.
params
.
sessionid
=
this
.
getQueryParams
(
"
sessionid
"
)
||
uni
.
getStorageSync
(
"
sessionid
"
);
this
.
params
.
behavior
=
"
viewPage
"
;
this
.
params
.
data
=
"
gameOrder
"
;
this
.
GameStatistics
();
if
(
this
.
params
.
userid
)
{
uni
.
setStorageSync
(
"
userid
"
,
this
.
params
.
userid
);
}
if
(
this
.
params
.
sessionid
)
{
uni
.
setStorageSync
(
"
sessionid
"
,
this
.
params
.
sessionid
);
}
this
.
timer
=
setInterval
(()
=>
{
this
.
second
+=
1
;
if
(
this
.
second
==
5
)
{
...
...
@@ -225,6 +246,12 @@ export default {
// uni.navigateToMiniProgram({
// appId: game.appId,
// });
this
.
params
.
userid
=
this
.
getQueryParams
(
"
userId
"
)
||
uni
.
getStorageSync
(
"
userid
"
);
this
.
params
.
sessionid
=
this
.
getQueryParams
(
"
sessionid
"
)
||
uni
.
getStorageSync
(
"
sessionid
"
);
console
.
log
(
this
.
params
.
userid
,
"
zzzzzzzuserid
"
);
console
.
log
(
this
.
params
.
sessionid
,
"
zzzzzzzsessionid
"
);
this
.
params
.
behavior
=
"
click
"
;
this
.
params
.
data
=
game
.
appId
;
this
.
GameStatistics
();
...
...
@@ -242,6 +269,8 @@ export default {
clearInterval
(
this
.
timer
);
this
.
timer
=
null
;
}
// 移除监听,避免内存泄露
uni
.
$off
(
"
refreshPage
"
);
},
};
</
script
>
...
...
@@ -295,6 +324,7 @@ export default {
font-size
:
20
rpx
;
color
:
rgba
(
0
,
0
,
0
,
0.35
);
margin-left
:
12
rpx
;
white-space
:
nowrap
;
}
.game-description
{
...
...
@@ -307,6 +337,7 @@ export default {
.launch-btn
{
width
:
110
rpx
;
min-width
:
110
rpx
;
height
:
56
rpx
;
background-image
:
url("https://xiaopay2020.oss-cn-shenzhen.aliyuncs.com/static/weapp/gameOrder/playgame.png")
;
background-repeat
:
no-repeat
;
...
...
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