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
f00014fa
Commit
f00014fa
authored
Aug 16, 2024
by
mengcuiguang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
代码优化
parent
38b1c38f
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
96 additions
and
8 deletions
+96
-8
kefu-popup.vue
vedio/components/kefu-popup/kefu-popup.vue
+5
-3
dotRecord.vue
vedio/pagesD/dotRecord/dotRecord.vue
+31
-1
payRecord.vue
vedio/pagesD/payRecord/payRecord.vue
+30
-2
useDotRecord.vue
vedio/pagesD/useDotRecord/useDotRecord.vue
+30
-2
ic_service.png
vedio/static/ic_service.png
+0
-0
No files found.
vedio/components/kefu-popup/kefu-popup.vue
View file @
f00014fa
...
...
@@ -4,9 +4,11 @@
<view
class=
"container"
>
<image
@
click=
"onClose"
style=
"width: 50rpx; height: 50rpx;margin-left:auto;margin-right: 30rpx;
margin-bottom: 30rpx;"
src=
"https://mints-web.oss-cn-beijing.aliyuncs.com/images/ic_close_white.png"
></image>
<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=
"58428734699"
>
客服在线
</button>
<button
class=
"button2"
open-type=
"im"
data-im-id=
"58428734699"
>
在线客服
</button>
</view>
</view>
</uni-popup>
...
...
vedio/pagesD/dotRecord/dotRecord.vue
View file @
f00014fa
...
...
@@ -18,6 +18,13 @@
</view>
</z-paging>
<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
>
<
script
>
...
...
@@ -32,7 +39,8 @@
mixins
:
[
common
],
data
()
{
return
{
dataList
:
[]
dataList
:
[],
showKefuPop
:
false
};
},
methods
:
{
...
...
@@ -58,6 +66,9 @@
this
.
$refs
.
paging
.
complete
(
data
.
list
);
}
});
},
handleKefu
()
{
this
.
showKefuPop
=
true
}
}
};
...
...
@@ -67,4 +78,23 @@
.body
{
background-color
:
whitesmoke
;
}
.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/payRecord/payRecord.vue
View file @
f00014fa
...
...
@@ -18,6 +18,12 @@
</view>
</z-paging>
<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
>
<
script
>
...
...
@@ -28,7 +34,8 @@
mixins
:
[
common
],
data
()
{
return
{
dataList
:
[]
dataList
:
[],
showKefuPop
:
false
};
},
methods
:
{
...
...
@@ -51,6 +58,9 @@
this
.
$refs
.
paging
.
complete
(
data
.
list
);
}
});
},
handleKefu
()
{
this
.
showKefuPop
=
true
}
}
};
...
...
@@ -60,4 +70,22 @@
.body
{
background-color
:
whitesmoke
;
}
.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/useDotRecord/useDotRecord.vue
View file @
f00014fa
...
...
@@ -19,6 +19,12 @@
</view>
</view>
</z-paging>
<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
>
<
script
>
...
...
@@ -33,7 +39,8 @@
mixins
:
[
common
],
data
()
{
return
{
dataList
:
[]
dataList
:
[],
showKefuPop
:
false
};
},
methods
:
{
...
...
@@ -59,6 +66,9 @@
this
.
$refs
.
paging
.
complete
(
data
.
list
);
}
});
},
handleKefu
()
{
this
.
showKefuPop
=
true
}
}
};
...
...
@@ -68,4 +78,22 @@
.body
{
background-color
:
whitesmoke
;
}
.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/static/ic_service.png
0 → 100644
View file @
f00014fa
2.41 KB
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