Browse Source

修复聊天记无法获取

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

1
src/api/aftersales/aftersalesWorkOrder.js

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

83
src/views/aftersales/aftersalesWorkOrderend.vue

@ -294,7 +294,6 @@
disabled
@input="ProportionInput"
/>
</div>
<div class="maxBox">
<span class="title">说明:</span>
@ -368,7 +367,12 @@
<!-- <el-input v-model="item.explain" placeholder="请填写说明" /> -->
</div>
<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>
@ -709,7 +713,13 @@
/>
</div>
<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>
@ -849,7 +859,7 @@ const CompensationParty = ref([
const ProcessingList = ref([]); //
//
const FangAddList = ref([
{ businessName: '', personResponsibleName: '', responsibilityRatio: '' +'%', description: '' },
{ businessName: '', personResponsibleName: '', responsibilityRatio: '' + '%', description: '' },
]);
const TransportlossList = ref([
//
@ -901,9 +911,7 @@ const details = reactive({
//
recordList,
//
recorddata: [
],
recorddata: [],
/** 页面loading */
loadingObj: {
/** 列表加载loading */
@ -961,7 +969,6 @@ const TransportChange = val => {
//
const onLoad = () => {
//
getDictionaryBiz('after_sales_visits').then(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
@ -1046,15 +1053,14 @@ const onLoad = () => {
//
let sum = 0;
FangAddList.value.forEach(item => {
item.responsibilityRatio=item.responsibilityRatio.replace(/%/g, '');
item.responsibilityRatio = item.responsibilityRatio.replace(/%/g, '');
sum = Number(item.responsibilityRatio) + sum;
});
FangAddList.value.forEach(item=>{
item.responsibilityRatio=item.responsibilityRatio+'%'
})
FangAddList.value.forEach(item => {
item.responsibilityRatio = item.responsibilityRatio + '%';
});
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(
item => {
endFrom.value.result.push(item.resultType);
@ -1071,7 +1077,6 @@ const onLoad = () => {
);
}
//
TotalClaimAmount.value = res.data.data.processingResultsVO.money;
//
@ -1110,17 +1115,16 @@ const onLoad = () => {
});
});
}
endFrom.value.arbitrate= res.data.data.reasonArbitration; //
endFrom.value.arbitrate = res.data.data.reasonArbitration; //
});
//
$_getTrackRecord({
id:$route.query.id
}).then(res=>{
console.log(res,'处理记录返回值');
details.recorddata=res.data.data.surveyRecordEntities
})
id: $route.query.id,
}).then(res => {
console.log(res, '处理记录返回值');
details.recorddata = res.data.data.surveyRecordEntities;
});
}
//
@ -1141,13 +1145,13 @@ const onLoad = () => {
getDeptWarehouse({}).then(res => {
//
console.log(res, '处理方');
localStorage.getItem('WarehouseName')
console.log(localStorage.getItem('WarehouseName'),'当前本地仓库');
localStorage.getItem('WarehouseName');
console.log(localStorage.getItem('WarehouseName'), '当前本地仓库');
res.data.data.forEach(item => {
warehouseData.value.push({
value: item.id,
label: item.name,
disabled:item.name==localStorage.getItem('WarehouseName')
disabled: item.name == localStorage.getItem('WarehouseName'),
});
});
});
@ -1190,16 +1194,15 @@ const Chathistory = () => {
MessageContent.value = []; //
Msgloading.value = false; //
console.log(res, '聊天记录');
if (res.data.data.processorVOList.length) {
msgState.value = res.data.data.processorVOList[0].processingStatus; //
}
res.data.data.surveyRecordEntities.forEach(item => {
if (item.pictureUrl) {
filetype = Fileidentifier(item.pictureUrl);
}
// MessageContent.value.push()
if (res.data.data.processorVOList) {
if (res.data.data.processorVOList.length) {
msgState.value = res.data.data.processorVOList[0].processingStatus; //
}
}
MessageContent.value.push({
time: item.createTime, //
content: item.content, //
@ -1211,6 +1214,9 @@ const Chathistory = () => {
imgList: [filetype == 'png' ? item.pictureUrl : ''],
});
});
console.log(MessageContent.value, '处理好的聊天记录');
//
setTimeout(() => {
const container = scrollContainer.value;
@ -1218,8 +1224,6 @@ const Chathistory = () => {
container.scrollTop = container.scrollHeight;
}
}, 0);
}).catch(res=>{
Msgloading.value = false; //
});
};
@ -1397,7 +1401,7 @@ const payremove = (state, val) => {
amountMoney();
};
//
const ProportionInput = (val) => {
const ProportionInput = val => {
console.log(FangAddList.value, '公司占比');
let sum = 0;
FangAddList.value.forEach(item => {
@ -1630,7 +1634,7 @@ const submit = () => {
type: 'success',
});
}
})
});
} else {
//
console.log($route.query.id, '异常ID');
@ -1683,7 +1687,8 @@ const submit = () => {
}
})
.filter(item => item !== null);
data.aftersalesProcessingResultsDTO.processingMoneyEntityList = data['processingMoneyEntityList'];
data.aftersalesProcessingResultsDTO.processingMoneyEntityList =
data['processingMoneyEntityList'];
console.log('走到了这一步');
data.aftersalesProcessingResultsDTO.workOrderId = $route.query.id; //ID
data.aftersalesProcessingResultsDTO['resultType'] = ProcessingList.value
@ -1717,7 +1722,7 @@ const submit = () => {
}
});
}
}
};
//
const replyMessage = () => {
console.log(MessageContent.value, '当前的聊天记录');
@ -2126,7 +2131,7 @@ const ViewPackageDetails = val => {
font-size: 14px;
color: #606266;
margin-top: 30px;
.title{
.title {
border: 1px solid #ccc;
padding: 2px 8px;
display: flex;

Loading…
Cancel
Save