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
756c72ce
Commit
756c72ce
authored
Aug 08, 2024
by
mengcuiguang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
支付页面添加客服
parent
cac058ef
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
292 additions
and
244 deletions
+292
-244
coin-popup.vue
vedio/components/coin-popup/coin-popup.vue
+30
-15
kefu-popup.vue
vedio/components/kefu-popup/kefu-popup.vue
+1
-1
vipPay.vue
vedio/pagesA/vipPay/vipPay.vue
+110
-77
dotRecord.vue
vedio/pagesD/dotRecord/dotRecord.vue
+74
-74
payRecord.vue
vedio/pagesD/payRecord/payRecord.vue
+2
-2
useDotRecord.vue
vedio/pagesD/useDotRecord/useDotRecord.vue
+75
-75
No files found.
vedio/components/coin-popup/coin-popup.vue
View file @
756c72ce
...
...
@@ -82,13 +82,14 @@
<view
style=
"display: flex;flex-direction: column;align-items: center;"
>
<view
@
click=
"onVip"
style=
"font-size: 34rpx;color:
gray
;margin-top: 16rpx;margin-bottom: 10rpx;"
>
style=
"font-size: 34rpx;color:
black
;margin-top: 16rpx;margin-bottom: 10rpx;"
>
更多充值及说明 >
</view>
</view>
<view
style=
"display: flex;flex-direction: column;align-items: center;"
>
<view
style=
"font-size: 24rpx;color: gray;margin-top: 16rpx;margin-bottom: 18rpx;"
>
订单中如有疑问,请在我的订单页面联系客服
</view>
<view
style=
"font-size: 29rpx;color: gray;margin-top: 16rpx;"
>
客服时间工作日 9:00-18:00
</view>
<button
class=
"button2"
open-type=
"im"
data-im-id=
"kaixinhaha7785"
>
在线客服
</button>
</view>
</scroll-view>
</view>
...
...
@@ -413,4 +414,18 @@
}
}
}
.button2
{
width
:
300rpx
;
height
:
50rpx
;
line-height
:
50rpx
;
text-align
:
center
;
margin
:
10rpx
20rpx
;
border-radius
:
10rpx
;
background-color
:
white
;
border
:
1px
orange
solid
;
color
:
orange
;
font-size
:
26rpx
;
box-shadow
:
0
0
2px
0px
rgba
(
255
,
255
,
255
,
0
.1
);
}
</
style
>
\ No newline at end of file
vedio/components/kefu-popup/kefu-popup.vue
View file @
756c72ce
...
...
@@ -7,7 +7,7 @@
<view
class=
"content"
>
<text
style=
"font-size: 40rpx;margin-bottom: 15rpx;"
>
客服时间: 工作日9:00-18:00
</text>
<text
class=
"button1"
@
click=
"handleBtn1"
>
客服电话
</text>
<button
class=
"button2"
open-type=
"im"
data-im-id=
"kaixinhaha7785"
>
客服在线
</button>
<button
class=
"button2"
open-type=
"im"
data-im-id=
"kaixinhaha7785"
>
在线客服
</button>
</view>
</view>
</uni-popup>
...
...
vedio/pagesA/vipPay/vipPay.vue
View file @
756c72ce
...
...
@@ -90,6 +90,13 @@
</text>
</view>
</view>
<view
class=
"box-wrap"
@
click=
"handleKefu"
>
<image
src=
"../../static/ic_service.png"
></image>
<text>
客服时间
</text>
<text>
工作日9:00-18:00
</text>
</view>
<kefu-popup
:show=
"showKefuPop"
@
close=
"showKefuPop = false"
/>
</view>
</
template
>
...
...
@@ -118,11 +125,11 @@
selectedVipIndex
:
-
1
,
btnText
:
''
,
userBean
:
{},
os
:
'android'
os
:
'android'
,
showKefuPop
:
false
}
},
methods
:
{
loadData
()
{
onLoad
(
options
)
{
let
that
=
this
;
if
(
tt
.
getSystemInfoSync
().
platform
===
'ios'
)
{
this
.
os
=
'ios'
;
...
...
@@ -198,6 +205,10 @@
}
}
});
},
methods
:
{
loadData
()
{
},
dialogClose
()
{
this
.
$refs
.
alertDialog
.
close
();
...
...
@@ -360,6 +371,9 @@
message
.
notify
(
'充值成功,快去看剧吧'
);
}
});
},
handleKefu
()
{
this
.
showKefuPop
=
true
}
}
}
...
...
@@ -467,4 +481,23 @@
font-size
:
26rpx
;
margin-bottom
:
40rpx
;
}
.box-wrap
{
position
:
absolute
;
bottom
:
20%
;
right
:
6%
;
z-index
:
999
;
display
:
flex
;
flex-direction
:
column
;
align-items
:
center
;
image
{
width
:
100rpx
;
height
:
100rpx
;
}
text
{
color
:
#2c2c2c
;
}
}
</
style
>
\ No newline at end of file
vedio/pagesD/dotRecord/dotRecord.vue
View file @
756c72ce
...
...
@@ -21,8 +21,8 @@
<view
class=
"box-wrap"
@
click=
"handleKefu"
>
<image
src=
"../../static/ic_service.png"
></image>
<text>
客服时间
:
</text>
<text>
每天
9:00-18:00
</text>
<text>
客服时间
</text>
<text>
工作日
9:00-18:00
</text>
</view>
<kefu-popup
:show=
"showKefuPop"
@
close=
"showKefuPop = false"
/>
</view>
...
...
vedio/pagesD/payRecord/payRecord.vue
View file @
756c72ce
...
...
@@ -21,8 +21,8 @@
<view
class=
"box-wrap"
@
click=
"handleKefu"
>
<image
src=
"../../static/ic_service.png"
></image>
<text>
客服时间
:
</text>
<text>
每天
9:00-18:00
</text>
<text>
客服时间
</text>
<text>
工作日
9:00-18:00
</text>
</view>
<kefu-popup
:show=
"showKefuPop"
@
close=
"showKefuPop = false"
/>
</view>
...
...
vedio/pagesD/useDotRecord/useDotRecord.vue
View file @
756c72ce
...
...
@@ -21,8 +21,8 @@
</z-paging>
<view
class=
"box-wrap"
@
click=
"handleKefu"
>
<image
src=
"../../static/ic_service.png"
></image>
<text>
客服时间
:
</text>
<text>
每天
9:00-18:00
</text>
<text>
客服时间
</text>
<text>
工作日
9:00-18:00
</text>
</view>
<kefu-popup
:show=
"showKefuPop"
@
close=
"showKefuPop = false"
/>
</view>
...
...
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