Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
U
uni-pdtravel
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
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
panyongping
uni-pdtravel
Commits
ac4d03ff
Commit
ac4d03ff
authored
Sep 06, 2023
by
潘永坪
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
个人中心分包
parent
650acd9c
Changes
11
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
1101 additions
and
793 deletions
+1101
-793
pages.json
pages.json
+374
-363
icon01.png
pages/my/static/icon01.png
+0
-0
iconcanyin.png
pages/my/static/iconcanyin.png
+0
-0
iconchuzuche.png
pages/my/static/iconchuzuche.png
+0
-0
iconjingqumenpiao.png
pages/my/static/iconjingqumenpiao.png
+0
-0
iconjiudian.png
pages/my/static/iconjiudian.png
+0
-0
iconliwu1.png
pages/my/static/iconliwu1.png
+0
-0
iconqita.png
pages/my/static/iconqita.png
+0
-0
iconzuhe.png
pages/my/static/iconzuhe.png
+0
-0
changeNumPayment.vue
pages/payment/changeNumPayment/changeNumPayment.vue
+129
-0
ourPayment.vue
pages/payment/ourPayment/ourPayment.vue
+598
-430
No files found.
pages.json
View file @
ac4d03ff
This diff is collapsed.
Click to expand it.
static/img/my
/icon01.png
→
pages/my/static
/icon01.png
View file @
ac4d03ff
File moved
static/img/my
/iconcanyin.png
→
pages/my/static
/iconcanyin.png
View file @
ac4d03ff
File moved
static/img/my
/iconchuzuche.png
→
pages/my/static
/iconchuzuche.png
View file @
ac4d03ff
File moved
static/img/my
/iconjingqumenpiao.png
→
pages/my/static
/iconjingqumenpiao.png
View file @
ac4d03ff
File moved
static/img/my
/iconjiudian.png
→
pages/my/static
/iconjiudian.png
View file @
ac4d03ff
File moved
static/img/my
/iconliwu1.png
→
pages/my/static
/iconliwu1.png
View file @
ac4d03ff
File moved
static/img/my
/iconqita.png
→
pages/my/static
/iconqita.png
View file @
ac4d03ff
File moved
static/img/my
/iconzuhe.png
→
pages/my/static
/iconzuhe.png
View file @
ac4d03ff
File moved
pages/payment/changeNumPayment/changeNumPayment.vue
0 → 100644
View file @
ac4d03ff
<
template
>
<!-- 传入价格,通过改变数量改变价格的支付页面 -->
<view
class=
"wrap"
>
<view
class=
"top"
>
<view
class=
"name"
>
皇冠大扶梯
</view>
<view
class=
"number"
>
<text>
购买数量
</text>
<u-number-box
v-model=
"buyNumber"
bg-color=
'#3688FF'
color=
'#ffffff'
:input-height=
"60"
size=
'28'
>
</u-number-box>
</view>
<view
class=
"price"
>
<text>
总价
</text>
<text>
¥6.00
</text>
</view>
<view
class=
"remark"
>
<input
placeholder=
"添加备注(20字以内)"
maxlength=
"20"
v-model
.
trim=
"remark"
style=
"margin-bottom:20rpx;"
/>
</view>
<view
class=
"tips"
>
温馨提示:请核对以上付款金额、付款对象等信息与交易匹配。
</view>
</view>
<view
class=
"bottom"
>
<text
class=
"btn"
>
立即支付
</text>
</view>
</view>
</
template
>
<
script
>
export
default
{
data
()
{
return
{
remark
:
''
,
//备注
payType
:
''
,
//支付方式
buyNumber
:
''
,
//购买数量
}
},
onLoad
(
option
)
{
//#ifdef MP-WEIXIN
this
.
payType
=
42
//#endif
//#ifdef MP-ALIPAY
this
.
payType
=
33
//#endif
},
methods
:
{
}
}
</
script
>
<
style
lang=
"scss"
scoped
>
.wrap
{
height
:
100%
;
background
:
#ffffff
;
}
.top
{
padding
:
40rpx
24rpx
;
}
.name
{
font-size
:
32rpx
;
font-weight
:
bold
;
color
:
#191919
;
text-align
:
center
;
}
.number
{
display
:
flex
;
justify-content
:
space-between
;
font-weight
:
bold
;
margin-top
:
80rpx
;
align-items
:
center
;
}
.price
{
display
:
flex
;
justify-content
:
space-between
;
font-weight
:
bold
;
margin-top
:
48rpx
;
text
:nth-child
(
2
)
{
font-size
:
40rpx
;
color
:
$red
;
}
}
.remark
{
margin-top
:
48rpx
;
color
:
$grey
;
}
.tips
{
margin-top
:
24rpx
;
color
:
$grey
;
font-size
:
24rpx
;
}
.bottom
{
position
:
fixed
;
width
:
100%
;
height
:
100rpx
;
display
:
flex
;
align-items
:
center
;
justify-content
:
center
;
bottom
:
0
;
box-shadow
:
0px
-4px
12px
2px
rgba
(
0
,
0
,
0
,
0
.08
);
background
:
#ffffff
;
}
.btn
{
display
:
flex
;
align-items
:
center
;
justify-content
:
center
;
width
:
90%
;
height
:
80rpx
;
background
:
#3688FF
;
border-radius
:
8rpx
;
font-size
:
32rpx
;
font-weight
:
bold
;
}
</
style
>
pages/payment/ourPayment/ourPayment.vue
View file @
ac4d03ff
This diff is collapsed.
Click to expand it.
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