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
d40048ee
Commit
d40048ee
authored
Feb 18, 2024
by
袁玲利
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'v_req_2.1' into uat
parents
82994394
813aae92
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
664 additions
and
7 deletions
+664
-7
src/pages.json
src/pages.json
+9
-1
src/pages/ApplyConsumption/Home/Home.vue
src/pages/ApplyConsumption/Home/Home.vue
+1
-0
src/pages/ApplyConsumption/businessRecord/mixin/login.js
src/pages/ApplyConsumption/businessRecord/mixin/login.js
+2
-2
src/pages/BankModule/Recharge/Recharge.vue
src/pages/BankModule/Recharge/Recharge.vue
+1
-1
src/pages/OpenAccountAgreementBOCOM/OpenAccountAgreementBOCOM.vue
...s/OpenAccountAgreementBOCOM/OpenAccountAgreementBOCOM.vue
+647
-0
src/pages/SchoolReport/SchoolReport.vue
src/pages/SchoolReport/SchoolReport.vue
+4
-3
No files found.
src/pages.json
View file @
d40048ee
...
...
@@ -316,7 +316,15 @@
"enablePullDownRefresh"
:
false
}
},
{
},
{
"path"
:
"pages/OpenAccountAgreementBOCOM/OpenAccountAgreementBOCOM"
,
"style"
:
{
"navigationStyle"
:
"custom"
,
"navigationBarTitleText"
:
""
,
"enablePullDownRefresh"
:
false
}
},{
"path"
:
"pages/UserAgreement/UserAgreement"
,
"style"
:
{
"navigationStyle"
:
"custom"
,
...
...
src/pages/ApplyConsumption/Home/Home.vue
View file @
d40048ee
...
...
@@ -354,6 +354,7 @@
page
{
width
:
100%
;
background
:
#F1F1F3
;
line-height
:
1
.6
;
}
.CampusConsumption
{
...
...
src/pages/ApplyConsumption/businessRecord/mixin/login.js
View file @
d40048ee
...
...
@@ -98,10 +98,10 @@ export default {
if
(
v
[
'
mealType
'
]
==
"
夜夜宵
"
)
{
v
[
'
mealTypePng
'
]
=
"
xzf/h5/yeye.png
"
}
if
(
parseInt
(
jsonData
[
'
totalAmount
'
])
===
0
)
{
if
(
parseInt
(
jsonData
[
'
totalAmount
'
]
*
100
)
===
0
)
{
v
[
'
perc
'
]
=
0
}
else
{
v
[
'
perc
'
]
=
parseFloat
(
v
.
dealAmount
/
jsonData
[
'
totalAmount
'
])
v
[
'
perc
'
]
=
parseFloat
(
v
.
dealAmount
/
parseInt
(
jsonData
[
'
totalAmount
'
]
*
100
))
*
100
}
v
[
'
dealAmount
'
]
=
(
v
[
'
dealAmount
'
]
/
100
).
toFixed
(
2
)
return
v
...
...
src/pages/BankModule/Recharge/Recharge.vue
View file @
d40048ee
...
...
@@ -418,7 +418,7 @@
>
</view>
</view>
<view
class=
"changeCard"
@
click=
"ChangeBankPay"
>
我要换卡支付
</view>
<view
class=
"changeCard"
@
click=
"ChangeBankPay"
v-if=
"typeCode != 'BOCOM'"
>
我要换卡支付
</view>
</view>
</view>
<!-- 银行卡列表
...
...
src/pages/OpenAccountAgreementBOCOM/OpenAccountAgreementBOCOM.vue
0 → 100644
View file @
d40048ee
This diff is collapsed.
Click to expand it.
src/pages/SchoolReport/SchoolReport.vue
View file @
d40048ee
...
...
@@ -107,7 +107,7 @@
<view
class=
"school-report-context-card-one-context-txt"
>
本
{{
[
'
月
'
,
'
周
'
][
reportTypeIndex
]
}}
就餐
<text
class=
"txt-important"
>
{{
consumerDetailCalculateObj
.
cateringNumber
}}
</text>
次,未就餐
<text
class=
"txt-important"
>
{{
consumerDetailCalculateObj
.
notCateringNumber
}}
</text>
次。
食堂总
消费
<text
class=
"txt-important"
>
{{
consumerDetailCalculateObj
.
notCateringNumber
}}
</text>
次。
早午晚餐
消费
<text
class=
"txt-important"
>
{{
consumerDetailCalculateObj
.
canteenData
}}
</text>
元,生活费总花费
<text
class=
"txt-important"
>
{{
consumerDetailCalculateObj
.
totalData
}}
</text>
元
</view>
...
...
@@ -257,7 +257,7 @@
<view
class=
"school-report-context-card-eight-conclusion"
>
<view
v-if=
"consumerDetailCalculateObj.totalData>0"
class=
"school-report-context-card-eight-conclusion-item"
>
<text>
本
{{
[
'
月
'
,
'
周
'
][
reportTypeIndex
]
}}
食堂
<text
<text>
本
{{
[
'
月
'
,
'
周
'
][
reportTypeIndex
]
}}
早午晚餐
<text
class=
"txt-important"
>
{{
consumerDetailCalculateObj
.
canteenData
}}
</text>
元,总消费
<text
class=
"txt-important"
>
{{
consumerDetailCalculateObj
.
totalData
}}
</text>
元
</text>
</view>
...
...
@@ -936,7 +936,8 @@
:style=
"{height:[860,845,891][tabIndex-1]+'rpx',top:[1426,1099,pubTalkNoopenHeight][tabIndex-1]+'rpx'}"
>
<view
class=
"no-open-solution"
@
tap=
"equityPay"
>
<view
class=
"no-open-solution-txt"
>
<text>
最低{{memberInfo.leastAmount}}元/天开通,查看完整{{['消费','出入校','公话'][tabIndex-1]}}报告
</text>
<!-- <text>最低{{memberInfo.leastAmount}}元/天开通,查看完整{{['消费','出入校','公话'][tabIndex-1]}}报告</text> -->
<text>
开通消费服务,查看完整消费报告
</text>
</view>
<view
class=
"no-open-solution-item"
>
</view>
...
...
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