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
aba543d0
Commit
aba543d0
authored
Nov 30, 2021
by
李智书
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'develop' into uat
parents
ac261528
affd1be8
Changes
6
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
2721 additions
and
5 deletions
+2721
-5
.hbuilderx/launch.json
.hbuilderx/launch.json
+16
-0
src/pages.json
src/pages.json
+36
-5
src/pages/BankModule/Recharge/Recharge.vue
src/pages/BankModule/Recharge/Recharge.vue
+1581
-0
src/pages/BankModule/Reflect/Reflect.vue
src/pages/BankModule/Reflect/Reflect.vue
+622
-0
src/pages/OpenAccountAgreement/OpenAccountAgreement.vue
src/pages/OpenAccountAgreement/OpenAccountAgreement.vue
+331
-0
src/pages/recharging/recharging.vue
src/pages/recharging/recharging.vue
+135
-0
No files found.
.hbuilderx/launch.json
0 → 100644
View file @
aba543d0
{
//
launch.json
配置了启动调试时相关设置,configurations下节点名称可为
app-plus/h
5
/mp-weixin/mp-baidu/mp-alipay/mp-qq/mp-toutiao/mp
-360
/
//
launchtype项可配置值为local或remote
,
local代表前端连本地云函数,remote代表前端连云端云函数
"version"
:
"0.0"
,
"configurations"
:
[{
"default"
:
{
"launchtype"
:
"local"
},
"h5"
:
{
"launchtype"
:
"local"
},
"type"
:
"uniCloud"
}
]
}
src/pages.json
View file @
aba543d0
...
...
@@ -270,9 +270,40 @@
"enablePullDownRefresh"
:
false
,
"navigationStyle"
:
"custom"
}
},
{
"path"
:
"pages/BankModule/Recharge/Recharge"
,
"style"
:
{
"navigationStyle"
:
"custom"
,
"navigationBarTitleText"
:
"充值"
,
"enablePullDownRefresh"
:
false
}
},
{
"path"
:
"pages/BankModule/Reflect/Reflect"
,
"style"
:
{
"navigationStyle"
:
"custom"
,
"navigationBarTitleText"
:
"提现"
,
"enablePullDownRefresh"
:
false
}
},
{
"path"
:
"pages/recharging/recharging"
,
"style"
:
{
"navigationStyle"
:
"custom"
,
"navigationBarTitleText"
:
"充值申请成功"
,
"enablePullDownRefresh"
:
false
}
},
{
"path"
:
"pages/OpenAccountAgreement/OpenAccountAgreement"
,
"style"
:
{
"navigationStyle"
:
"custom"
,
"navigationBarTitleText"
:
"三类户开户协议"
,
"enablePullDownRefresh"
:
false
}
}
],
"globalStyle"
:
{
"navigationBarTextStyle"
:
"black"
,
...
...
src/pages/BankModule/Recharge/Recharge.vue
0 → 100644
View file @
aba543d0
This diff is collapsed.
Click to expand it.
src/pages/BankModule/Reflect/Reflect.vue
0 → 100644
View file @
aba543d0
This diff is collapsed.
Click to expand it.
src/pages/OpenAccountAgreement/OpenAccountAgreement.vue
0 → 100644
View file @
aba543d0
This diff is collapsed.
Click to expand it.
src/pages/recharging/recharging.vue
0 → 100644
View file @
aba543d0
<
template
>
<view>
<view
class=
"logs-box"
>
<view
class=
"item pass"
>
<view
class=
"item-a"
>
<view
class=
"title"
>
充值申请已提交
</view>
<view
class=
"price"
>
¥
{{
money
}}
</view>
<view
class=
"name"
>
来自
{{
bankName
}}
(
{{
bankNumber
}}
)
</view>
</view>
</view>
<view
class=
"item "
>
<view
class=
"item-a"
>
<image
:src=
"ImgUrl+'xzf/icon-05.png'"
class=
"bank-waitImg"
></image></image>
<view
class=
"title"
>
银行处理中
</view>
</view>
</view>
<view
class=
"item"
>
<view
class=
"item-a"
>
<view
class=
"title"
>
预计
{{
time
}}
前到账
</view>
<view
class=
"name"
>
如信息有误,资金将原路返回
</view>
</view>
</view>
</view>
<view
class=
"btn"
@
click=
"toback"
>
我知道了
</view>
</view>
</
template
>
<
script
>
export
default
{
name
:
"
recharging
"
,
data
()
{
return
{
ImgUrl
:
this
.
$ImgUrl
,
bankName
:
''
,
bankNumber
:
''
,
time
:
''
,
money
:
''
}
},
onLoad
(
options
){
this
.
bankName
=
options
.
bankName
;
//银行名称
this
.
bankNumber
=
options
.
bankNumber
;
//银行卡号
this
.
time
=
options
.
time
;
//预计到账时间
this
.
money
=
options
.
money
;
//到账金额
},
methods
:
{
toback
(){
wx
.
navigateBack
()
}
}
}
</
script
>
<
style
scoped
>
.logs-box
{
margin
:
85
upx
;
}
.item
{
padding
:
0
70
upx
70
upx
;
border-left
:
3
upx
solid
#DADADA
;
position
:
relative
;
min-height
:
139
upx
;
}
.item
:last-child
{
border
:
none
;
}
.item-a
{
position
:
relative
;
top
:
-20
upx
;
}
.bank-waitImg
{
position
:
absolute
;
left
:
-116
upx
;
top
:
-15
upx
;
width
:
92
upx
;
height
:
92
upx
;
z-index
:
2
;
}
.item
::after
{
content
:
""
;
position
:
absolute
;
left
:
-16
upx
;
top
:
-2
upx
;
width
:
30
upx
;
height
:
30
upx
;
border-radius
:
50%
;
background
:
#DADADA
;
}
.item.pass
{
border-color
:
#15B780
;
}
.item.pass
::after
{
background
:
#15B780
;
}
.title
{
font-size
:
32
upx
;
font-weight
:
500
;
color
:
#282828
;
}
.price
{
font-size
:
28
upx
;
font-weight
:
500
;
color
:
#999999
;
}
.name
{
font-size
:
28
upx
;
font-weight
:
500
;
color
:
#999999
;
}
.btn
{
width
:
522
upx
;
height
:
90
upx
;
line-height
:
90
upx
;
text-align
:
center
;
font-size
:
32
upx
;
font-weight
:
500
;
color
:
#15B780
;
margin
:
100
upx
auto
0
;
border
:
2
upx
solid
#15B780
;
border-radius
:
8
upx
;
}
</
style
>
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