Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
U
uniapp_vedio
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
android
uniapp_vedio
Commits
db9927e3
Commit
db9927e3
authored
Jul 25, 2024
by
jyx
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
优化样式
parent
5025cf66
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
79 additions
and
65 deletions
+79
-65
vipPay.vue
vedio/pagesA/vipPay/vipPay.vue
+79
-65
No files found.
vedio/pagesA/vipPay/vipPay.vue
View file @
db9927e3
...
...
@@ -13,22 +13,22 @@
<view
class=
"pack-item"
v-for=
'(item, index) in vipList'
:key=
'index'
@
click=
"choosePack(item, index)"
>
<view
class=
"pack-content"
:class=
"[
{active: index==selectedIndex}]">
<view
class=
"label"
>
<view
class=
"label"
v-if=
"item.topTitle"
>
{{
item
.
topTitle
}}
</view>
<view
class=
"name row"
:class=
"[
{active2: index==selectedIndex}]">
{{
item
.
title
}}
</view>
<view
class=
"price row"
:class=
"[
{active1: index==selectedIndex}]">
<view
style=
"font-size:
22
rpx;"
>
¥
</view>
<view
style=
"font-size:
30
rpx;"
>
¥
</view>
{{
item
.
firstPayPrice
}}
</view>
<view
class=
"origin row"
v-if=
'item.oldPrice'
>
¥
{{
item
.
oldPrice
}}
</view>
<view
class=
"origin2 row"
v-if=
'item.
oldPrice
'
>
{{
item
.
remarks
}}
<view
class=
"origin2 row"
v-if=
'item.
remarks
'
>
{{
getRemark1
(
item
.
remarks
)
+
'
\
r
\
n'
+
getRemark2
(
item
.
remarks
)
}}
</view>
<view
class=
"label2"
v-if=
"index==selectedIndex"
>
...
...
@@ -77,18 +77,18 @@
data
()
{
return
{
vipList
:
[],
selectedIndex
:
0
,
selectedIndex
:
0
,
os
:
'android'
,
checked
:
false
,
agreementDto
:
null
,
}
},
methods
:
{
loadData
()
{
if
(
wx
.
getSystemInfoSync
().
platform
===
'ios'
)
{
this
.
os
=
'ios'
;
}
loadData
()
{
if
(
wx
.
getSystemInfoSync
().
platform
===
'ios'
)
{
this
.
os
=
'ios'
;
}
this
.
post
({
url
:
'/vip/getVipProducts/cyc'
,
showLoading
:
false
,
...
...
@@ -126,6 +126,20 @@
amount
(
value
)
{
return
value
.
toFixed
(
2
)
},
getRemark1
(
value
)
{
let
data
=
value
.
split
(
','
)
if
(
data
.
length
>
0
)
{
return
data
[
0
]
}
return
''
},
getRemark2
(
value
)
{
let
data
=
value
.
split
(
','
)
if
(
data
.
length
>
1
)
{
return
data
[
1
]
}
return
''
},
handlePay
()
{
if
(
!
this
.
checked
)
{
message
.
notify
(
"请阅读《支付协议》后勾选同意"
)
...
...
@@ -135,50 +149,50 @@
let
that
=
this
;
let
vipBean
=
this
.
vipList
[
this
.
selectedIndex
];
if
(
this
.
os
==
'ios'
)
{
message
.
notify
(
'暂不支持ios系统~'
);
}
else
{
this
.
post
({
url
:
'/vip/getVipPayParams/wechat'
,
data
:
{
pid
:
vipBean
.
pid
,
payChannel
:
'WEIXIN'
},
showLoading
:
true
,
success
:
({
data
})
=>
{
if
(
vipBean
.
firstPayPrice
==
0
)
{
//签约
that
.
wxSign
(
data
,
vipBean
.
largeType
);
}
else
{
//普通支付
that
.
wxPay
(
data
,
vipBean
.
largeType
);
}
}
});
if
(
this
.
os
==
'ios'
)
{
message
.
notify
(
'暂不支持ios系统~'
);
}
else
{
this
.
post
({
url
:
'/vip/getVipPayParams/wechat'
,
data
:
{
pid
:
vipBean
.
pid
,
payChannel
:
'WEIXIN'
},
showLoading
:
true
,
success
:
({
data
})
=>
{
if
(
vipBean
.
firstPayPrice
==
0
)
{
//签约
that
.
wxSign
(
data
,
vipBean
.
largeType
);
}
else
{
//普通支付
that
.
wxPay
(
data
,
vipBean
.
largeType
);
}
}
});
}
},
wxSign
(
wxData
,
largeType
)
{
let
that
=
this
;
// 发起微信签约
wx
.
navigateToMiniProgram
({
appId
:
wxData
.
appId
,
path
:
'pages/loading'
,
extraData
:
wxData
.
params
,
success
(
res
)
{
message
.
notify
(
'支付成功'
)
setTimeout
(()
=>
{
navigateBack
();
},
1000
);
},
fail
(
res
)
{
// 未成功跳转到签约小程序
console
.
log
(
"wxSign fail="
,
res
);
}
})
},
wxSign
(
wxData
,
largeType
)
{
let
that
=
this
;
// 发起微信签约
wx
.
navigateToMiniProgram
({
appId
:
wxData
.
appId
,
path
:
'pages/loading'
,
extraData
:
wxData
.
params
,
success
(
res
)
{
message
.
notify
(
'支付成功'
)
setTimeout
(()
=>
{
navigateBack
();
},
1000
);
},
fail
(
res
)
{
// 未成功跳转到签约小程序
console
.
log
(
"wxSign fail="
,
res
);
}
})
},
wxPay
(
wxData
)
{
let
wxParams
=
wxData
.
params
;
...
...
@@ -260,15 +274,15 @@
.pack-content
{
width
:
100%
;
height
:
27
0rpx
;
height
:
32
0rpx
;
display
:
flex
;
flex-direction
:
column
;
align-items
:
center
;
background
:
white
;
border
:
4
rpx
solid
#EAECEC
;
border
:
2
rpx
solid
#EAECEC
;
border-radius
:
20rpx
;
position
:
relative
;
padding-top
:
5
0rpx
;
padding-top
:
6
0rpx
;
.row
{
display
:
flex
;
...
...
@@ -282,13 +296,13 @@
}
.name
{
font-size
:
26
rpx
;
font-size
:
30
rpx
;
font-weight
:
700
;
color
:
#000000
;
}
.price
{
font-size
:
4
0rpx
;
font-size
:
6
0rpx
;
color
:
#000000
;
font-weight
:
700
;
}
...
...
@@ -303,20 +317,20 @@
.origin
{
font-size
:
22rpx
;
font-size
:
26rpx
;
margin
:
0
;
text-align
:
center
;
color
:
#676666
;
text-decoration
:
line-through
;
}
.origin2
{
// width: 100rpx;
font-size
:
22rpx
;
font-size
:
26rpx
;
text-align
:
center
;
color
:
#676666
;
word-wrap
:
break-word
;
word-break
:
break-all
;
white-space
:
pre-line
;
color
:
#676666
;
word-wrap
:
break-word
;
word-break
:
break-all
;
white-space
:
pre-line
;
}
.label
{
...
...
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