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
9365b1d5
Commit
9365b1d5
authored
Jun 11, 2024
by
jyx
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
订单页添加客服
parent
e4f274a3
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
98 additions
and
7 deletions
+98
-7
dotRecord.vue
vedio/pagesD/dotRecord/dotRecord.vue
+32
-1
payRecord.vue
vedio/pagesD/payRecord/payRecord.vue
+35
-5
useDotRecord.vue
vedio/pagesD/useDotRecord/useDotRecord.vue
+31
-1
ic_service.png
vedio/static/ic_service.png
+0
-0
No files found.
vedio/pagesD/dotRecord/dotRecord.vue
View file @
9365b1d5
...
...
@@ -19,6 +19,14 @@
</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 +41,8 @@
mixins
:
[
common
],
data
()
{
return
{
dataList
:
[]
dataList
:
[],
showKefuPop
:
false
};
},
methods
:
{
...
...
@@ -59,6 +68,9 @@
this
.
$refs
.
paging
.
complete
(
data
.
list
);
}
});
},
handleKefu
()
{
this
.
showKefuPop
=
true
}
}
};
...
...
@@ -68,4 +80,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 @
9365b1d5
...
...
@@ -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
>
...
...
@@ -28,7 +35,8 @@
mixins
:
[
common
],
data
()
{
return
{
dataList
:
[]
dataList
:
[],
showKefuPop
:
false
};
},
methods
:
{
...
...
@@ -39,10 +47,10 @@
},
queryList
(
page
,
size
)
{
this
.
post
({
url
:
'/vip/getOrderList'
,
data
:
{
page
,
size
url
:
'/vip/getOrderList'
,
data
:
{
page
,
size
},
showLoading
:
false
,
success
:
({
...
...
@@ -51,6 +59,9 @@
this
.
$refs
.
paging
.
complete
(
data
.
list
);
}
});
},
handleKefu
()
{
this
.
showKefuPop
=
true
}
}
};
...
...
@@ -60,4 +71,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/useDotRecord/useDotRecord.vue
View file @
9365b1d5
...
...
@@ -19,6 +19,13 @@
</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 +40,8 @@
mixins
:
[
common
],
data
()
{
return
{
dataList
:
[]
dataList
:
[],
showKefuPop
:
false
};
},
methods
:
{
...
...
@@ -59,6 +67,9 @@
this
.
$refs
.
paging
.
complete
(
data
.
list
);
}
});
},
handleKefu
()
{
this
.
showKefuPop
=
true
}
}
};
...
...
@@ -68,4 +79,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/static/ic_service.png
0 → 100644
View file @
9365b1d5
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