Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
梁建民
/
scmMiniprogram
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
b1ed8608
authored
Sep 17, 2021
by
liangjianmin
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
css
parent
bb4a9a87
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
34 additions
and
22 deletions
assets/css/index/index.scss
assets/css/question/detail.scss
pages/index/index.vue
pages/question/detail.vue
pages/question/handle.vue
assets/css/index/index.scss
View file @
b1ed8608
...
...
@@ -174,3 +174,18 @@
font-weight
:
bold
;
}
}
.fadeInRightBig
{
animation
:fadeInRightBig
0
.4s
1
;
}
@keyframes
fadeInRightBig
{
0
%
{
opacity
:
0
;
transform
:
translateX
(
500px
);
}
100
%
{
opacity
:
1
;
transform
:
translateX
(
0
);
}
}
assets/css/question/detail.scss
View file @
b1ed8608
...
...
@@ -197,38 +197,37 @@
font-size
:
32rpx
;
color
:
#1e2021
;
font-weight
:
bold
;
}
.progress-list
{
padding-left
:
24rpx
;
margin-top
:
32rpx
;
.box
{
position
:
relative
;
border-left
:
1
rpx
dashed
#197ADB
;
border-left
:
1
px
dashed
#197adb
;
padding-left
:
37rpx
;
padding-bottom
:
55rpx
;
&
:last-child
{
&
:last-child
{
padding-bottom
:
30rpx
;
}
&
:
:
after
{
&
:
:
after
{
position
:
absolute
;
left
:
-1
7rpx
;
left
:
-1
6rpx
;
top
:
0
;
width
:
2
8
rpx
;
height
:
2
8
rpx
;
width
:
2
4
rpx
;
height
:
2
4
rpx
;
border-radius
:
50%
;
background
:
#
FFFFFF
;
border
:
4rpx
solid
#197
ADB
;
background
:
#
ffffff
;
border
:
4rpx
solid
#197
adb
;
content
:
''
;
}
.t
1
{
.t
2
{
font-size
:
24rpx
;
color
:
#404547
;
margin-bottom
:
12rpx
;
}
.t
2
{
.t
3
{
font-size
:
22rpx
;
color
:
#6
E767A
;
color
:
#6
e767a
;
}
}
}
...
...
pages/index/index.vue
View file @
b1ed8608
...
...
@@ -132,13 +132,7 @@ export default {
this
.
flag
=
true
;
this
.
more
=
'noMore'
;
}
}
else
if
(
res
.
err_code
===
20046
)
{
this
.
is_login
=
true
;
this
.
flag
=
true
;
this
.
more
=
'noMore'
;
this
.
list
=
[];
this
.
total
=
0
;
}
else
if
(
res
.
err_code
===
20045
)
{
}
else
if
(
res
.
err_code
===
20045
)
{
this
.
is_login
=
false
;
this
.
flag
=
true
;
this
.
more
=
'noMore'
;
...
...
pages/question/detail.vue
View file @
b1ed8608
...
...
@@ -127,8 +127,8 @@
<text
class=
"t1"
>
订单问题进度跟踪
</text>
<view
class=
"progress-list"
>
<view
class=
"box column"
v-for=
"item in detail.action_log"
>
<text
class=
"t
1
"
>
{{ item.content }}
</text>
<text
class=
"t
2
"
>
{{ item.create_time }}
</text>
<text
class=
"t
2
"
>
{{ item.content }}
</text>
<text
class=
"t
3
"
>
{{ item.create_time }}
</text>
</view>
</view>
</view>
...
...
pages/question/handle.vue
View file @
b1ed8608
...
...
@@ -286,8 +286,12 @@ export default {
}
},
toChat
()
{
this
.
request
(
API
.
turnManualProcessing
,
'POST'
,
{},
true
).
then
(
res
=>
{
this
.
request
(
API
.
turnManualProcessing
,
'POST'
,
{
ask_customer_problem_list_id
:
this
.
ask_customer_problem_list_id
},
true
).
then
(
res
=>
{
if
(
res
.
err_code
===
0
)
{
uni
.
showToast
({
title
:
res
.
err_msg
,
icon
:
'success'
});
}
else
{
uni
.
showToast
({
title
:
res
.
err_msg
,
...
...
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