Browse Source

修复聊天记无法获取

master
马远东 1 year ago
parent
commit
bca698a9e6
  1. 1
      src/api/aftersales/aftersalesWorkOrder.js
  2. 119
      src/views/aftersales/aftersalesWorkOrderend.vue

1
src/api/aftersales/aftersalesWorkOrder.js

@ -351,3 +351,4 @@ export const $_syncOrder = (data) => {
data data
}) })
} }
// /aftersalesWorkOrder/updateWorkList 修改 钉钉流程号、审核人、审核日期,财务理赔入账日期、操作人

119
src/views/aftersales/aftersalesWorkOrderend.vue

@ -294,7 +294,6 @@
disabled disabled
@input="ProportionInput" @input="ProportionInput"
/> />
</div> </div>
<div class="maxBox"> <div class="maxBox">
<span class="title">说明:</span> <span class="title">说明:</span>
@ -368,7 +367,12 @@
<!-- <el-input v-model="item.explain" placeholder="请填写说明" /> --> <!-- <el-input v-model="item.explain" placeholder="请填写说明" /> -->
</div> </div>
<div class="el_cwBtn"> <div class="el_cwBtn">
<el-button type="primary" v-if="item.state == 0 && UserPermissions!='职能客服'"> 财务处理 </el-button> <el-button
type="primary"
v-if="item.state == 0 && UserPermissions != '职能客服'"
>
财务处理
</el-button>
<el-button type="primary" @click="payremove(item.state, index)"> <el-button type="primary" @click="payremove(item.state, index)">
移除 移除
</el-button> </el-button>
@ -709,7 +713,13 @@
/> />
</div> </div>
<div class="msgHf"> <div class="msgHf">
<el-button type="primary" @click="replyMessage()" :disabled="$route.query.index!='0'"> 回复 </el-button> <el-button
type="primary"
@click="replyMessage()"
:disabled="$route.query.index != '0'"
>
回复
</el-button>
</div> </div>
</div> </div>
</div> </div>
@ -849,7 +859,7 @@ const CompensationParty = ref([
const ProcessingList = ref([]); // const ProcessingList = ref([]); //
// //
const FangAddList = ref([ const FangAddList = ref([
{ businessName: '', personResponsibleName: '', responsibilityRatio: '' +'%', description: '' }, { businessName: '', personResponsibleName: '', responsibilityRatio: '' + '%', description: '' },
]); ]);
const TransportlossList = ref([ const TransportlossList = ref([
// //
@ -901,9 +911,7 @@ const details = reactive({
// //
recordList, recordList,
// //
recorddata: [ recorddata: [],
],
/** 页面loading */ /** 页面loading */
loadingObj: { loadingObj: {
/** 列表加载loading */ /** 列表加载loading */
@ -961,7 +969,6 @@ const TransportChange = val => {
// //
const onLoad = () => { const onLoad = () => {
// //
getDictionaryBiz('after_sales_visits').then(res => { getDictionaryBiz('after_sales_visits').then(res => {
console.log(res, '角色字典'); console.log(res, '角色字典');
@ -995,7 +1002,7 @@ const onLoad = () => {
}); });
}); });
// //
PackageInfo.value = res.data.data.abnormalPackageVOList PackageInfo.value = res.data.data.abnormalPackageVOList;
// //
FangAddList.value = res.data.data.processorVOList FangAddList.value = res.data.data.processorVOList
@ -1046,32 +1053,30 @@ const onLoad = () => {
// //
let sum = 0; let sum = 0;
FangAddList.value.forEach(item => { FangAddList.value.forEach(item => {
item.responsibilityRatio=item.responsibilityRatio.replace(/%/g, ''); item.responsibilityRatio = item.responsibilityRatio.replace(/%/g, '');
sum = Number(item.responsibilityRatio) + sum; sum = Number(item.responsibilityRatio) + sum;
}); });
FangAddList.value.forEach(item=>{ FangAddList.value.forEach(item => {
item.responsibilityRatio=item.responsibilityRatio+'%' item.responsibilityRatio = item.responsibilityRatio + '%';
}) });
companyProportion.value = 100 - sum; companyProportion.value = 100 - sum;
if(res.data.data.processingResultsVO.processingMoneyEntityList.length){ if (res.data.data.processingResultsVO.processingMoneyEntityList.length) {
ProcessingList.value = res.data.data.processingResultsVO.processingMoneyEntityList.map( ProcessingList.value = res.data.data.processingResultsVO.processingMoneyEntityList.map(
item => { item => {
endFrom.value.result.push(item.resultType); endFrom.value.result.push(item.resultType);
return { return {
input: item.money, input: item.money,
min: 0, min: 0,
max: 9999999999999999999999999999, max: 9999999999999999999999999999,
state: item.resultType, state: item.resultType,
payment: item.compensationMethod, payment: item.compensationMethod,
name: item.resultTypeName, name: item.resultTypeName,
text: item.compensationMethodName, text: item.compensationMethodName,
}; };
} }
); );
} }
// //
TotalClaimAmount.value = res.data.data.processingResultsVO.money; TotalClaimAmount.value = res.data.data.processingResultsVO.money;
// //
@ -1081,7 +1086,7 @@ const onLoad = () => {
// //
// //
if (res.data.data.completionRecipientEntityList.length > 0) { if (res.data.data.completionRecipientEntityList.length > 0) {
CompensationParty.value = []; CompensationParty.value = [];
res.data.data.completionRecipientEntityList.forEach((item, index) => { res.data.data.completionRecipientEntityList.forEach((item, index) => {
@ -1110,17 +1115,16 @@ const onLoad = () => {
}); });
}); });
} }
endFrom.value.arbitrate= res.data.data.reasonArbitration; // endFrom.value.arbitrate = res.data.data.reasonArbitration; //
}); });
// //
$_getTrackRecord({ $_getTrackRecord({
id:$route.query.id id: $route.query.id,
}).then(res=>{ }).then(res => {
console.log(res,'处理记录返回值'); console.log(res, '处理记录返回值');
details.recorddata=res.data.data.surveyRecordEntities details.recorddata = res.data.data.surveyRecordEntities;
}) });
} }
// //
@ -1141,13 +1145,13 @@ const onLoad = () => {
getDeptWarehouse({}).then(res => { getDeptWarehouse({}).then(res => {
// //
console.log(res, '处理方'); console.log(res, '处理方');
localStorage.getItem('WarehouseName') localStorage.getItem('WarehouseName');
console.log(localStorage.getItem('WarehouseName'),'当前本地仓库'); console.log(localStorage.getItem('WarehouseName'), '当前本地仓库');
res.data.data.forEach(item => { res.data.data.forEach(item => {
warehouseData.value.push({ warehouseData.value.push({
value: item.id, value: item.id,
label: item.name, label: item.name,
disabled:item.name==localStorage.getItem('WarehouseName') disabled: item.name == localStorage.getItem('WarehouseName'),
}); });
}); });
}); });
@ -1190,16 +1194,15 @@ const Chathistory = () => {
MessageContent.value = []; // MessageContent.value = []; //
Msgloading.value = false; // Msgloading.value = false; //
console.log(res, '聊天记录'); console.log(res, '聊天记录');
if (res.data.data.processorVOList.length) {
msgState.value = res.data.data.processorVOList[0].processingStatus; //
}
res.data.data.surveyRecordEntities.forEach(item => { res.data.data.surveyRecordEntities.forEach(item => {
if (item.pictureUrl) { if (item.pictureUrl) {
filetype = Fileidentifier(item.pictureUrl); filetype = Fileidentifier(item.pictureUrl);
} }
if (res.data.data.processorVOList) {
// MessageContent.value.push() if (res.data.data.processorVOList.length) {
msgState.value = res.data.data.processorVOList[0].processingStatus; //
}
}
MessageContent.value.push({ MessageContent.value.push({
time: item.createTime, // time: item.createTime, //
content: item.content, // content: item.content, //
@ -1211,6 +1214,9 @@ const Chathistory = () => {
imgList: [filetype == 'png' ? item.pictureUrl : ''], imgList: [filetype == 'png' ? item.pictureUrl : ''],
}); });
}); });
console.log(MessageContent.value, '处理好的聊天记录');
// //
setTimeout(() => { setTimeout(() => {
const container = scrollContainer.value; const container = scrollContainer.value;
@ -1218,8 +1224,6 @@ const Chathistory = () => {
container.scrollTop = container.scrollHeight; container.scrollTop = container.scrollHeight;
} }
}, 0); }, 0);
}).catch(res=>{
Msgloading.value = false; //
}); });
}; };
@ -1397,7 +1401,7 @@ const payremove = (state, val) => {
amountMoney(); amountMoney();
}; };
// //
const ProportionInput = (val) => { const ProportionInput = val => {
console.log(FangAddList.value, '公司占比'); console.log(FangAddList.value, '公司占比');
let sum = 0; let sum = 0;
FangAddList.value.forEach(item => { FangAddList.value.forEach(item => {
@ -1630,7 +1634,7 @@ const submit = () => {
type: 'success', type: 'success',
}); });
} }
}) });
} else { } else {
// //
console.log($route.query.id, '异常ID'); console.log($route.query.id, '异常ID');
@ -1683,7 +1687,8 @@ const submit = () => {
} }
}) })
.filter(item => item !== null); .filter(item => item !== null);
data.aftersalesProcessingResultsDTO.processingMoneyEntityList = data['processingMoneyEntityList']; data.aftersalesProcessingResultsDTO.processingMoneyEntityList =
data['processingMoneyEntityList'];
console.log('走到了这一步'); console.log('走到了这一步');
data.aftersalesProcessingResultsDTO.workOrderId = $route.query.id; //ID data.aftersalesProcessingResultsDTO.workOrderId = $route.query.id; //ID
data.aftersalesProcessingResultsDTO['resultType'] = ProcessingList.value data.aftersalesProcessingResultsDTO['resultType'] = ProcessingList.value
@ -1704,7 +1709,7 @@ const submit = () => {
delete data.aftersalesProcessingResultsDTO.id; //ID delete data.aftersalesProcessingResultsDTO.id; //ID
data.aftersalesProcessingResultsDTO.warehouseId = info.warehouseId; //ID data.aftersalesProcessingResultsDTO.warehouseId = info.warehouseId; //ID
console.log(data, '处理好的数据'); console.log(data, '处理好的数据');
$_addProcessingResults(data).then(res => { $_addProcessingResults(data).then(res => {
console.log(res, '提交后的参数'); console.log(res, '提交后的参数');
$router.push('/aftersales/aftersalesWorkOrder'); $router.push('/aftersales/aftersalesWorkOrder');
@ -1717,7 +1722,7 @@ const submit = () => {
} }
}); });
} }
} };
// //
const replyMessage = () => { const replyMessage = () => {
console.log(MessageContent.value, '当前的聊天记录'); console.log(MessageContent.value, '当前的聊天记录');
@ -2126,7 +2131,7 @@ const ViewPackageDetails = val => {
font-size: 14px; font-size: 14px;
color: #606266; color: #606266;
margin-top: 30px; margin-top: 30px;
.title{ .title {
border: 1px solid #ccc; border: 1px solid #ccc;
padding: 2px 8px; padding: 2px 8px;
display: flex; display: flex;
@ -2263,7 +2268,7 @@ const ViewPackageDetails = val => {
margin-top: 16px; margin-top: 16px;
display: flex; display: flex;
align-items: center; align-items: center;
span { span {
width: 120px; width: 120px;
font-size: 14px; font-size: 14px;

Loading…
Cancel
Save