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
802f073c
Commit
802f073c
authored
Nov 29, 2021
by
符伟
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增充值成功提示页面
parent
c8a6d5a1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
145 additions
and
0 deletions
+145
-0
src/pages.json
src/pages.json
+10
-0
src/pages/recharging/recharging.vue
src/pages/recharging/recharging.vue
+135
-0
No files found.
src/pages.json
View file @
802f073c
...
...
@@ -286,6 +286,16 @@
"enablePullDownRefresh"
:
false
}
},{
"path"
:
"pages/recharging/recharging"
,
"style"
:
{
"navigationStyle"
:
"custom"
,
"navigationBarTitleText"
:
"充值申请成功"
,
"enablePullDownRefresh"
:
false
}
}
...
...
src/pages/recharging/recharging.vue
0 → 100644
View file @
802f073c
<
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