Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
saas-manage
Overview
Overview
Details
Activity
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
chehuidong
saas-manage
Commits
6e4c331a
Commit
6e4c331a
authored
Feb 23, 2023
by
qinjianhui
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: 问题修改
parent
1491ec0f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
49 additions
and
10 deletions
+49
-10
src/views/taskManage/index.vue
+49
-10
No files found.
src/views/taskManage/index.vue
View file @
6e4c331a
...
...
@@ -259,9 +259,16 @@
{{
detail
.
orderStatusTxt
}}
</span>
</p>
<p
class=
"item"
style=
"width:100%;display:flex"
>
<p
class=
"item"
style=
"width: 100%; display: flex"
>
<span
class=
"label"
>
工单内容
</span>
<span
style=
"flex:1;display: inline-block;"
class=
"value"
v-html=
"detail.content"
></span>
<span
style=
"flex: 1; display: inline-block"
class=
"value"
v-html=
"detail.content"
></span>
</p>
</div>
<div
...
...
@@ -272,7 +279,10 @@
</div>
<div
class=
"record"
>
<div
class=
"title"
>
沟通记录
</div>
<ul
class=
"chat_content"
v-if=
"chatRecord.length > 0"
>
<ul
class=
"chat_content"
v-if=
"chatRecord.length > 0"
>
<li
v-for=
"(item, index) in chatRecord"
:key=
"index"
...
...
@@ -284,7 +294,9 @@
<div
class=
"chat_user_time"
>
{{
item
.
createTime
}}
{{
item
.
sendUserName
}}
}}
{{
item
.
sendUserName
}}
</div>
<div
class=
"chat_text"
>
{{
item
.
msg
}}
...
...
@@ -729,12 +741,15 @@ export default {
async
showDetail
(
item
)
{
this
.
currentRowId
=
item
.
id
this
.
detail
=
item
axios
.
get
(
`platform/platformWorkOrderChat/getByWorkOrder?workOrderId=
${
item
.
id
}
`
).
then
((
res
)
=>
{
if
(
res
.
code
===
200
)
{
this
.
chatRecord
=
res
.
data
}
})
axios
.
get
(
`platform/platformWorkOrderChat/getByWorkOrder?workOrderId=
${
item
.
id
}
`
,
)
.
then
((
res
)
=>
{
if
(
res
.
code
===
200
)
{
this
.
chatRecord
=
res
.
data
}
})
this
.
detailVisible
=
true
this
.
textarea
=
''
},
...
...
@@ -973,4 +988,28 @@ export default {
justify-content
:
center
;
padding
:
20px
0
;
}
.detail_list
{
&::v-deep
{
table
{
border-right
:
1px
solid
#000000
;
border-bottom
:
1px
solid
#000000
;
text-align
:
center
;
width
:
100%
!important
;
border-spacing
:
0
;
}
table
th
{
border-left
:
1px
solid
#000000
;
border-top
:
1px
solid
#000000
;
padding
:
6px
;
}
table
td
{
border-left
:
1px
solid
#000000
;
border-top
:
1px
solid
#000000
;
padding
:
6px
;
height
:
20px
;
}
}
}
</
style
>
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