Commit 1491ec0f by qinjianhui

fix: 问题修改

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