Browse Source

修复已知bug

dev-xx
马远东 5 months ago
parent
commit
2e9e2a19ce
  1. 118
      src/components/Tableexportcomponent/Tableexportcomponent.vue
  2. 86
      src/option/aftersales/vueTvemp.js
  3. 64
      src/option/reportforms/DeliveryDetailsVtwo.js
  4. 4
      src/router/views/index.js
  5. 6880
      src/views/aftersales/aftersalesWorkOrder.vue
  6. 4
      src/views/aftersales/aftersalesWorkOrderAdd.vue
  7. 61
      src/views/aftersales/aftersalesWorkOrderInfo.vue
  8. 6759
      src/views/aftersales/aftersalesWorkOrderTemp.vue
  9. 731
      src/views/aftersales/aftersalesWorkOrderend.vue
  10. 4
      src/views/reportforms/DeliveryDetailsVtwo.vue

118
src/components/Tableexportcomponent/Tableexportcomponent.vue

@ -3,9 +3,15 @@
<span>表格导出名称</span>
<el-input
v-model="exportFileName"
placeholder="请输入导出的表格名称"
placeholder="请输入导出的表格名称,不填写则默认导出名称"
style="margin-bottom: 10px"
/>
<el-tabs v-model="radio" class="el_TablePage_radio">
<el-tab-pane label="当前页全部导出" name="1"></el-tab-pane>
<el-tab-pane label="当前页勾选导出" name="2"></el-tab-pane>
</el-tabs>
<el-transfer
v-model="checkedColumns"
:data="transferData"
@ -26,13 +32,17 @@ import { ref, computed } from 'vue';
import { ElMessage } from 'element-plus';
import * as XLSX from 'xlsx';
import { Download } from '@element-plus/icons-vue';
const radio = ref('1');
//
const props = defineProps({
data: {
type: Array,
required: true,
},
checkedData: {
type: Array,
required: true,
},
menuData: {
type: Array,
required: true,
@ -42,12 +52,13 @@ const props = defineProps({
// menuData 便 setup
const menuData = ref([...props.menuData]);
//
const removeColumn = (columnLabel) => {
const removeColumn = columnLabel => {
const index = menuData.value.findIndex(item => item.label === columnLabel);
if (index !== -1) {
menuData.value.splice(index, 1);
}
};
// ''
removeColumn('序号');
removeColumn('操作');
@ -81,96 +92,40 @@ const transferProps = {
// Excel
const exportToExcel = () => {
//
if (checkedColumns.value.length === 0) {
ElMessage.warning('请选择要导出的字段');
return;
}
//
if (!exportFileName.value) {
ElMessage({
message: '请输入导出名称',
type: 'warning',
});
return;
exportFileName.value = '默认导出名称';
}
const selectedColumns = transferData.value.filter(item =>
checkedColumns.value.includes(item.key)
);
const headers = selectedColumns.map(col => col.label);
const fields = selectedColumns.map(col => col.prop);
//
const selectedColumns = transferData.value
.filter(item => checkedColumns.value.includes(item.key))
.map(col => ({ label: col.label, prop: col.prop }));
//
let exportData = props.data.map(item => {
return fields.map(field => {
const value = item[field];
return value !== undefined && value !== null ? value : '';
});
});
//
exportData = fillEmptyCells(exportData);
const exportData = (radio.value == 1 ? props.data : props.checkedData).map(item =>
selectedColumns.map(col =>
item[col.prop] !== undefined && item[col.prop] !== null ? item[col.prop] : ''
)
);
//
exportData.unshift(headers);
exportData.unshift(selectedColumns.map(col => col.label));
//
// 簿
const worksheet = XLSX.utils.aoa_to_sheet(exportData);
//
applyStyles(worksheet, exportData);
const workbook = XLSX.utils.book_new();
XLSX.utils.book_append_sheet(workbook, worksheet, exportFileName.value);
//
//
XLSX.writeFile(workbook, `${exportFileName.value}.xlsx`);
};
//
const fillEmptyCells = (data) => {
return data;
};
//
const applyStyles = (worksheet, data) => {
const rowCount = data.length;
const colCount = data[0].length;
//
const colWidths = new Array(colCount).fill(0);
data.forEach(row => {
row.forEach((cell, index) => {
const cellWidth = cell ? cell.toString().length : 0;
if (cellWidth > colWidths[index]) {
colWidths[index] = cellWidth;
}
});
});
//
const wscols = colWidths.map(width => ({ wch: Math.min(width + 2, 50) })); // 250
worksheet['!cols'] = wscols;
//
const range = XLSX.utils.decode_range(worksheet['!ref']);
for (let col = range.s.c; col <= range.e.c; col++) {
for (let row = range.s.r; row <= range.e.r; row++) {
const cellRef = XLSX.utils.encode_cell({ c: col, r: row });
if (!worksheet[cellRef]) worksheet[cellRef] = { v: '' };
if (!worksheet[cellRef].s) worksheet[cellRef].s = {};
worksheet[cellRef].s.alignment = {
vertical: 'center',
horizontal: 'center',
wrapText: true,
};
//
if (row === 0) {
worksheet[cellRef].s.font = { bold: true };
}
}
}
};
</script>
<style lang="scss" scoped>
@ -186,4 +141,15 @@ const applyStyles = (worksheet, data) => {
text-align: right;
margin-top: 10px;
}
</style>
:deep(.el_TablePage_radio) {
width: 100%;
display: flex;
align-items: center;
justify-content: space-evenly;
height: 51px;
border: 1px solid #ccc;
.is-checked {
border-color: none;
}
}
</style>

86
src/option/aftersales/vueTvemp.js

@ -207,28 +207,29 @@ export const columnList = [
// sortable: true,
// head: false,
// },
// {
// prop: 'a',
// label: '处理结果',
// type: 1,
// values: '',
// width: '150',
// checkarr: [],
// fixed: false,
// sortable: true,
// head: false,
// },
// {
// prop: 'a',
// label: '处理结果—理赔金额',
// type: 1,
// values: '',
// width: '150',
// checkarr: [],
// fixed: false,
// sortable: true,
// head: false,
// },
{
prop: 'resultTypes',
label: '处理结果',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'totalAmountNum',
label: '处理结果—理赔金额',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
isshowSummary: true, //开启统计
},
// {
// prop: 'a',
// label: '营业部处理客服',
@ -329,17 +330,7 @@ export const columnList = [
sortable: true,
head: false,
},
{
prop: 'totalAmount',
label: '赔款金额',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'operator',
@ -1846,16 +1837,17 @@ export const columnList2 = [
head: false,
},
{
prop: 'a', //discoveryNode
label: '工单创建仓',
prop: 'ceator',
label: '创建人',
type: 1,
values: '',
width: '140',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'workOrderNumber',
@ -1969,17 +1961,17 @@ export const columnList2 = [
sortable: true,
head: false,
},
{
prop: 'a',
label: '责任方',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
// {
// prop: 'a',
// label: '责任方',
// type: 1,
// values: '',
// width: '150',
// checkarr: [],
// fixed: false,
// sortable: true,
// head: false,
// },
{
prop: 'createTime',
label: '工单创建时间',

64
src/option/reportforms/DeliveryDetailsVtwo.js

@ -39,7 +39,7 @@ export const columnList = [
{
prop: 'taskTime',
label: '配送日期',
type: 4,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -51,7 +51,7 @@ export const columnList = [
{
prop: 'warehouseName',
label: '仓库',
type: 2,
type:1,
values: '',
width: '150',
checkarr: [],
@ -62,7 +62,7 @@ export const columnList = [
{
prop: 'brand',
label: '品牌',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -74,7 +74,7 @@ export const columnList = [
{
prop: 'type',
label: '配送类型',
type: 3,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -85,7 +85,7 @@ export const columnList = [
{
prop: 'kind',
label: '配送种类',
type: 3,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -96,7 +96,7 @@ export const columnList = [
{
prop: 'vehicleName',
label: '配送车辆',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -107,7 +107,7 @@ export const columnList = [
{
prop: 'driverName',
label: '配送司机',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -118,7 +118,7 @@ export const columnList = [
{
prop: 'distributionCompany',
label: '配送公司',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -129,7 +129,7 @@ export const columnList = [
{
prop: 'drConsignee',
label: '客户名称',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -140,7 +140,7 @@ export const columnList = [
{
prop: 'deliveryPhone',
label: '客户电话',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -151,7 +151,7 @@ export const columnList = [
{
prop: 'deliveryAddress',
label: '地址',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -162,7 +162,7 @@ export const columnList = [
{
prop: 'consignee',
label: '运单收货单位',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -173,7 +173,7 @@ export const columnList = [
{
prop: 'consigneeName',
label: '运单收货人',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -184,7 +184,7 @@ export const columnList = [
{
prop: 'consigneeMobile',
label: '运单收货电话',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -195,7 +195,7 @@ export const columnList = [
{
prop: 'waybillNo',
label: '运单号',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -228,7 +228,7 @@ export const columnList = [
{
prop: 'customerTrain',
label: '客户车次号',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -250,7 +250,7 @@ export const columnList = [
{
prop: 'firsts',
label: '一级品',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -261,7 +261,7 @@ export const columnList = [
{
prop: 'decond',
label: '二级品',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -272,7 +272,7 @@ export const columnList = [
{
prop: 'thirdProduct',
label: '三级品',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -283,7 +283,7 @@ export const columnList = [
{
prop: 'materialCode',
label: '物料编码',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -294,7 +294,7 @@ export const columnList = [
{
prop: 'materialName',
label: '物料名称',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -305,7 +305,7 @@ export const columnList = [
{
prop: 'startWar',
label: '始发仓',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -316,7 +316,7 @@ export const columnList = [
{
prop: 'startWarInTime',
label: '始发仓入库日期',
type: 4,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -327,7 +327,7 @@ export const columnList = [
{
prop: 'startWarOutTime',
label: '始发仓发货日期',
type: 4,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -338,7 +338,7 @@ export const columnList = [
{
prop: 'warehouseEntryTimeEnd',
label: '入库时间',
type: 4,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -361,7 +361,7 @@ export const columnList = [
{
prop: 'unloadTime',
label: '装车时间',
type: 4,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -372,7 +372,7 @@ export const columnList = [
{
prop: 'unAdministratorsName',
label: '装车人',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -383,7 +383,7 @@ export const columnList = [
{
prop: 'driverSigning',
label: '司机签收状态',
type: 3,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -394,7 +394,7 @@ export const columnList = [
{
prop: 'sjsigningTime',
label: '签收时间',
type: 4,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -405,7 +405,7 @@ export const columnList = [
{
prop: 'ldsSigneeName',
label: '签收人',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -450,7 +450,7 @@ export const columnList = [
{
prop: 'signingTime',
label: '文员审核时间',
type: 4,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -461,7 +461,7 @@ export const columnList = [
{
prop: 'examineUserName',
label: '审核人名称',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],

4
src/router/views/index.js

@ -1483,7 +1483,7 @@ export default [
{
meta: {
i18n: 'dict',
keepAlive: false,
keepAlive: true,
},
path: '/aftersales/aftersalesWorkOrderInfo',
name: '工单详情查看',
@ -1550,7 +1550,7 @@ export default [
{
meta: {
i18n: 'dict',
keepAlive: false,
keepAlive: true,
},
path: '/aftersales/aftersalesWorkOrderend',
name: '工单完结',

6880
src/views/aftersales/aftersalesWorkOrder.vue

File diff suppressed because it is too large Load Diff

4
src/views/aftersales/aftersalesWorkOrderAdd.vue

@ -1135,7 +1135,7 @@ const Responsemoval = index => {
};
const calculateMaxValues = () => {
return
return;
//
let data = form.value.responsibilitiesList;
let totalUsed = data.reduce((acc, item) => acc + item.responsibilityRatio, 0);
@ -1749,7 +1749,7 @@ const onSubmit = () => {
$useStore.commit('EDIT_REFRESHITEM', {
title: 'aftersalesWorkOrder',
status: true,
});
}); //
$useStore.commit('Customer_Menu', 0); //
$useStore.commit('DEL_TAG_CURRENT'); //
$router.push({

61
src/views/aftersales/aftersalesWorkOrderInfo.vue

@ -3,8 +3,8 @@
<el-card class="box-card el_last">
<div>
<el-tabs type="border-card" class="topClass" v-model="identifying">
<el-tab-pane label="订单信息" :name="1"></el-tab-pane>
<el-tab-pane label="零担信息" :name="2"></el-tab-pane>
<el-tab-pane label="订单信息" :name="1" :disabled="identifying == 2"></el-tab-pane>
<el-tab-pane label="零担信息" :name="2" :disabled="identifying == 1"></el-tab-pane>
</el-tabs>
<el-form :model="Indexform" class="IndexFrom" ref="IndexForm" disabled>
@ -42,11 +42,7 @@
/>
</el-form-item>
<el-form-item label="创建时间" class="el_inputTop el_Workordernumber">
<el-input
v-model="Indexform.createTime"
disabled
clearable
/>
<el-input v-model="Indexform.createTime" disabled clearable />
</el-form-item>
</div>
<el-tabs type="border-card" class="PackageInformation">
@ -67,6 +63,7 @@
placement="top"
>
<el-input
v-if="identifying == 1"
v-model="item.packageCode"
placeholder="请输入包条码"
clearable
@ -314,7 +311,7 @@
<el-input v-else v-model="item.personResponsibleName" placeholder="责任人" />
</el-form-item>
<el-form-item label="责任占比" class="title">
<el-form-item label="金额(元)" class="title">
<el-input :controls="false" v-model="item.responsibilityRatio" />
</el-form-item>
@ -334,9 +331,9 @@
</el-form-item>
</div>
</template>
<div class="Proportion">
<!-- <div class="Proportion">
<span class="title">公司占比:{{ companyProportion }}%</span>
</div>
</div> -->
</div>
</el-tab-pane>
</el-tabs>
@ -805,12 +802,16 @@
</template>
</el-dialog>
</template>
<script>
export default {
name: '/aftersales/aftersalesWorkOrderInfo',
};
</script>
<script setup>
import { ElMessage, ElMessageBox } from 'element-plus';
import { useRouter, useRoute } from 'vue-router';
import { useStore } from 'vuex';
const $useStore = useStore();
import { getDictionaryBiz } from '@/api/system/dict'; //
import { getDeptWarehouse } from '@/api/basicdata/basicdataWarehouse'; //
import {
@ -827,6 +828,7 @@ import { ref, reactive, computed, onMounted } from 'vue';
import { getToken } from '@/utils/auth';
import { compressImageBlob } from '@/components/IMGcompressor/imgcompressor.js';
import { AddressClosed, deepClone } from '@/utils/util';
const $useStore = useStore();
const $router = useRouter();
const $route = useRoute();
const Indexform = ref({
@ -834,7 +836,7 @@ const Indexform = ref({
decreaseImageEntityList: [], //
discoveryNode: '1',
}); //
const pageState = ref(true); //
const pageState = ref(false); //
const ProcessingResults = ref([]); //
const IndexException = ref([]); //
const ZFname = ref(''); //
@ -875,6 +877,7 @@ const UserPermissions = ref(); //当前登录人角色身份
// ======
const MessageContent = ref([]); //
const scrollContainer = ref(null); //
const QueryId = ref(null);
const msgHight = ref(100); //
const msgTop = ref(0); //
const msgState = ref(0);
@ -1250,6 +1253,7 @@ const onLoad = async () => {
PackageInfo.value = res.data.data.abnormalPackageVOList;
console.log(res.data.data.abnormalPackageVOList, '包件信息');
NumberPackages.value = res.data.data.abnormalPackageVOList.length; //
PackageInfo.value[0].packageCode ? (identifying.value = 1) : (identifying.value = 2);
//
FangAddList.value = res.data.data.processorVOList
@ -1264,14 +1268,14 @@ const onLoad = async () => {
groundlineType.value = res.data.data.discoveryNode; //
if (res.data.data.personResponsibleVOS?.length) {
res.data.data.personResponsibleVOS.forEach(item => {
sum = Number(item.responsibilityRatio) + sum;
});
// res.data.data.personResponsibleVOS.forEach(item => {
// sum = Number(item.responsibilityRatio) + sum;
// });
FangAddList.value = res.data.data.personResponsibleVOS.map(res => {
return {
businessName: res.businessId, //ID
personResponsibleName: res.personResponsibleName, //
responsibilityRatio: res.responsibilityRatio + '%', //
responsibilityRatio: res.responsibilityRatio, //
description: res.description, //
tripartite: res.tripartite, //
};
@ -1386,8 +1390,20 @@ const onLoad = async () => {
Paymentmethod.value = res.data.data;
});
};
onLoad(); //
onMounted(() => {
watch(
() => $route.path, //
(newParams, oldParams) => {
console.log($route, '路由参数');
if (newParams == oldParams) {
onLoad();
}
},
{ deep: true, immediate: true } //
);
});
onLoad();
let isAppeal = appeal.value;
let userRole = UserPermissions.value; //
let routeIndex = $route.query.RouteIndexs; //
@ -1421,7 +1437,7 @@ const isWorkOrderCompletion = () => {
//
const isRepulse = () => {
if (UserPermissions.value == '总部客服经理') {
if (workOrderStatus == '40') {
if (['40', '80'].includes($route.query.workOrderStatus)) {
return true;
}
}
@ -1461,7 +1477,7 @@ const isInformationEditing = () => {
//
const isProcessingConfirmation = () => {
if (UserPermissions.value != '仓库客服') {
if (workOrderStatus == '40') {
if (['40'].includes(workOrderStatus)) {
return true;
}
}
@ -1560,6 +1576,7 @@ const beforeAvatarUpload = async rawFile => {
//
//
const addireply = () => {
$useStore.commit('DEL_ONCE_TAG', '/aftersales/aftersalesWorkOrderend');
$router.push({
path: '/aftersales/aftersalesWorkOrderend',
query: {
@ -2593,12 +2610,12 @@ const ResultDetermination = () => {
}
.img {
width: 100%;
height:20%;
height: 20%;
overflow: scroll;
.el-image{
.el-image {
width: 20%;
height: 100%;
margin: 4px;
}
img {

6759
src/views/aftersales/aftersalesWorkOrderTemp.vue

File diff suppressed because it is too large Load Diff

731
src/views/aftersales/aftersalesWorkOrderend.vue

@ -3,8 +3,8 @@
<div class="contemtMax">
<div class="left">
<el-tabs type="border-card" class="topClass" v-model="identifying">
<el-tab-pane label="订单信息" :name="1"></el-tab-pane>
<el-tab-pane label="零担信息" :name="2"></el-tab-pane>
<el-tab-pane label="订单信息" :name="1" :disabled="identifying == 2"></el-tab-pane>
<el-tab-pane label="零担信息" :name="2" :disabled="identifying == 1"></el-tab-pane>
</el-tabs>
<el-form :model="endFrom" :rules="ruleForm" ref="ruleFormRef">
@ -39,13 +39,16 @@
clearable
/>
</el-form-item>
<el-form-item label="创建时间" class="el_inputTop el_Workordernumber">
<el-input v-model="endFrom.createTime" disabled clearable />
</el-form-item>
</div>
<el-tabs type="border-card" class="PackageInformation">
<el-tab-pane label="包件信息">
<div class="ResponsibilityBoxS">
<div class="el_btbox" v-for="(item, index) in PackageInfo" :key="index">
<div class="leftbox">
<el-form-item label="包条码">
<el-form-item label="包条码" v-if="identifying == 1">
<el-tooltip :content="item.packageCode" placement="top">
<el-input v-model="item.packageCode" disabled />
</el-tooltip>
@ -290,7 +293,7 @@
</el-select>
</div>
<div class="maxBox">
<span class="title">责任占比:</span>
<span class="title">金额</span>
<el-input
v-model="item.responsibilityRatio"
placeholder="请输入占比 "
@ -316,9 +319,9 @@
</div>
</div>
</div>
<div class="Proportion">
<!-- <div class="Proportion">
<span class="title">公司占比:{{ companyProportion }}%</span>
</div>
</div> -->
</div>
</el-tab-pane>
</el-tabs>
@ -425,139 +428,152 @@
</el-tabs>
</div>
</div>
<el-form :disabled="PermissionButton.Completed_presentation">
<el-tabs
type="border-card"
class="demo-tabs el-endtabs"
v-if="PermissionButton.Completed_submission"
>
<el-tab-pane>
<template #label>
<span class="custom-tabs-label">
<el-icon><calendar /></el-icon>
<span>完结信息</span>
</span>
</template>
<el-tabs type="border-card" class="demo-tabs el-endtabs" v-if="routerState == 'end'">
<el-tab-pane>
<template #label>
<span class="custom-tabs-label">
<el-icon><calendar /></el-icon>
<span>完结信息</span>
</span>
</template>
<div class="el-ckbtn">
<div class="Compensationamount">
<el-button type="primary" @click="AddCompensation">添加赔款方</el-button>
<span>{{ CompensationNum }}</span>
</div>
<div class="Compensationamount">
<el-button type="primary" @click="AddPayee">添加受款方</el-button>
<span>{{ PayeeNum }}</span>
<div class="el-ckbtn" v-if="!PermissionButton.Completed_presentation">
<div class="Compensationamount">
<el-button type="primary" @click="AddCompensation">添加赔款方</el-button>
<span>{{ CompensationNum }}</span>
</div>
<div class="Compensationamount">
<el-button type="primary" @click="AddPayee">添加受款方</el-button>
<span>{{ PayeeNum }}</span>
</div>
</div>
</div>
<div class="payanindemnity" v-for="(item, index) in CompensationParty" :key="index">
<div style="display: flex">
<el-form-item
:class="{
payanindemnity_title: item.state == 0,
payanindemnity_titlecheck: item.warehouseIdcheck,
}"
:label="item.state == 0 ? '赔款方' : '受款方'"
>
<el-select
style="width: 200px"
v-model="item.warehouseId"
filterable
placeholder="请选择仓库"
@change="warehouseChange(item, index)"
<div
class="payanindemnity"
v-for="(item, index) in CompensationParty"
:key="index"
>
<div style="display: flex">
<el-form-item
:class="{
payanindemnity_title: item.state == 0,
payanindemnity_titlecheck: item.warehouseIdcheck,
}"
:label="item.state == 0 ? '赔款方' : '受款方'"
>
<el-option
v-for="item in warehouseData"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-select>
</el-form-item>
<el-select
style="width: 200px"
v-model="item.warehouseId"
filterable
placeholder="请选择仓库"
@change="warehouseChange(item, index)"
>
<el-option
v-for="item in warehouseData"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-select>
</el-form-item>
<el-form-item label="责任人" v-if="item.state == 0">
<el-input
v-model="item.compensationPersonnel"
placeholder="请填写责任人"
:rows="2"
/>
</el-form-item>
<el-form-item label="责任人" v-if="item.state == 0">
<el-input
v-model="item.compensationPersonnel"
placeholder="请填写责任人"
:rows="2"
/>
</el-form-item>
<el-form-item
label="原 . 因"
:class="{
payanindemnity_reason: item.state == 0,
payanindemnity_reasoncheck: item.reasoncheck,
}"
>
<el-input
v-model="item.reason"
placeholder="请填写原因"
@blur="reasonChange(item, index)"
/>
</el-form-item>
<el-form-item
label="原 . 因"
:class="{
payanindemnity_reason: item.state == 0,
payanindemnity_reasoncheck: item.reasoncheck,
}"
>
<el-input
v-model="item.reason"
placeholder="请填写原因"
@blur="reasonChange(item, index)"
/>
</el-form-item>
<el-form-item label="金额(元)">
<el-input-number
v-model="item.num"
:min="0"
:controls="false"
:value-on-clear="0"
:precision="2"
@change="amountMoney"
/>
</el-form-item>
</div>
<div style="display: flex">
<div class="el_cwBtn">
<!-- <el-button
<el-form-item label="金额(元)">
<el-input-number
v-model="item.num"
:min="0"
:controls="false"
:value-on-clear="0"
:precision="2"
@change="amountMoney"
/>
</el-form-item>
</div>
<div style="display: flex">
<div class="el_cwBtn">
<!-- <el-button
type="primary"
v-if="item.state == 0 && UserPermissions != '职能客服' && item.accounting!='1'"
@click="accountingBtn(item)"
>
财务处理
</el-button> -->
<el-button type="primary" v-if="item.button" @click="payremove(item, index)">
移除
</el-button>
<el-button
type="primary"
v-if="item.button && !PermissionButton.Completed_presentation"
@click="payremove(item, index)"
>
移除
</el-button>
</div>
</div>
</div>
</div>
<div class="paySum">
<span>
<el-icon><Coin /></el-icon>:<b>{{
TotalamountCompensation
}}</b></span
>
<span>
<el-icon><Coin /></el-icon>:<b>{{ TotalamountReceived }}</b></span
>
</div>
</el-tab-pane>
</el-tabs>
<!-- 仲裁原因说明 -->
<div class="arbitrate" v-if="routerState == 'end'">
<el-tabs
type="border-card"
:class="{
Reason_arbitration_tip: ReasonarbClass,
'demo-tabs Reason_arbitration': true,
}"
>
<el-tab-pane>
<template #label>
<span class="custom-tabs-label">
<el-icon><calendar /></el-icon>
<span>仲裁原因</span>
</span>
</template>
<el-input
v-model="endFrom.arbitrate"
type="textarea"
:autosize="{ minRows: 5, maxRows: 4 }"
placeholder="请输入仲裁原因"
/>
<div class="paySum">
<span>
<el-icon><Coin /></el-icon>:<b>{{
TotalamountCompensation
}}</b></span
>
<span>
<el-icon><Coin /></el-icon>:<b>{{ TotalamountReceived }}</b></span
>
</div>
</el-tab-pane>
</el-tabs>
</div>
<!-- 仲裁原因说明 -->
<div class="arbitrate" v-if="PermissionButton.Completed_submission">
<el-tabs
type="border-card"
:class="{
Reason_arbitration_tip: ReasonarbClass,
'demo-tabs Reason_arbitration': true,
}"
>
<el-tab-pane>
<template #label>
<span class="custom-tabs-label">
<el-icon><calendar /></el-icon>
<span>仲裁原因</span>
</span>
</template>
<el-input
v-model="endFrom.arbitrate"
type="textarea"
:autosize="{ minRows: 5, maxRows: 4 }"
placeholder="请输入仲裁原因"
/>
</el-tab-pane>
</el-tabs>
</div>
</el-form>
<!-- 图片 -->
<el-tabs
class="Transport_damage_photos"
@ -606,7 +622,14 @@
<div class="el_sub">
<el-button
v-if="PermissionButton.Completed_submission"
v-if="PermissionButton.Headquarters_completion"
type="primary"
class="button"
@click="resultreturnedFun"
>结果驳回</el-button
>
<el-button
v-if="PermissionButton.Headquarters_completion"
type="primary"
class="button"
@click="submitCompletion"
@ -632,7 +655,7 @@
type="primary"
class="button"
@click="submitresults(3)"
>处理结果修改提交</el-button
>处理结果提交</el-button
>
<el-button
v-if="PermissionButton.Processing_result_modification"
@ -662,6 +685,27 @@
@click="CustomerServiceCompleted"
>客服仲裁完结</el-button
>
<el-button type="primary" v-if="PermissionButton.repulse" @click="BatchReturn"
>完结打回</el-button
>
<el-button
type="primary"
v-if="PermissionButton.Processing_confirmation"
@click="ResultConfirmation"
>完结审核确认</el-button
>
<el-button
type="primary"
v-if="PermissionButton.Appeal_establishment_button"
@click="AppealEstablished"
>申诉成立</el-button
>
<el-button
type="primary"
v-if="PermissionButton.Appeal_rejection_button"
@click="AppealRejection"
>申诉驳回</el-button
>
<!-- <el-button
v-if="$route.query.RouteIndexs == '0' && $route.query.workOrderStatus != '21'"
type="primary"
@ -807,7 +851,7 @@
:action="doubledCount"
:headers="headers"
:on-success="fellSuccess"
:limit="3"
:limit="4"
multiple
>
<template #trigger>
@ -834,9 +878,9 @@
/>
</el-select> -->
</div>
<el-button type="primary" class="el_next" @click="NextRecord()">
<!-- <el-button type="primary" class="el_next" @click="NextRecord()">
下一条
</el-button>
</el-button> -->
</div>
<el-input
@ -899,8 +943,51 @@
</span>
</template>
</el-dialog>
<!-- 结果打回弹窗 -->
<el-dialog v-model="dialogReturn" title="结果驳回" width="40%" draggable class="plAllret">
<el-form
v-loading="repulse"
element-loading-text="正在打回中..."
label-position="top"
label-width="100px"
:model="BatchFrom"
>
<el-form-item label="打回原因">
<el-input v-model="BatchFrom.txt" type="textarea" :rows="4" />
</el-form-item>
<el-form-item label="流转营业部">
<el-select
v-model="BatchFrom.businessDepartment"
multiple
filterable
default-first-option
:reserve-keyword="false"
placeholder="请选择活动区域"
>
<el-option
v-for="item in warehouseData"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-select>
</el-form-item>
</el-form>
<template #footer>
<span class="dialog-footer">
<el-button @click="dialogReturn = false">取消</el-button>
<el-button type="primary" @click="ConfirmReturn" :disabled="repulse"> 确定 </el-button>
</span>
</template>
</el-dialog>
</el-card>
</template>
<script>
export default {
name: '/aftersales/aftersalesWorkOrderend',
};
</script>
<script setup>
import { ElMessage } from 'element-plus';
@ -919,10 +1006,13 @@ import {
$_getTrackRecord,
$_accounting,
$_getList,
$_batchReturn,
$_getProcessor,
$_updateWorkOrderStatus,
$_updateManagerConfirmed,
$_updateProcessingParty,
$_batchRepulseCompleted,
$_Cancelappeal,
} from '@/api/aftersales/aftersalesWorkOrder';
import { columnList, recordList } from '@/option/aftersales/vueTvemp.js';
import { getToken } from '@/utils/auth';
@ -936,7 +1026,9 @@ const $useStore = useStore();
const identifying = ref(1); //
const ZFdialog = ref(false); //
const $route = useRoute();
const $router = useRouter();
const Paymentmethod = ref([]); //
const ZFname = ref(''); //
const routeData = ref(false); //
@ -975,6 +1067,9 @@ const IndexException = ref([]); //异常类型
const Pageloading = ref(false); //load
const TotalClaimAmount = ref(0); //
const TotalamountReceived = ref(0); //
const dialogReturn = ref(false);
const repulse = ref(false);
const BatchFrom = ref({});
const userInfo = ref({}); //
const ruleForm = reactive({
reason: [{ required: true, message: '请填写原因', trigger: ['blur', 'change'] }],
@ -1053,7 +1148,7 @@ const FangAddList = ref([
{
businessName: '',
personResponsibleName: '',
responsibilityRatio: '' + '%',
responsibilityRatio: '',
description: '',
tripartite: '',
},
@ -1143,10 +1238,6 @@ const details = reactive({
},
});
const TransportChange = val => {
console.log(val, '运损触发事件');
};
const warehouseIdState = ref(false); //
//
async function updateDictionary(targetArray, dictionaryType) {
@ -1161,13 +1252,24 @@ async function updateDictionary(targetArray, dictionaryType) {
});
}
//
//
const Completedsubmission = () => {
if (UserPermissions.value == '仓库客服' && endFrom.value.arbitrate) {
return true;
}
if (UserPermissions.value != '仓库客服') {
if ($route.query.workOrderStatus == '30') {
return true;
return true;
}
return false;
};
const CompletedPresentation = () => {
if (UserPermissions.value != '仓库客服') {
if (['30'].includes($route.query.workOrderStatus)) {
return false;
}
}
return true;
};
//
const Submissionresults = () => {
@ -1212,16 +1314,66 @@ const isInformationEditing = () => {
}
return false;
};
//
const isRepulse = () => {
if (UserPermissions.value == '总部客服经理') {
if (['40', '80'].includes($route.query.workOrderStatus)) {
return true;
}
}
return false;
};
//
const isProcessingConfirmation = () => {
if (UserPermissions.value != '仓库客服') {
if (['40'].includes($route.query.workOrderStatus)) {
return true;
}
}
return false;
};
//
const Headquarterscompletion = () => {
if (UserPermissions.value != '仓库客服') {
if (['30'].includes($route.query.workOrderStatus)) {
return true;
}
}
return false;
};
//
const AppealRejectionButton = () => {
if (UserPermissions.value == '总部客服经理') {
if ($route.query.typesOf == '0') {
return true;
}
}
return false;
};
//
const AppealEstablishmentButton = () => {
if (UserPermissions.value == '总部客服经理') {
if ($route.query.typesOf == '0') {
return true;
}
}
return false;
};
//
const PermissionButton = computed(() => ({
Completed_submission: Completedsubmission(), //
Headquarters_completion: Headquarterscompletion(),
Completed_submission: Completedsubmission(), //
Completed_presentation: CompletedPresentation(), ///
Submission_results: Submissionresults(), //
Save_results: Saveresults(), //
Arbitration_completed: Arbitrationcompleted(), //
Processing_result_modification: Processingresultmodification(), //
Processing_result_disabled: Processingresultdisabled(), //
information_editing: isInformationEditing(), //
repulse: isRepulse(), //
Processing_confirmation: isProcessingConfirmation(), //
Appeal_rejection_button: AppealRejectionButton(), //
Appeal_establishment_button: AppealEstablishmentButton(), //
}));
//
@ -1272,6 +1424,8 @@ const onLoad = async () => {
} else {
warehouseIdState.value = false;
}
//
identifying.value = res.data.data.identifying;
//
if (res.data.data.discoveryNode == '1') {
groundlineType.value = '1';
@ -1287,6 +1441,9 @@ const onLoad = async () => {
});
//
PackageInfo.value = res.data.data.abnormalPackageVOList;
console.log(PackageInfo.value, ' PackageInfo.value');
PackageInfo.value[0].packageCode ? (identifying.value = 1) : (identifying.value = 2);
//
//
FangAddList.value = res.data.data.processorVOList
@ -1352,17 +1509,19 @@ const onLoad = async () => {
//
let sum = 0;
if (FangAddList.value.length) {
FangAddList.value.forEach(item => {
if (item.responsibilityRatio) {
item.responsibilityRatio = item.responsibilityRatio.replace(/%/g, '');
sum = Number(item.responsibilityRatio) + sum;
}
});
FangAddList.value.forEach(item => {
item.responsibilityRatio =item.responsibilityRatio? item.responsibilityRatio + '%':item.responsibilityRatio;
});
// FangAddList.value.forEach(item => {
// if (item.responsibilityRatio) {
// item.responsibilityRatio = item.responsibilityRatio.replace(/%/g, '');
// sum = Number(item.responsibilityRatio) + sum;
// }
// });
// 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) {
ProcessingList.value = res.data.data.processingResultsVO.processingMoneyEntityList.map(
@ -1448,12 +1607,31 @@ const onLoad = async () => {
Pageloading.value = false;
});
};
//
watch($route, (to, from) => {
onLoad();
onMounted(() => {
watch(
$route.fullPath,
(newRoute, oldRoute) => {
if (oldRoute) {
console.log(newRoute, 'newRoute');
console.log(oldRoute, 'oldRoute');
if (newRoute.fullPath === oldRoute.fullPath) {
console.log('当前页面和上一个页面相同');
} else {
console.log('当前页面和上一个页面不同');
onLoad();
}
} else {
console.log('这是初始渲染,没有上一个页面');
onLoad();
}
},
{ immediate: true, deep: true }
);
});
//
//
const Fileidentifier = val => {
if (val) {
@ -1462,7 +1640,7 @@ const Fileidentifier = val => {
const fileName = url.substring(url.lastIndexOf('/') + 1);
//
const extension = fileName.substring(fileName.lastIndexOf('.') + 1).toLowerCase();
//
if (extension === 'mp4') {
return 'mp4';
@ -1473,7 +1651,7 @@ const Fileidentifier = val => {
if (extension === 'docx') {
return 'docx';
}
// undefined
return undefined;
}
@ -1588,8 +1766,7 @@ const Chathistory = res => {
.finally(handleFinally);
}
};
onLoad();
//
onMounted(() => {
msgHight.value = window.innerHeight * 0.76;
console.log(msgHight.value, '处理好的页面高度');
@ -1693,7 +1870,7 @@ const ImgSuccess = (response, uploadFile) => {
//
const fellSuccess = (response, uploadFile) => {
console.log('上成功');
console.log('上成功');
console.log(response, uploadFile);
if (response.data.link) {
KFfeel.value.push(response.data.link);
@ -1715,7 +1892,7 @@ const ViodSuccess = response => {
//
const beforeAvatarUpload = async rawFile => {
if (!/^image\/(png|jpeg|gif)$|^video\/mp4$/.test(rawFile.type)) {
ElMessage.error('上传格式只支持 png、jpeg、gif 和 mp4 类型!');
ElMessage.error('上传格式只支持 png、jpeg、gif、image 和 mp4 类型!');
return false;
} else if (rawFile.size / 1024 / 1024 > 40) {
ElMessage.error('上传大小不能超过 40MB!');
@ -1780,9 +1957,12 @@ const AddPayee = () => {
//
const Totalamount = () => {
TotalClaimAmount.value = ProcessingList.value
.map(res => res.money)
.reduce((accumulator, currentValue) => accumulator + currentValue, 0);
TotalClaimAmount.value = parseFloat(
ProcessingList.value
.map(res => res.money)
.reduce((accumulator, currentValue) => accumulator + currentValue, 0)
.toFixed(2)
);
};
//
const payremove = (item, index) => {
@ -1956,7 +2136,8 @@ const submitresults = async value => {
ProcessingList.value.forEach(item => {
let _DATA = item.Paymentmethod.find(res => res.value == item.compensationMethod);
data.aftersalesProcessingResultsDTO['processingMoneyEntityList'].push({
resultType: ProcessingResults.value.find(res => res.dictValue == item.title).dictKey, //key
resultType:
ProcessingResults.value.find(res => res.dictValue == item.title)?.dictKey || '', //key
resultName: item.title, //
money: item.money, //
compensationMethod: item.compensationMethod, //Value
@ -2375,6 +2556,201 @@ const CustomerServiceCompleted = () => {
});
$useStore.commit('DEL_TAG_CURRENT');
};
//
const resultreturnedFun = () => {
BatchFrom.value.businessDepartment = [];
BatchFrom.value.txt = null;
dialogReturn.value = true;
};
//
const ConfirmReturn = async () => {
//
let data = {
processorList: [],
};
//
if (BatchFrom.value.businessDepartment.length) {
let foundObjs = warehouseData.value.filter(obj =>
BatchFrom.value.businessDepartment.includes(obj.value)
);
data['businessId'] = foundObjs.map(item => item.value).join(',');
data['businessName'] = foundObjs.map(item => item.label).join(',');
//
foundObjs.forEach(item => {
data['processorList'].push({ id: item.value, name: item.label });
});
}
data.reasonReturn = BatchFrom.value.txt; //
data.workOrderIds = [$route.query.id]; //
console.log(data, '处理好的值');
data.typesOf = '1'; //
repulse.value = true; //
dialogReturn.value = false; //
await $_batchReturn(data)
.then(res => {
console.log(res, '批量打回返回值');
if (res.data.code == 200) {
ElMessage({
message: res.data.msg,
type: 'success',
});
//
$useStore.commit('EDIT_REFRESHITEM', { title: 'aftersalesWorkOrder', status: true }); //
$useStore.commit('Customer_Menu', Number($route.query.RouteIndexs)); //
$router.push('/aftersales/aftersalesWorkOrder');
AddressClosed('/aftersales/aftersalesWorkOrderend'); //
}
})
.catch(error => {
console.log(error, 'error');
})
.finally(() => {
repulse.value = false; //
dialogReturn.value = false; //
});
};
//
const BatchReturn = () => {
ElMessageBox.prompt('请输入打回原因', {
confirmButtonText: '确定',
cancelButtonText: '取消',
inputPattern: /^(?!\s*$).+/,
inputErrorMessage: '内容不能为空哦',
})
.then(async ({ value }) => {
Pageloading.value = true;
await $_batchRepulseCompleted({
workOrderIds: [$route.query.id],
reasonReturn: value,
})
.then(res => {
if (res.data.code == 200) {
ElMessage({
message: res.data.msg,
type: 'success',
});
$useStore.commit('EDIT_REFRESHITEM', {
title: 'aftersalesWorkOrder',
status: true,
});
$useStore.commit('Customer_Menu', Number($route.query.RouteIndexs)); //
$useStore.commit('DEL_TAG_CURRENT'); //
$router.push({
path: '/aftersales/aftersalesWorkOrder',
});
}
})
.catch(error => {
console.log(error);
})
.finally(() => {
Pageloading.value = false;
});
})
.catch(() => {});
};
//
const ResultConfirmation = async () => {
ElMessageBox.confirm('是否确认审核?请注意查验数据正确性!', '提示', {
confirmButtonText: '确认',
cancelButtonText: '取消',
type: 'warning',
})
.then(async () => {
const data = {
assignList: [$route.query.id],
};
if ($route.query.workOrderStatus !== '40') {
ElMessage({
message: '状态错误',
type: 'warning',
});
return;
}
Pageloading.value = true; //
try {
const res = await $_updateManagerConfirmed(data);
if (res.data.code === 200) {
ElMessage({
message: res.data.msg,
type: 'success',
});
}
$useStore.commit('EDIT_REFRESHITEM', {
title: 'aftersalesWorkOrder',
status: true,
});
$useStore.commit('Customer_Menu', Number($route.query.RouteIndexs)); //
$useStore.commit('DEL_TAG_CURRENT'); //
$router.push({
path: '/aftersales/aftersalesWorkOrder',
});
} catch (error) {
console.log('错误信息:', error);
} finally {
Pageloading.value = false; //
}
})
.catch(() => {});
};
//
const AppealRejection = () => {
ElMessageBox.prompt('请填写驳回原因', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
inputPattern: /^(?!\s*$).+/,
inputErrorMessage: '内容不能为空哦',
})
.then(async ({ value }) => {
try {
let data = {
id: $route.query.workOrderId, //ID
typesOf: '2', //
workOrderId: $route.query.id, //ID
handlingReason: value, //
};
let _res = await $_Cancelappeal(data);
if (_res.data.code == 200) {
ElMessage({
message: _res.data.msg,
type: 'success',
});
$useStore.commit('EDIT_REFRESHITEM', {
title: 'aftersalesWorkOrder',
status: true,
});
$useStore.commit('Customer_Menu', Number($route.query.RouteIndexs)); //
$useStore.commit('DEL_TAG_CURRENT'); //
$router.push({
path: '/aftersales/aftersalesWorkOrder',
});
}
} catch (e) {
} finally {
}
})
.catch(() => {});
};
//
const AppealEstablished = () => {
$router.push({
path: '/aftersales/aftersalesWorkOrdermodify',
query: {
id: $route.query.id, //idworkOrderId
name: $route.query.workOrderNumber + '-申诉编辑',
RouterState: 'Kfend',
workOrderStatus: $route.query.workOrderStatus, //
Appealeditor: 'appeal', //
appealID: $route.query.workOrderId, //ID
typesOf: $route.query.typesOf, //012
},
});
};
</script>
<style scoped lang="scss">
@ -2440,6 +2816,8 @@ const CustomerServiceCompleted = () => {
flex-direction: column;
justify-content: space-between;
margin-bottom: 16px;
border-radius: 16px;
box-shadow: 0px 0px 6px 0px #00000029;
.title {
position: absolute;
top: -20px;
@ -2825,12 +3203,12 @@ const CustomerServiceCompleted = () => {
}
.img {
width: 100%;
height:20%;
height: 20%;
overflow: scroll;
.el-image{
.el-image {
width: 20%;
height: 100%;
margin: 4px;
}
img {
@ -3086,7 +3464,7 @@ const CustomerServiceCompleted = () => {
display: flex;
flex-direction: row;
align-items: center;
width: auto;
width: 22%;
}
}
:deep(.el_resj) {
@ -3195,6 +3573,7 @@ const CustomerServiceCompleted = () => {
}
}
.el-endtabs {
width: 100%;
margin-top: 10px;
:deep(.is-active) {
font-weight: bold;
@ -3246,4 +3625,26 @@ const CustomerServiceCompleted = () => {
border: 1px solid #f00;
}
}
:deep(.plAllret) {
.el-form {
flex-direction: column;
.el-form-item {
flex-direction: column;
}
.el-form-item__content {
flex-direction: column;
}
.el-form-item__label {
font-weight: bold;
}
}
.el-select {
width: 100%;
}
.el-loading-mask {
position: absolute;
left: 0;
top: 0;
}
}
</style>

4
src/views/reportforms/DeliveryDetailsVtwo.vue

@ -63,7 +63,7 @@
</el-select>
</el-form-item>
<el-form-item label="配送车辆">
<!-- <el-form-item label="配送车辆">
<el-input
v-model="TopQuery.vehicleNameRange"
style="width: 240px"
@ -103,7 +103,7 @@
clearable
placeholder="多个运单收货人请用逗号隔开"
/>
</el-form-item>
</el-form-item> -->
</div>
</el-form>
</el-row>

Loading…
Cancel
Save