Commit 1491ec0f by qinjianhui

fix: 问题修改

parent c54d157b
...@@ -259,6 +259,10 @@ ...@@ -259,6 +259,10 @@
{{ detail.orderStatusTxt }} {{ detail.orderStatusTxt }}
</span> </span>
</p> </p>
<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>
</p>
</div> </div>
<div <div
style="padding: 5px; overflow: auto" style="padding: 5px; overflow: auto"
...@@ -268,7 +272,7 @@ ...@@ -268,7 +272,7 @@
</div> </div>
<div class="record"> <div class="record">
<div class="title">沟通记录</div> <div class="title">沟通记录</div>
<ul class="chat_content"> <ul class="chat_content" v-if="chatRecord.length > 0">
<li <li
v-for="(item, index) in chatRecord" v-for="(item, index) in chatRecord"
:key="index" :key="index"
...@@ -316,6 +320,7 @@ ...@@ -316,6 +320,7 @@
</div> </div>
</li> </li>
</ul> </ul>
<div class="empty-data" v-else>暂无数据</div>
</div> </div>
</div> </div>
...@@ -323,7 +328,7 @@ ...@@ -323,7 +328,7 @@
<div> <div>
<el-input <el-input
type="textarea" type="textarea"
:rows="5" :rows="4"
maxlength="1000" maxlength="1000"
placeholder="请输入内容" placeholder="请输入内容"
v-model="textarea" v-model="textarea"
...@@ -459,12 +464,6 @@ export default { ...@@ -459,12 +464,6 @@ export default {
return [ return [
{ label: '工单编号', key: 'orderNo', width: 110 }, { label: '工单编号', key: 'orderNo', width: 110 },
{ {
label: '工单模块',
key: 'taskModuleName',
width: 110,
align: 'left',
},
{
label: '工单类型', label: '工单类型',
key: 'orderTypeTxt', key: 'orderTypeTxt',
width: 80, width: 80,
...@@ -672,6 +671,8 @@ export default { ...@@ -672,6 +671,8 @@ export default {
pageSize, pageSize,
currentPage, currentPage,
orderStatus: this.statusCode, orderStatus: this.statusCode,
startTime: this.periodTime && this.periodTime[0],
endTime: this.periodTime && this.periodTime[1],
...this.searchForm, ...this.searchForm,
}) })
.then((res) => { .then((res) => {
...@@ -965,4 +966,11 @@ export default { ...@@ -965,4 +966,11 @@ export default {
margin-right: 5px; margin-right: 5px;
margin-left: 5px; margin-left: 5px;
} }
.empty-data {
display: flex;
align-items: center;
justify-content: center;
padding: 20px 0;
}
</style> </style>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment