|
|
|
@ -612,6 +612,7 @@
|
|
|
|
|
<el-tabs type="border-card"> |
|
|
|
|
<div class="content"> |
|
|
|
|
<el-tab-pane label="调查记录"> |
|
|
|
|
<div class="el_header-top"> |
|
|
|
|
<div class="el_Processingparty"> |
|
|
|
|
<span>回复</span> |
|
|
|
|
<el-select |
|
|
|
@ -632,6 +633,11 @@
|
|
|
|
|
/> |
|
|
|
|
</el-select> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<div class="el_Refresh" @click="Chatrefresh"> |
|
|
|
|
<el-button type="primary">刷新</el-button> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div class="ovhe" :style="{ height: msgHight + 'px' }" ref="scrollContainer"> |
|
|
|
|
<el-timeline> |
|
|
|
|
|
|
|
|
@ -1792,6 +1798,10 @@ const Msgresponsibility = val => {
|
|
|
|
|
MessageResponsibility.value = val; |
|
|
|
|
console.log(MessageResponsibility.value, '已经选择的责任方'); |
|
|
|
|
}; |
|
|
|
|
// 聊天刷新 |
|
|
|
|
const Chatrefresh=()=>{ |
|
|
|
|
Chathistory() |
|
|
|
|
} |
|
|
|
|
// 获取当前责任方的责任人 |
|
|
|
|
const ResponsiblePartychange = (val, index) => { |
|
|
|
|
console.log(val, '选择的责任方'); |
|
|
|
@ -2907,7 +2917,6 @@ const CustomerServiceCompleted = () => {
|
|
|
|
|
align-items: center; |
|
|
|
|
justify-content: center; |
|
|
|
|
font-size: 12px; |
|
|
|
|
margin-bottom: 8px; |
|
|
|
|
box-shadow: -1px 2px 2px 0px #f5f5f5; |
|
|
|
|
padding: 0 4px; |
|
|
|
|
box-sizing: border-box; |
|
|
|
@ -2956,4 +2965,9 @@ const CustomerServiceCompleted = () => {
|
|
|
|
|
background-color: #d3832a; |
|
|
|
|
border: none; |
|
|
|
|
} |
|
|
|
|
.el_header-top{ |
|
|
|
|
display: flex; |
|
|
|
|
align-items: center; |
|
|
|
|
justify-content: space-between; |
|
|
|
|
} |
|
|
|
|
</style> |
|
|
|
|