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
17b5768b
Commit
17b5768b
authored
Oct 28, 2022
by
袁玲利
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'bohai_cert_update' into uat
parents
e19b60d1
9fabb075
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
48 additions
and
6 deletions
+48
-6
src/pages/BankModule/Recharge/Recharge.vue
src/pages/BankModule/Recharge/Recharge.vue
+10
-2
src/pages/SchoolReport/SchoolReport.vue
src/pages/SchoolReport/SchoolReport.vue
+1
-1
src/pages/StudentPayment/PayOrderDetails/PayOrderDetails.vue
src/pages/StudentPayment/PayOrderDetails/PayOrderDetails.vue
+36
-2
src/pages/assignDeposit/assignDeposit.vue
src/pages/assignDeposit/assignDeposit.vue
+1
-1
No files found.
src/pages/BankModule/Recharge/Recharge.vue
View file @
17b5768b
...
...
@@ -179,7 +179,7 @@
v-bind:style=
"Money != '' ? '' : 'background: #e6e6e6 !important;'"
>
<span>
充值生活费
</span>
</view>
<view
class=
"service"
>
{{bankInfo_.accountName}}
Ⅲ
类户为您提供服务
</view>
<view
class=
"service"
>
{{bankInfo_.accountName}}
{{typeCode != 'BOHAI' ? 'Ⅲ' :'Ⅱ'}}
类户为您提供服务
</view>
<!-- -->
<!-- <view class="switchbankCard" @click="ChangeBankPay">我要换银行卡支付</view> -->
</view>
...
...
@@ -367,7 +367,11 @@
text
:
"
账户明细
"
},
{
text
:
"
常见问题
"
},
{
},
{
text
:
"
证件更新
"
},
{
text
:
"
在线销户
"
}],
popshow
:
false
,
...
...
@@ -474,6 +478,10 @@
jWeixin
.
miniProgram
.
redirectTo
({
url
:
`/pages/AssignCancelUserPhone/main`
});
}
else
if
(
action
.
text
==
"
证件更新
"
)
{
jWeixin
.
miniProgram
.
redirectTo
({
url
:
`/pages_subpackB/pages/certificateBohaiUpdate/main`
});
}
},
async
beforeQuerySignStatus
()
{
...
...
src/pages/SchoolReport/SchoolReport.vue
View file @
17b5768b
...
...
@@ -1363,7 +1363,7 @@
}
});
this
.
queryConsumerSummaryAmount
();
this
.
$nextTick
(()
=>
{
this
.
queryIsDredgeMember
(
1002
).
then
(()
=>
{
if
(
this
.
isOpen
)
{
this
.
queryConsumerSummaryAmount
(
1
).
then
(
e
=>
this
.
piechart
());
this
.
queryDayConsumerTrend
(
1
).
then
(
e
=>
this
.
linechart
(
this
...
...
src/pages/StudentPayment/PayOrderDetails/PayOrderDetails.vue
View file @
17b5768b
...
...
@@ -107,6 +107,7 @@
</view>
</view>
</view>
<view
class=
"masking"
v-if=
"mask"
></view>
</view>
</
template
>
...
...
@@ -151,7 +152,8 @@
remarks
:
""
,
remarksType
:
[
"
备注
"
,
"
邮箱
"
,
"
手机号码
"
,
"
身份证
"
],
// 费用id
chargeItemIds
:
[]
chargeItemIds
:
[],
mask
:
false
}
},
onLoad
:
function
(
options
)
{
...
...
@@ -335,6 +337,24 @@
})
}
},
// 倒计时5秒
culDown
()
{
const
self
=
this
;
let
second
=
5
;
const
timer
=
setInterval
(()
=>
{
second
--
;
if
(
second
)
{
self
.
mask
=
true
;
uni
.
showLoading
({
title
:
'
加载中
'
});
}
else
{
clearInterval
(
timer
);
uni
.
hideLoading
();
self
.
mask
=
false
;
}
},
1000
);
},
// 点击缴费下单接口
async
clickPay
()
{
try
{
...
...
@@ -358,6 +378,7 @@
return
}
}
this
.
culDown
();
let
data
=
await
this
.
$http
.
post
({
url
:
orderApi
+
'
/order-charge/app/charge/project/createOrder
'
},
{
...
...
@@ -375,6 +396,7 @@
schoolId
:
this
.
allData
.
schoolId
,
userId
:
this
.
allData
.
userId
})
if
(
data
.
code
!=
200
)
{
uni
.
showToast
({
icon
:
"
none
"
,
...
...
@@ -389,6 +411,8 @@
}
catch
(
e
)
{
//TODO handle the exception
console
.
log
(
e
);
this
.
mask
=
false
;
uni
.
hideLoading
()
uni
.
showToast
({
icon
:
"
none
"
,
mask
:
true
,
...
...
@@ -418,6 +442,8 @@
});
}
catch
(
e
)
{
//TODO handle the exception
this
.
mask
=
false
;
uni
.
hideLoading
();
console
.
log
(
e
);
uni
.
showToast
({
icon
:
"
none
"
,
...
...
@@ -465,7 +491,15 @@
page
{
background
:
#F3F5F6
;
}
.masking
{
position
:
fixed
;
top
:
0
;
left
:
0
;
right
:
0
;
bottom
:
0
;
background
:
rgba
(
0
,
0
,
0
,
0
.4
);
z-index
:
10
;
}
.PaymentRsults
{
width
:
580rpx
;
height
:
480rpx
;
...
...
src/pages/assignDeposit/assignDeposit.vue
View file @
17b5768b
...
...
@@ -1066,7 +1066,7 @@
let
this_
=
this
;
let
loading
=
weui
.
loading
(
"
请稍后
"
);
$
.
ajax
({
url
:
gHost
+
"
/bank-wechat/user/bank/get
"
,
url
:
gHost
+
"
/bank-wechat/user/bank/get
/v2
"
,
type
:
"
POST
"
,
contentType
:
"
application/x-www-form-urlencoded
"
,
data
:
{
...
...
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