qb 5 months ago
parent
commit
b1e756328a
  1. 11
      src/option/aftersales/vueTvemp.js
  2. 121
      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,
head: false,
},
{
prop: 'ceator',
label: '创建人',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'remarks',

121
src/views/aftersales/aftersalesWorkOrderInfo.vue

@ -567,7 +567,10 @@
<el-button type="primary" v-if="PermissionButton.Processing_results" @click="addingRecord"
>处理结果
</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 type="primary" v-if="PermissionButton.Confirm_review" @click="ConfirmReview"
@ -679,7 +682,7 @@
<el-icon> <ChatRound /> </el-icon>:<span> {{ item.content }}</span>
</div>
<div class="img" v-if="item.img">
<!-- <div class="img" v-if="item.img">
<el-image
:src="item.img"
:zoom-rate="1.2"
@ -689,6 +692,19 @@
:initial-index="4"
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 class="mp4" @click="AddVideoPreview(index)" v-if="item.mp4">
<span
@ -1000,19 +1016,27 @@ onMounted(() => {
// appeal.value && AppealReview.value,
//
const Fileidentifier = val => {
const url = val;
const fileName = url.substring(url.lastIndexOf('/') + 1);
const extension = fileName.substring(fileName.lastIndexOf('.') + 1);
if (extension === 'mp4') {
return 'mp4';
}
if (extension === 'png') {
return 'png';
}
if (extension === 'docx') {
return 'docx';
if (val) {
const url = val;
//
const fileName = url.substring(url.lastIndexOf('/') + 1);
//
const extension = fileName.substring(fileName.lastIndexOf('.') + 1).toLowerCase();
//
if (extension === 'mp4') {
return 'mp4';
}
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 => {
@ -1023,23 +1047,55 @@ const Chathistory = res => {
})
.then(res => {
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 => {
if (item.pictureUrl) {
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({
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 : ''],
time: item.createTime, //
content: item.processingResults, //
name: item.addDepartment, //
username: item.processorName, //
img: imgList.length > 0 ? imgList[0] : '', //
file: filetype === 'docx' ? item.pictureUrl : '',
mp4: filetype === 'mp4' ? item.pictureUrl : '',
imgList: imgList, //
difference: item.difference,
identifying: false, //
identifying: identifying, //
});
});
setTimeout(() => {
const container = scrollContainer.value;
if (container) {
@ -1167,10 +1223,9 @@ const onLoad = async () => {
} else {
warehouseIdState.value = false;
}
console.log(res.data.data.createUser,'工单创建人');
console.log(userInfo.content.user_id,'系统登录人');
console.log(res.data.data.createUser, '工单创建人');
console.log(userInfo.content.user_id, '系统登录人');
Indexform.value['result'] = [];
Indexform.value['processor'] = [];
Indexform.value['processorEntityList'] = []; //
@ -1236,11 +1291,11 @@ const onLoad = async () => {
console.log(res, '发现环节');
ProcessingResults.value = res.data.data;
});
//
//
if (res.data.data.processingResultsVO.processingMoneyEntityList) {
ProcessingList.value = res.data.data.processingResultsVO.processingMoneyEntityList.map(
item => {
Indexform.value.result.push(item.resultType);
Indexform.value.result.push(item.resultType);
return {
money: item.money + '元',
state: item.resultType,
@ -1339,12 +1394,12 @@ const isProcessingResults = () => {
}
return false;
};
const isProcessingResultssub=()=>{
const isProcessingResultssub = () => {
if (workOrderStatus == '90') {
return true;
}
return false;
}
};
//
const isWorkOrderCompletion = () => {

206
src/views/aftersales/aftersalesWorkOrderTemp.vue

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

100
src/views/aftersales/aftersalesWorkOrderend.vue

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

Loading…
Cancel
Save