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
deb2cfed
Commit
deb2cfed
authored
Jul 26, 2024
by
mengcuiguang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
代码优化
parent
d8f2e1fd
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
286 additions
and
253 deletions
+286
-253
coin-popup.vue
vedio/components/coin-popup/coin-popup.vue
+27
-11
manifest.json
vedio/manifest.json
+234
-235
vipPay.vue
vedio/pagesA/vipPay/vipPay.vue
+25
-7
No files found.
vedio/components/coin-popup/coin-popup.vue
View file @
deb2cfed
...
@@ -37,7 +37,7 @@
...
@@ -37,7 +37,7 @@
v-for='(item, index) in vipList' :key='index' @click="choosePack(item, index)">
v-for='(item, index) in vipList' :key='index' @click="choosePack(item, index)">
<view
style=
"display: flex;flex-direction: column;align-items: center;"
>
<view
style=
"display: flex;flex-direction: column;align-items: center;"
>
<view
class=
"price row"
>
<view
class=
"price row"
>
{{
item
.
firstPayPrice
<=
0
?
'免费试用'
:
item
.
firstPayPrice
+
'元'
}}
{{
item
.
firstPayPrice
<=
0
?
'免费试用'
:
item
.
firstPayPrice
+
'元'
}}
</view>
</view>
...
@@ -63,6 +63,10 @@
...
@@ -63,6 +63,10 @@
</view>
</view>
</view>
</view>
<text
class=
"trialStyle"
v-show=
"hintText!=null&&hintText!=''"
>
{{
hintText
}}
</text>
<view
style=
"display: flex;flex-direction: column;align-items: center;"
>
<view
style=
"display: flex;flex-direction: column;align-items: center;"
>
<view
style=
"font-size: 24rpx;color: gray;margin-top: 16rpx;margin-bottom: 18rpx;"
>
<view
style=
"font-size: 24rpx;color: gray;margin-top: 16rpx;margin-bottom: 18rpx;"
>
订单中如有疑问,请在个人中心联系客服
</view>
订单中如有疑问,请在个人中心联系客服
</view>
...
@@ -107,6 +111,7 @@
...
@@ -107,6 +111,7 @@
agreeFlag
:
false
,
agreeFlag
:
false
,
userBean
:
{},
userBean
:
{},
agreementDto
:
null
,
agreementDto
:
null
,
hintText
:
''
,
os
:
'android'
,
os
:
'android'
,
titleText
:
'超多精彩小说一键解锁'
,
titleText
:
'超多精彩小说一键解锁'
,
showClone
:
false
showClone
:
false
...
@@ -152,15 +157,15 @@
...
@@ -152,15 +157,15 @@
showLoading
:
false
,
showLoading
:
false
,
success
:
({
success
:
({
data
data
})
=>
{
})
=>
{
console
.
log
(
"agreement="
,
data
.
agreement
);
console
.
log
(
"agreement="
,
data
.
agreement
);
if
(
data
.
agreement
==
undefined
){
if
(
data
.
agreement
==
undefined
)
{
console
.
log
(
"agreement=22222"
);
console
.
log
(
"agreement=22222"
);
this
.
agreementDto
=
null
;
this
.
agreementDto
=
null
;
}
else
{
}
else
{
this
.
agreementDto
=
data
.
agreement
;
this
.
agreementDto
=
data
.
agreement
;
}
}
}
}
});
});
},
},
...
@@ -184,7 +189,7 @@
...
@@ -184,7 +189,7 @@
},
},
choosePack
(
item
,
index
)
{
choosePack
(
item
,
index
)
{
this
.
selectedIndex
=
index
;
this
.
selectedIndex
=
index
;
this
.
hintText
=
this
.
vipList
[
this
.
selectedIndex
].
trailRemark
;
this
.
handlePay
();
this
.
handlePay
();
},
},
handlePay
()
{
handlePay
()
{
...
@@ -236,7 +241,7 @@
...
@@ -236,7 +241,7 @@
let
that
=
this
;
let
that
=
this
;
// 发起微信签约
// 发起微信签约
wx
.
navigateToMiniProgram
({
wx
.
navigateToMiniProgram
({
appId
:
"wxbd687630cd02ce1d"
,
appId
:
"wxbd687630cd02ce1d"
,
path
:
'pages/index/index'
,
path
:
'pages/index/index'
,
extraData
:
wxData
.
params
,
extraData
:
wxData
.
params
,
success
(
res
)
{
success
(
res
)
{
...
@@ -380,4 +385,15 @@
...
@@ -380,4 +385,15 @@
}
}
}
}
}
}
.trialStyle
{
display
:
flex
;
align-items
:
center
;
font-size
:
30rpx
;
color
:
gainsboro
;
margin
:
20rpx
;
word-wrap
:
break-word
;
word-break
:
break-all
;
white-space
:
pre-line
;
}
</
style
>
</
style
>
\ No newline at end of file
vedio/manifest.json
View file @
deb2cfed
This diff is collapsed.
Click to expand it.
vedio/pagesA/vipPay/vipPay.vue
View file @
deb2cfed
...
@@ -20,8 +20,9 @@
...
@@ -20,8 +20,9 @@
<view
class=
"name row"
:class=
"[
{active2: index==selectedIndex}]">
<view
class=
"name row"
:class=
"[
{active2: index==selectedIndex}]">
{{
item
.
title
}}
{{
item
.
title
}}
</view>
</view>
<view
class=
"price row"
:class=
"[
{active1: index==selectedIndex},{price2:item.firstPayPrice
<
=
0
}]"
>
<view
class=
"price row"
<view
style=
"font-size: 50rpx;"
>
{{
item
.
firstPayPrice
<=
0
?
''
:
'¥'
}}
</view>
:class=
"[
{active1: index==selectedIndex},{price2:item.firstPayPrice
<
=
0
}]"
>
<view
style=
"font-size: 50rpx;"
>
{{
item
.
firstPayPrice
<=
0
?
''
:
'¥'
}}
</view>
{{
item
.
firstPayPrice
<=
0
?
'免费试用'
:
item
.
firstPayPrice
}}
{{
item
.
firstPayPrice
<=
0
?
'免费试用'
:
item
.
firstPayPrice
}}
</view>
</view>
<view
class=
"origin row"
v-if=
'item.oldPrice'
>
<view
class=
"origin row"
v-if=
'item.oldPrice'
>
...
@@ -41,6 +42,10 @@
...
@@ -41,6 +42,10 @@
</view>
</view>
</view>
</view>
<text
class=
"trialStyle"
v-show=
"hintText!=null&&hintText!=''"
>
{{
hintText
}}
</text>
<view
class=
"agreementWrp"
>
<view
class=
"agreementWrp"
>
<checkbox-group
@
change=
"checkboxChange"
style=
"width: 50rpx;"
>
<checkbox-group
@
change=
"checkboxChange"
style=
"width: 50rpx;"
>
...
@@ -82,6 +87,7 @@
...
@@ -82,6 +87,7 @@
os
:
'android'
,
os
:
'android'
,
checked
:
false
,
checked
:
false
,
agreementDto
:
null
,
agreementDto
:
null
,
hintText
:
''
}
}
},
},
methods
:
{
methods
:
{
...
@@ -117,6 +123,7 @@
...
@@ -117,6 +123,7 @@
},
},
choosePack
(
item
,
index
)
{
choosePack
(
item
,
index
)
{
this
.
selectedIndex
=
index
;
this
.
selectedIndex
=
index
;
this
.
hintText
=
this
.
vipList
[
this
.
selectedIndex
].
trailRemark
;
},
},
handleUnsign
()
{
handleUnsign
()
{
if
(
this
.
agreementDto
)
{
if
(
this
.
agreementDto
)
{
...
@@ -274,7 +281,7 @@
...
@@ -274,7 +281,7 @@
display
:
inline-block
;
display
:
inline-block
;
.active
{
.active
{
background-color
:
#FE
F8F5
;
background-color
:
#FE
EDD0
;
border
:
4rpx
solid
#FDEADC
!
important
;
border
:
4rpx
solid
#FDEADC
!
important
;
}
}
...
@@ -311,10 +318,10 @@
...
@@ -311,10 +318,10 @@
font-size
:
60rpx
;
font-size
:
60rpx
;
color
:
#000000
;
color
:
#000000
;
font-weight
:
700
;
font-weight
:
700
;
}
}
.price2
{
.price2
{
font-size
:
40rpx
;
font-size
:
40rpx
;
}
}
.active1
{
.active1
{
...
@@ -406,4 +413,15 @@
...
@@ -406,4 +413,15 @@
}
}
}
}
}
}
.trialStyle
{
display
:
flex
;
align-items
:
center
;
font-size
:
30rpx
;
color
:
gainsboro
;
margin
:
20rpx
;
word-wrap
:
break-word
;
word-break
:
break-all
;
white-space
:
pre-line
;
}
</
style
>
</
style
>
\ No newline at end of file
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