qb 5 months ago
parent
commit
b1e756328a
  1. 11
      src/option/aftersales/vueTvemp.js
  2. 115
      src/views/aftersales/aftersalesWorkOrderInfo.vue
  3. 206
      src/views/aftersales/aftersalesWorkOrderTemp.vue
  4. 100
      src/views/aftersales/aftersalesWorkOrderend.vue

11
src/option/aftersales/vueTvemp.js

@ -340,6 +340,17 @@ export const columnList = [
sortable: true, sortable: true,
head: false, head: false,
}, },
{
prop: 'ceator',
label: '创建人',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{ {
prop: 'remarks', prop: 'remarks',

115
src/views/aftersales/aftersalesWorkOrderInfo.vue

@ -567,7 +567,10 @@
<el-button type="primary" v-if="PermissionButton.Processing_results" @click="addingRecord" <el-button type="primary" v-if="PermissionButton.Processing_results" @click="addingRecord"
>处理结果 >处理结果
</el-button> </el-button>
<el-button type="primary" v-if="PermissionButton.Processing_resultsSub" @click="addingRecord" <el-button
type="primary"
v-if="PermissionButton.Processing_resultsSub"
@click="addingRecord"
>处理结果提交 >处理结果提交
</el-button> </el-button>
<!-- <el-button type="primary" v-if="PermissionButton.Confirm_review" @click="ConfirmReview" <!-- <el-button type="primary" v-if="PermissionButton.Confirm_review" @click="ConfirmReview"
@ -679,7 +682,7 @@
<el-icon> <ChatRound /> </el-icon>:<span> {{ item.content }}</span> <el-icon> <ChatRound /> </el-icon>:<span> {{ item.content }}</span>
</div> </div>
<div class="img" v-if="item.img"> <!-- <div class="img" v-if="item.img">
<el-image <el-image
:src="item.img" :src="item.img"
:zoom-rate="1.2" :zoom-rate="1.2"
@ -689,6 +692,19 @@
:initial-index="4" :initial-index="4"
fit="cover" fit="cover"
/> />
</div> -->
<div class="img" v-if="item.img">
<el-image
v-for="(item, index) in item.imgList"
:key="index"
:src="item"
:zoom-rate="1.2"
:max-scale="7"
:min-scale="0.2"
:preview-src-list="[item]"
:initial-index="4"
fit="cover"
/>
</div> </div>
<div class="mp4" @click="AddVideoPreview(index)" v-if="item.mp4"> <div class="mp4" @click="AddVideoPreview(index)" v-if="item.mp4">
<span <span
@ -1000,19 +1016,27 @@ onMounted(() => {
// appeal.value && AppealReview.value, // appeal.value && AppealReview.value,
// //
const Fileidentifier = val => { const Fileidentifier = val => {
const url = val; if (val) {
const fileName = url.substring(url.lastIndexOf('/') + 1); const url = val;
const extension = fileName.substring(fileName.lastIndexOf('.') + 1); //
if (extension === 'mp4') { const fileName = url.substring(url.lastIndexOf('/') + 1);
return 'mp4'; //
} const extension = fileName.substring(fileName.lastIndexOf('.') + 1).toLowerCase();
if (extension === 'png') {
return 'png'; //
} if (extension === 'mp4') {
if (extension === 'docx') { return 'mp4';
return 'docx'; }
if (extension === 'png' || extension === 'jpg' || extension === 'jpeg') {
return 'image'; // 'png' 'image'
}
if (extension === 'docx') {
return 'docx';
}
// undefined
return undefined;
} }
return undefined; // undefined
}; };
// //
const Chathistory = res => { const Chathistory = res => {
@ -1023,23 +1047,55 @@ const Chathistory = res => {
}) })
.then(res => { .then(res => {
MessageContent.value = []; // MessageContent.value = []; //
// res.data.data.surveyRecordEntities.forEach(item => {
// if (item.pictureUrl) {
// filetype = Fileidentifier(item.pictureUrl);
// }
// MessageContent.value.push({
// time: item.createTime, //
// content: item.processingResults, //
// name: item.addDepartment, //
// username: item.processorName, //
// img: filetype == 'image' ? item.pictureUrl : '',
// file: filetype == 'docx' ? item.pictureUrl : '',
// mp4: filetype == 'mp4' ? item.pictureUrl : '',
// imgList: [filetype === 'png' ? item.pictureUrl : ''],
// difference: item.difference,
// identifying: false, //
// });
// });
res.data.data.surveyRecordEntities.forEach(item => { res.data.data.surveyRecordEntities.forEach(item => {
if (item.pictureUrl) { const filetype = Fileidentifier(item.pictureUrl);
filetype = Fileidentifier(item.pictureUrl); console.log(filetype, '文件类型');
// ';'
let imgList = [];
if (filetype === 'image') {
// URL
if (item.pictureUrl.includes(',')) {
imgList = item.pictureUrl.split(',').filter(url => url.trim() !== '');
} else {
//
imgList = [item.pictureUrl];
}
} }
//
MessageContent.value.push({ MessageContent.value.push({
time: item.createTime, // time: item.createTime, //
content: item.processingResults, // content: item.processingResults, //
name: item.addDepartment, // name: item.addDepartment, //
username: item.processorName, // username: item.processorName, //
img: filetype == 'png' ? item.pictureUrl : '', img: imgList.length > 0 ? imgList[0] : '', //
file: filetype == 'docx' ? item.pictureUrl : '', file: filetype === 'docx' ? item.pictureUrl : '',
mp4: filetype == 'mp4' ? item.pictureUrl : '', mp4: filetype === 'mp4' ? item.pictureUrl : '',
imgList: [filetype === 'png' ? item.pictureUrl : ''], imgList: imgList, //
difference: item.difference, difference: item.difference,
identifying: false, // identifying: identifying, //
}); });
}); });
setTimeout(() => { setTimeout(() => {
const container = scrollContainer.value; const container = scrollContainer.value;
if (container) { if (container) {
@ -1167,9 +1223,8 @@ const onLoad = async () => {
} else { } else {
warehouseIdState.value = false; warehouseIdState.value = false;
} }
console.log(res.data.data.createUser,'工单创建人'); console.log(res.data.data.createUser, '工单创建人');
console.log(userInfo.content.user_id,'系统登录人'); console.log(userInfo.content.user_id, '系统登录人');
Indexform.value['result'] = []; Indexform.value['result'] = [];
Indexform.value['processor'] = []; Indexform.value['processor'] = [];
@ -1339,12 +1394,12 @@ const isProcessingResults = () => {
} }
return false; return false;
}; };
const isProcessingResultssub=()=>{ const isProcessingResultssub = () => {
if (workOrderStatus == '90') { if (workOrderStatus == '90') {
return true; return true;
} }
return false; return false;
} };
// //
const isWorkOrderCompletion = () => { const isWorkOrderCompletion = () => {

206
src/views/aftersales/aftersalesWorkOrderTemp.vue

@ -80,9 +80,21 @@
</div> </div>
<!-- 头部右侧按钮模块 --> <!-- 头部右侧按钮模块 -->
<div class="avue-crud__right"> <div class="avue-crud__right">
<el-button icon="el-icon-refresh" @click="searchChangeS" circle></el-button> <el-tooltip content="刷新数据" placement="top">
<el-button icon="Operation" @click="showdrawer(true)" circle></el-button> <el-button icon="el-icon-refresh" @click="searchChangeS" circle></el-button>
<el-button icon="Search" @click="searchHide" circle></el-button> </el-tooltip>
<el-tooltip content="重置表格搜索" placement="left">
<el-button icon="CircleClose" @click="ResetTableSearch" circle></el-button>
</el-tooltip>
<el-tooltip content="表格设置" placement="bottom">
<el-button icon="Operation" @click="showdrawer(true)" circle></el-button>
</el-tooltip>
<el-tooltip content="高级搜索" placement="bottom">
<el-button icon="Search" @click="searchHide" circle></el-button>
</el-tooltip>
</div> </div>
</div> </div>
</el-row> </el-row>
@ -139,13 +151,17 @@
</div> </div>
</basic-container> </basic-container>
<!-- 列表配置显示 --> <!-- 列表配置显示 -->
<edittablehead
<!-- <edittablehead
v-for="columnList in columnLists"
:key="columnList"
v-show="columnListName == columnList"
@closce="showdrawer" @closce="showdrawer"
:drawerShow="drawerShow" :drawerShow="drawerShow"
:columnList="details.columnListPublic" :columnList="details.columnListPublic"
v-model="details.columnListPublic" v-model="details.columnListPublic"
:columnListName="columnListName" :columnListName="columnListName"
></edittablehead> ></edittablehead> -->
</template> </template>
<script> <script>
export default { export default {
@ -242,6 +258,19 @@ const UserPermissions = ref(''); //当前人身份
const workOrderStatus = ref(30); // const workOrderStatus = ref(30); //
const PageLoading = ref(false); //loading const PageLoading = ref(false); //loading
const columnListName = ref('columnList'); const columnListName = ref('columnList');
const columnLists = [
'columnList',
'columnList1',
'columnList2',
'columnList3',
'columnList4',
'columnList5',
'columnList6',
'columnList7',
'columnList8',
'columnList9',
'columnList10',
];
/** /**
* 人身份 * 人身份
* Warehouse_customer_service 仓库客服 * Warehouse_customer_service 仓库客服
@ -581,11 +610,13 @@ const showdrawer = _flag => {
}; };
/** 表格表头输入框搜索 */ /** 表格表头输入框搜索 */
const inputsc = (index, row) => { const inputsc = (index, row) => {
console.log(details.query, 'details.query');
let _Obj = MatchCurrentMenu(); // let _Obj = MatchCurrentMenu(); //
_Obj.request = true; // _Obj.request = true; //
_Obj.query = deepClone(details.query); _Obj.query = details.query;
processRowPropertyName(index, row, _Obj.query); processRowPropertyName(index, row, _Obj.query);
tabChenge(TabPermissions.value); // PublicDataRequest(TabPermissions.value); //
}; };
/** 表格表头时间选择 */ /** 表格表头时间选择 */
@ -613,7 +644,7 @@ const selectionChange = list => {
}; };
// //
const searchChange = () => { const searchChange = () => {
tabChenge(); PublicDataRequest();
}; };
// //
@ -621,16 +652,21 @@ const searchChangeS = () => {
details.search = false; // details.search = false; //
let _Obj = MatchCurrentMenu(); let _Obj = MatchCurrentMenu();
_Obj.request = true; _Obj.request = true;
tabChenge(TabPermissions.value); PublicDataRequest(TabPermissions.value);
}; };
// //
const searchReset = () => { const ResetTableSearch = async () => {
details.query = {}; let _Obj = MatchCurrentMenu();
details.page.currentPage = 1; _Obj.request = true;
handleClearTableQuery(details.columnList); await handleClearTableQuery(details.columnListPublic);
onLoad(); let _query = await getQuery(); //
console.log(_query, '查询条件');
_Obj = {};
_query = {};
PublicDataRequest(TabPermissions.value, true);
}; };
//
const searchReset = () => {};
// //
const searchHide = () => { const searchHide = () => {
console.log(details); console.log(details);
@ -709,7 +745,9 @@ const Roleverification = () => {
console.log('内部执行完毕'); console.log('内部执行完毕');
console.log(matchingItem, '匹配出来的角色'); console.log(matchingItem, '匹配出来的角色');
}; };
onMounted(() => {
autoscaling();
})
// //
const onLoad = () => {}; const onLoad = () => {};
/** /**
@ -720,7 +758,7 @@ const PageOnlaod = async () => {
try { try {
await Dictionaryrequest(); // await Dictionaryrequest(); //
await Roleverification(); // await Roleverification(); //
tabChenge(TabPermissions.value); // PublicDataRequest(TabPermissions.value); //
} catch (error) { } catch (error) {
console.log(error); console.log(error);
} }
@ -756,11 +794,16 @@ const PagingDataProcessing = () => {
* @param {number} value 当前点击的tab的value * @param {number} value 当前点击的tab的value
* @return {void} 无返回值 * @return {void} 无返回值
*/ */
const tabChenge = async value => { const tabChenge = async (value, Reset) => {
let _Obj = await MatchCurrentMenu(); //
_Obj.query = await deepClone(details.query); //
TabPermissions.value = value; //
PublicDataRequest(value, Reset); //
};
const PublicDataRequest = async (value, Reset) => {
try { try {
TabPermissions.value = value; //
await MenuHeaderProcessing(value); // await MenuHeaderProcessing(value); //
await Processingworkorderstatus(value); // await Processingworkorderstatus(value); //
// {_state}truefalse // {_state}truefalse
let _state = PagingDataProcessing(); let _state = PagingDataProcessing();
if (!_state) { if (!_state) {
@ -785,7 +828,7 @@ const tabChenge = async value => {
// //
const processDataFn = dataProcessingMap[value] || Publicaccessdata; const processDataFn = dataProcessingMap[value] || Publicaccessdata;
await processDataFn(); // 使await await processDataFn(Reset); // 使await
} catch (error) { } catch (error) {
console.error('An error occurred:', error); console.error('An error occurred:', error);
} finally { } finally {
@ -844,7 +887,7 @@ const sizeChange = value => {
_Obj.pageSize = value; // _Obj.pageSize = value; //
_Obj.currentPage = 1; // _Obj.currentPage = 1; //
updatePageDetails(value, 1); // updatePageDetails(value, 1); //
tabChenge(TabPermissions.value); PublicDataRequest(TabPermissions.value);
}; };
/** 页码改变执行的回调 */ /** 页码改变执行的回调 */
@ -853,36 +896,36 @@ const currentChange = value => {
_Obj.request = true; // _Obj.request = true; //
_Obj.currentPage = value; // _Obj.currentPage = value; //
updatePageDetails(_Obj.pageSize, value); // updatePageDetails(_Obj.pageSize, value); //
tabChenge(TabPermissions.value); // PublicDataRequest(TabPermissions.value); //
}; };
/** /**
* @description: 公共菜单数据处理 * @description: 公共菜单数据处理
* @param {object} data 接收公共菜单数据 * @param {object} data 接收公共菜单数据
*/ */
const PublicDataProcessing = data => { const PublicDataProcessing = data => {
const { records, total, size, current } = data; const { records, total, size, current } = data;
const matchedTab = TabList.value.find(tab => tab.name === TabPermissions.value);
// details // details
details.data = records; details.data = records;
details.page = { details.page = {
total, total,
pageSize: size, pageSize: size,
currentPage: current currentPage: current,
}; };
// TabList // TabList
const matchedTab = TabList.value.find(tab => tab.name === TabPermissions.value);
if (matchedTab) { if (matchedTab) {
details.query = matchedTab.query; //
console.log(matchedTab.query, '重新把缓存的条件赋值给搜索');
Object.assign(matchedTab, { Object.assign(matchedTab, {
DataList: records, DataList: records,
total, total,
pageSize: size, pageSize: size,
currentPage: current, currentPage: current,
request: !(records?.length > 0),//falsetrue request: !(records?.length > 0), //falsetrue
}); });
console.log(matchedTab, '匹配出来的公共菜单'); console.log(matchedTab, '匹配出来的公共菜单');
} }
@ -975,110 +1018,68 @@ const getQuery = () => {
}; };
/** /**
* @description: 待回复菜单数据请求 * @description 通用函数用于处理数据请求包含待回复理赔金额未出申诉超时未处理
* @return {Object} 包含待回复菜单数据的对象 * @param {Function} fetchFunction - 用于执行具体数据请求的函数
* @param {boolean} [reset=false] - 控制是否重置查询条件的标志默认值为 false
* @returns {Promise<void>} 不返回任何内容仅执行数据请求和处理
*/ */
const DataAwaitingReplyData = async () => { const fetchData = async (fetchFunction, reset) => {
try { try {
let _submitData = { let _submitData = {
current: details.page.currentPage, // current: details.page.currentPage, //
size: details.page.pageSize, // size: details.page.pageSize, //
...getQuery(), // ...(reset ? {} : getQuery()), // reset
}; };
let _res = await $_getProcessor(_submitData);
console.log(_res, '待回复菜单数据请求'); let _res = await fetchFunction(_submitData);
console.log(_res);
const { code, data } = _res.data; const { code, data } = _res.data;
if (code !== 200) { if (code !== 200) {
return; return;
} }
DataAndStateProcessing(data); //
DataAndStateProcessing(data); //
} catch (error) { } catch (error) {
console.log(error); console.log(error);
} finally {
} }
}; };
/**
* @description: 待回复菜单数据请求
*/
const DataAwaitingReplyData = async Reset => {
await fetchData($_getProcessor, Reset);
};
/** /**
* @description: 理赔金额未出菜单数据请求 * @description: 理赔金额未出菜单数据请求
* @return {Object} 包含待回复菜单数据的对象
*/ */
const ClaimAmountData = async () => { const ClaimAmountData = async Reset => {
try { await fetchData($_listSettlement, Reset);
let _Obj = MatchCurrentMenu(); //
let _submitData = {
current: details.page.currentPage, //
size: details.page.pageSize, //
...getQuery(), //
};
let _res = await $_listSettlement(_submitData);
console.log(_res, '理赔金额未出菜单数据请求');
const { code, data } = _res.data;
if (code !== 200) {
return;
}
DataAndStateProcessing(data); //
} catch (error) {
console.log(error);
} finally {
}
}; };
/** /**
* @description: 申诉菜单数据请求 * @description: 申诉菜单数据请求
* @return {Object} 包含申诉菜单数据的对象
*/ */
const AppealData = async () => { const AppealData = async Reset => {
try { await fetchData($_listAppeal, Reset);
let _Obj = MatchCurrentMenu(); //
let _submitData = {
current: details.page.currentPage, //
size: details.page.pageSize, //
...getQuery(), //
};
let _res = await $_listAppeal(_submitData);
console.log(_res, '申诉列表菜单数据请求');
const { code, data } = _res.data;
if (code !== 200) {
return;
}
DataAndStateProcessing(data); //
} catch (error) {
console.log(error);
} finally {
}
}; };
/** /**
* @description: 超时未处理菜单数据请求 * @description: 超时未处理菜单数据请求
* @return {Object} 包含超时未处理菜单数据的对象
*/ */
const OverdueUnprocessedData = async () => { const OverdueUnprocessedData = async Reset => {
try { await fetchData($_listOwn, Reset);
let _submitData = {
current: details.page.currentPage, //
size: details.page.pageSize, //
...getQuery(), //
};
let _res = await $_listOwn(_submitData);
console.log(_res, '超时未处理表菜单数据请求');
const { code, data } = _res.data;
if (code !== 200) {
return;
}
DataAndStateProcessing(data); //
} catch (error) {
console.log(error);
} finally {
}
}; };
/** /**
* @description: 公共数据请求包含全部待处理处理中处理完毕客服介入待审核完结 * @description: 公共数据请求包含全部待处理处理中处理完毕客服介入待审核完结
*/ */
const Publicaccessdata = async () => { const Publicaccessdata = async Reset => {
try { try {
let _submitData = { let _submitData = {
workOrderStatus: workOrderStatus.value, // workOrderStatus: workOrderStatus.value, //
current: details.page.currentPage, // current: details.page.currentPage, //
size: details.page.pageSize, // size: details.page.pageSize, //
...getQuery(), // ...(Reset ? {} : getQuery()), // reset
}; };
let _res = await $_getList(_submitData); let _res = await $_getList(_submitData);
const { code, data } = _res.data; const { code, data } = _res.data;
@ -1087,6 +1088,7 @@ const Publicaccessdata = async () => {
} }
DataAndStateProcessing(data); // DataAndStateProcessing(data); //
console.log(_res, '公共数据菜单=:' + TabPermissions.value); console.log(_res, '公共数据菜单=:' + TabPermissions.value);
console.log(TabList.value, '公共菜单');
} catch (error) { } catch (error) {
console.log(error); console.log(error);
} finally { } finally {

100
src/views/aftersales/aftersalesWorkOrderend.vue

@ -536,7 +536,7 @@
<el-tabs <el-tabs
type="border-card" type="border-card"
:class="{ :class="{
'Reason_arbitration_tip': ReasonarbClass, Reason_arbitration_tip: ReasonarbClass,
'demo-tabs Reason_arbitration': true, 'demo-tabs Reason_arbitration': true,
}" }"
> >
@ -744,11 +744,13 @@
<div class="img" v-if="item.img"> <div class="img" v-if="item.img">
<el-image <el-image
:src="item.img" v-for="(item, index) in item.imgList"
:key="index"
:src="item"
:zoom-rate="1.2" :zoom-rate="1.2"
:max-scale="7" :max-scale="7"
:min-scale="0.2" :min-scale="0.2"
:preview-src-list="item.imgList" :preview-src-list="[item]"
:initial-index="4" :initial-index="4"
fit="cover" fit="cover"
/> />
@ -805,7 +807,8 @@
:action="doubledCount" :action="doubledCount"
:headers="headers" :headers="headers"
:on-success="fellSuccess" :on-success="fellSuccess"
:limit="1" :limit="3"
multiple
> >
<template #trigger> <template #trigger>
<el-button type="primary" class="el-fil">上传附件</el-button> <el-button type="primary" class="el-fil">上传附件</el-button>
@ -1356,7 +1359,7 @@ const onLoad = async () => {
} }
}); });
FangAddList.value.forEach(item => { FangAddList.value.forEach(item => {
item.responsibilityRatio = item.responsibilityRatio + '%'; item.responsibilityRatio =item.responsibilityRatio? item.responsibilityRatio + '%':item.responsibilityRatio;
}); });
} }
companyProportion.value = 100 - sum; companyProportion.value = 100 - sum;
@ -1455,18 +1458,24 @@ watch($route, (to, from) => {
const Fileidentifier = val => { const Fileidentifier = val => {
if (val) { if (val) {
const url = val; const url = val;
//
const fileName = url.substring(url.lastIndexOf('/') + 1); const fileName = url.substring(url.lastIndexOf('/') + 1);
const extension = fileName.substring(fileName.lastIndexOf('.') + 1); //
const extension = fileName.substring(fileName.lastIndexOf('.') + 1).toLowerCase();
//
if (extension === 'mp4') { if (extension === 'mp4') {
return 'mp4'; return 'mp4';
} }
if (extension === 'png') { if (extension === 'png' || extension === 'jpg' || extension === 'jpeg') {
return 'png'; return 'image'; // 'png' 'image'
} }
if (extension === 'docx') { if (extension === 'docx') {
return 'docx'; return 'docx';
} }
return undefined; // undefined
// undefined
return undefined;
} }
}; };
// //
@ -1477,23 +1486,68 @@ const Chathistory = res => {
Msgtextarea.value = ''; // Msgtextarea.value = ''; //
MessageContent.value = []; // MessageContent.value = []; //
// const updateMessageContent = (records, identifying) => {
// records.forEach(item => {
// const filetype = Fileidentifier(item.pictureUrl);
// console.log(filetype, '');
// MessageContent.value.push({
// time: item.createTime, //
// content: item.processingResults, //
// name: item.addDepartment, //
// username: item.processorName, //
// img: filetype === 'png' ? item.pictureUrl : '',
// file: filetype === 'docx' ? item.pictureUrl : '',
// mp4: filetype === 'mp4' ? item.pictureUrl : '',
// imgList: [filetype === 'png' ? item.pictureUrl : ''],
// difference: item.difference,
// identifying: identifying, //
// });
// });
// console.log( MessageContent.value,' MessageContent.value');
// setTimeout(() => {
// const container = scrollContainer.value;
// if (container) {
// container.scrollTop = container.scrollHeight;
// }
// }, 0);
// };
const updateMessageContent = (records, identifying) => { const updateMessageContent = (records, identifying) => {
records.forEach(item => { records.forEach(item => {
const filetype = Fileidentifier(item.pictureUrl); const filetype = Fileidentifier(item.pictureUrl);
console.log(filetype, '文件类型');
// ';'
let imgList = [];
if (filetype === 'image') {
// URL
if (item.pictureUrl.includes(',')) {
imgList = item.pictureUrl.split(',').filter(url => url.trim() !== '');
} else {
//
imgList = [item.pictureUrl];
}
}
//
MessageContent.value.push({ MessageContent.value.push({
time: item.createTime, // time: item.createTime, //
content: item.processingResults, // content: item.processingResults, //
name: item.addDepartment, // name: item.addDepartment, //
username: item.processorName, // username: item.processorName, //
img: filetype === 'png' ? item.pictureUrl : '', img: imgList.length > 0 ? imgList[0] : '', //
file: filetype === 'docx' ? item.pictureUrl : '', file: filetype === 'docx' ? item.pictureUrl : '',
mp4: filetype === 'mp4' ? item.pictureUrl : '', mp4: filetype === 'mp4' ? item.pictureUrl : '',
imgList: [filetype === 'png' ? item.pictureUrl : ''], imgList: imgList, //
difference: item.difference, difference: item.difference,
identifying: identifying, // identifying: identifying, //
}); });
}); });
console.log(MessageContent.value, 'MessageContent.value');
//
setTimeout(() => { setTimeout(() => {
const container = scrollContainer.value; const container = scrollContainer.value;
if (container) { if (container) {
@ -1501,7 +1555,6 @@ const Chathistory = res => {
} }
}, 0); }, 0);
}; };
const handleError = error => { const handleError = error => {
console.log(error, 'error'); console.log(error, 'error');
}; };
@ -2771,11 +2824,18 @@ const CustomerServiceCompleted = () => {
font-size: 12px; font-size: 12px;
} }
.img { .img {
width: 50px; width: 100%;
height: 50px; height:20%;
overflow: scroll;
.el-image{
width: 20%;
height: 100%;
margin: 4px;
}
img { img {
width: 100%; width: 100%;
height: 100%; height: 50px;
} }
} }
.mp4 { .mp4 {

Loading…
Cancel
Save