import { ref, reactive, toRefs, computed, onMounted, nextTick, watch, onActivated } from 'vue';
-import { columnList } from '@/option/Pricesystem/index.js';
+import { columnList,HistoricalList} from '@/option/Pricesystem/index.js';
import {
$_getpriceTemplate,
$_deletelpriceTemplate,
$_getexport,
+ $_gethisPage,
+ $_DELETEID,
} from '@/api/financialsector/index'; //价格模板
import { getBasicdataPrice, postBasicdataPrice } from '@/api/Pricesystem/index'; //价格模板
import { getDictionaryBiz } from '@/api/system/dict'; //字典
@@ -202,10 +234,17 @@ import { popmsg } from '@/utils/poptxt';
import { downloadXls, deepClone } from '@/utils/util';
import { useStore } from 'vuex';
import dayjs from 'dayjs';
+import error from '@/error';
const $router = useRouter(); //跳转
const $useStore = useStore(); //权限
const $route = useRoute(); //获取地址栏参数
const dialogTemp = ref(false);
+const Historical=reactive({
+ popUpShow:false,//历史版本弹窗
+ data:[],//历史版本数据
+ loading:false,//历史版本弹窗
+ columnList:deepClone(HistoricalList),
+})
const details = reactive({
/** 是否开启搜索 */
search: false,
@@ -524,7 +563,6 @@ const Deletetemplate = () => {
const Modifytemplate = row => {
console.log(row);
$useStore.commit('DEL_ONCE_TAG', '/Pricesystem/PricesyHome');
-
$router.push({
query: {
id: row.id,
@@ -533,7 +571,79 @@ const Modifytemplate = row => {
path: '/Pricesystem/PricesyHome',
});
};
-
+// 查看详情
+const Viewdetails=(row)=>{
+ $useStore.commit('DEL_ONCE_TAG', '/Pricesystem/PricesyHome');
+ $router.push({
+ query: {
+ id: row.id,
+ templateId: row.templateId,
+ Viewdetails:false,
+ },
+ path: '/Pricesystem/PricesyHome',
+ });
+}
+const HistoriBt=ref({});//历史版本
+// 查看历史版本
+const Historicalversion=(row)=>{
+HistoriBt.value=row
+Historical.popUpShow=true
+Historical.loading=true
+let _data={
+ id:row.id,
+ brandId:row.brandId,
+ clientId:row.clientId,
+}
+$_gethisPage(_data).then(res=>{
+console.log(res);
+ if(res.data.code == 200){
+ Historical.data = res.data.data.records||[]
+ const _node = document.querySelector('.Historical');
+ setNodeHeight(_node, '', true);
+ }
+}).catch(error=>{
+console.log(error,'error');
+}).finally(()=>{
+ Historical.loading=false
+})
+}
+// 删除待生效
+const deletetails=(row)=>{
+ let data={
+ id:row.id
+ }
+ const message = `是否删除该数据,删除后不可恢复是否确认?`;
+ ElMessageBox.confirm(
+ message,
+ '提示',
+ {
+ dangerouslyUseHTMLString: true, // 如果组件支持,启用此选项以解析 HTML
+ confirmButtonText: '确认',
+ cancelButtonText: '取消',
+ type: 'warning',
+ }
+ )
+ .then(() => {
+ Historical.loading=true
+ $_DELETEID(data).then(res=>{
+ console.log(res);
+ if(res.data.code ==200){
+ ElMessage({
+ message:res.data.msg,
+ type:'success'
+ })
+ Historicalversion(row)
+ }
+ }).catch(error=>{
+ console.log(error,'error');
+ }).finally(()=>{
+ Historical.loading=false
+ })
+ })
+ .catch(() => {
+
+ })
+}
/** 设置客户 */
const handleClient = async row => {
try {
@@ -550,7 +660,7 @@ const handleClient = async row => {
await nextTick();
// 重置表单状态
basicForm.value.resetFields();
-
+ add.value=true
details.form = { ...row };
} catch (error) {
console.log('error :>> ', error);
@@ -559,23 +669,61 @@ const handleClient = async row => {
}
console.log('row :>> ', row);
};
-
+const add=ref(true)
+// 新增
+const addition=async()=>{
+ if(!details.selectionList.length){
+ ElMessage({
+ message: '请勾选一条数据',
+ type: 'warning',
+ })
+ return
+ }
+ if(details.selectionList.length>1){
+ ElMessage({
+ message: '只能勾选单条数据操作',
+ type: 'warning',
+ })
+ return
+ }
+ console.log(details.selectionList,'details.selectionList');
+ let _row=details.selectionList[0]
+ console.log(_row,'_row');
+ details.loadingObj.pageLoading = true;
+ const res = await $_getpriceTemplate({ brandId: _row.brandId });
+ details.loadingObj.pageLoading = false;
+ const { code, data } = res.data;
+ if (code == 200) {
+ details.templateArr = data.records || [];
+ details.popUpShow.basicVisted = true;
+ await nextTick();
+ // 重置表单状态
+ basicForm.value.resetFields();
+ details.form = { ..._row };
+ details.form.templateId=null
+ details.form.expiryTime=null
+ details.form.effectiveTime=null
+ };
+ add.value=false
+}
/** 提交设置基础配置 */
const handleSubmitBasic = () => {
basicForm.value.validate(async (valid, fields) => {
if (!valid) return;
-
try {
details.loadingObj.pageLoading = true;
details.popUpShow.basicVisted = false;
-
const submitData = {
effectiveTime: details.form.effectiveTime + ' 00:00:00',
- id: details.form.id,
+
+ brandId:details.form.brandId,
+ clientId:details.form.clientId,
expiryTime: details.form.expiryTime + ' 00:00:00',
templateId: details.form.templateId,
};
-
+ if(add.value){
+ submitData.id=details.form.id;
+ }
const res = await postBasicdataPrice(submitData);
const { code, msg } = res.data;
@@ -583,6 +731,7 @@ const handleSubmitBasic = () => {
ElMessage.success(msg);
onLoad();
+ Historicalversion(HistoriBt.value)
} catch (error) {
console.log('error :>> ', error);
} finally {
diff --git a/src/views/Pricesystem/Price/PriceBill.vue b/src/views/Pricesystem/Price/PriceBill.vue
index 108311bc..9b54dd62 100644
--- a/src/views/Pricesystem/Price/PriceBill.vue
+++ b/src/views/Pricesystem/Price/PriceBill.vue
@@ -73,7 +73,7 @@
/>
-
+ |
handlePlusVehicle(index)"
@@ -204,7 +204,7 @@
-
+
重置
保存
@@ -215,7 +215,7 @@
提货路径
-
+
新 增
@@ -228,7 +228,7 @@
:loading="details.loadingObj.list"
>
-
+
handleEdit(slotProps.scope)"
>
@@ -382,7 +382,7 @@
:min="0"
/>
|
-
+ |
handlePlusVehicle(index)"
@@ -511,7 +511,7 @@
-
-
+
重置
保存
diff --git a/src/views/Pricesystem/Price/PriceTrunkLine.vue b/src/views/Pricesystem/Price/PriceTrunkLine.vue
index 39832de6..b1a47b27 100644
--- a/src/views/Pricesystem/Price/PriceTrunkLine.vue
+++ b/src/views/Pricesystem/Price/PriceTrunkLine.vue
@@ -210,7 +210,7 @@
-
+
重置
保存
@@ -221,7 +221,7 @@
干线路径
-
+
新 增
@@ -234,7 +234,7 @@
:loading="details.loadingObj.list"
>
-
+
handleEdit(slotProps.scope)"
>
@@ -388,7 +388,7 @@
:min="0"
/>
|
-
+ |
handlePlusVehicle(index)"
@@ -522,7 +522,7 @@
-
-
+
重置
保存
diff --git a/src/views/aftersales/aftersalesWorkOrder.vue b/src/views/aftersales/aftersalesWorkOrder.vue
index e0d5d3f9..a934d812 100644
--- a/src/views/aftersales/aftersalesWorkOrder.vue
+++ b/src/views/aftersales/aftersalesWorkOrder.vue
@@ -168,12 +168,12 @@
@click="Batchcompletion"
>批量完结
-
+
批量仲裁完成批量完结完成
@@ -273,7 +273,7 @@
>结果确定
-
+
-
+
- 仲裁原因
+ 完结原因
@@ -627,7 +627,7 @@
v-model="Reasonarbitration"
type="textarea"
:autosize="{ minRows: 5, maxRows: 4 }"
- placeholder="请输入仲裁原因"
+ placeholder="请输入完结原因"
/>
@@ -1068,6 +1068,7 @@ import {
nextTick,
watch,
getCurrentInstance,
+ onActivated,
} from 'vue';
import {
columnList,
@@ -1089,6 +1090,7 @@ const $route = useRoute();
/** vuex */
const customerData = ref([]); //查询已绑定的客服
const pageLoad=ref(false)
+console.log($useStore,'$useStore');
const accessControl = $useStore.getters.permission;
console.log(accessControl, '权限按钮');
const loadingFinancial = ref(false);
@@ -1110,14 +1112,14 @@ const scChange = val => {
// workAdd;//新增
// batch_return;//批量打回
// assign;//工单指派
-// apply_arbitration;//申请仲裁
+// apply_arbitration;//申请完结
// batch_completion;//批量完结
// representations;//申诉
// reply;//回复
// processing_completed;//处理完结
// work_order_completion;//完结
// repulse;//打回
-// arbitration_completed;//仲裁完结
+// arbitration_completed;//完结完结
// information_editing;//信息编辑
console.log(accessControl.workAdd, '新增按钮权限');
// const PermissionButton = computed(() => {
@@ -1125,14 +1127,14 @@ console.log(accessControl.workAdd, '新增按钮权限');
// workAdd: accessControl.workAdd, //新增
// batch_return: accessControl.batch_return, //批量打回
// assign: accessControl.assign, //工单指派
-// apply_arbitration: accessControl.apply_arbitration, //申请仲裁
+// apply_arbitration: accessControl.apply_arbitration, //申请完结
// batch_completion: accessControl.batch_completion, //批量完结
// representations: accessControl.representations, //申诉
// reply: accessControl.reply, //回复
// processing_completed: accessControl.processing_completed, //处理完结
// work_order_completion: accessControl.work_order_completion, //完结
// repulse: accessControl.repulse, //打回
-// arbitration_completed: accessControl.arbitration_completed, //仲裁完结
+// arbitration_completed: accessControl.arbitration_completed, //完结完结
// information_editing: accessControl.information_editing, //信息编辑
// };
// });
@@ -1142,14 +1144,14 @@ const PermissionButton = computed(() => {
workAdd: accessControl.workAdd, //新增
batch_return: accessControl.batch_return, //批量打回
assign: accessControl.assign, //工单指派
- apply_arbitration: accessControl.apply_arbitration, //申请仲裁
+ apply_arbitration: accessControl.apply_arbitration, //申请完结
batch_completion: accessControl.batch_completion, //批量完结
representations: accessControl.representations, //申诉
reply: accessControl.reply, //回复
processing_completed: accessControl.processing_completed, //处理完结
work_order_completion: accessControl.work_order_completion, //完结
repulse: accessControl.repulse, //打回
- arbitration_completed: accessControl.arbitration_completed, //仲裁完结
+ arbitration_completed: accessControl.arbitration_completed, //完结完结
information_editing: accessControl.information_editing, //信息编辑
};
});
@@ -1219,7 +1221,7 @@ const eightyPercentHeight = ref(0); // 80% 高度
const list = ref([]);
const options = ref([]);
-const arbitrationTemp = ref(0); //仲裁中当点击的那个菜单
+const arbitrationTemp = ref(0); //完结当点击的那个菜单
const CustomerData = ref([]); //客服指派表格查询
const repulse = ref(false);
const dialogBatchcompletion = ref(false); //批量完结弹窗
@@ -1230,10 +1232,10 @@ const AssignCustomerservice = ref([]); //工单指派客服列表
const iconState = ref(false); //消息状态
const ProcessingPartyState = ref(false); //处理方数据(为真才显示)
const currentUser = ref(null); //存放当前的对话框必要Id
-const ArbitrationStatus = ref(null); //申请仲裁状态
+const ArbitrationStatus = ref(null); //申请完结状态
const TotalamountCompensation = ref(0); //赔款金额合计
const TotalamountReceived = ref(0); //收款金额合计
-const Reasonarbitration = ref(null); //仲裁原因
+const Reasonarbitration = ref(null); //完结原因
const BatchcompletionHeight = ref(0); //批量完结弹窗
const userInfo = ref(); //当前登录人信息
const ClaimStatus = ref(false); //理赔状态
@@ -1249,16 +1251,17 @@ const TabList = ref([
{ name: 0, label: '全部', state: true, request: true, DataList: [], total: '' },
{ name: 8, label: '待回复', state: false, request: true, DataList: [], total: '' },
{ name: 3, label: '待处理(新建)', state: true, request: true, DataList: [], total: '' },
- { name: 9, label: '待审核', state: true, request: true, DataList: [], total: '' },
{ name: 1, label: '处理中', state: true, request: true, DataList: [], total: '' },
+ { name: 4, label: '理赔金额未出', state: true, request: true, DataList: [], total: '' },
{ name: 2, label: '处理完毕', state: true, request: true, DataList: [], total: '' },
- { name: 6, label: '仲裁中', state: true, request: true, DataList: [], total: '' },
{ name: 5, label: '客服介入', state: true, request: true, DataList: [], total: '' },
- { name: 4, label: '理赔金额未出', state: true, request: true, DataList: [], total: '' },
+ { name: 6, label: '完结', state: true, request: true, DataList: [], total: '' },
+ { name: 9, label: '待审核', state: true, request: true, DataList: [], total: '' },
{ name: 7, label: '超时未处理', state: true, request: true, DataList: [], total: '' },
]); //标签栏
-const DeliveryDriver = ref([]);
+
+const DeliveryDriver = ref([]);
const CompensationParty = ref([
{ name: '', state: 0, num: null, reason: '', cld: 1, warehouseId: '', personResponsibleName: '' }, //赔款方
{ name: '', state: 1, num: null, reason: '', cld: 1, warehouseId: '', personResponsibleName: '' }, //受款方
@@ -1370,13 +1373,13 @@ const {
// { label: '待处理完毕', value: 2 },
// { label: '待处理', value: 3 },
// { label: '理赔金额未出', value: 4 },
-// { label: '仲裁中', value: 5 },
+// { label: '完结', value: 5 },
// { label: '完结', value: 6 },
// { label: '超时未处理', value: 7 },
// ];
// // 按钮配置
-// // 1.新增 2.批量打回 3.工单指派 4.申请仲裁 5.批量完结 6.申诉
+// // 1.新增 2.批量打回 3.工单指派 4.申请完结 5.批量完结 6.申诉
// // 角色配置
// // 1.仓库客服
@@ -1387,7 +1390,7 @@ const {
// 1.新增 只能仓库客服查看
// 2.批量打回 只能职能客服查看
// 3.工单指派 只能客服经理查看
-// 4.申请仲裁 只能仓库客服查看
+// 4.申请完结 只能仓库客服查看
// 5.批量完结 只能职能客服查看
// 6.申诉 隐藏
@@ -1395,7 +1398,7 @@ const {
// 1.新增 隐藏
// 2.批量打回 只能仓库客服查看
// 3.工单指派 隐藏
-// 4.申请仲裁 只能仓库客服查看
+// 4.申请完结 只能仓库客服查看
// 5.批量完结 只能职能客服和客服经理查看
// 6.申诉 隐藏
// // 在value==2状态下的权限配置
@@ -1405,7 +1408,7 @@ const {
// 1.新增 隐藏
// 2.批量打回 只能仓库客服查看
// 3.工单指派 只能客服经理查看
-// 4.申请仲裁 隐藏
+// 4.申请完结 隐藏
// 5.批量完结 隐藏
// 6.申诉 隐藏
@@ -1413,7 +1416,7 @@ const {
// 1.新增 隐藏
// 2.批量打回 隐藏
// 3.工单指派 隐藏
-// 4.申请仲裁 隐藏
+// 4.申请完结 隐藏
// 5.批量完结 隐藏
// 6.申诉 仓库客服查看
@@ -1421,7 +1424,7 @@ const {
// 1.新增 隐藏
// 2.批量打回 隐藏
// 3.工单指派 隐藏
-// 4.申请仲裁 隐藏
+// 4.申请完结 隐藏
// 5.批量完结 隐藏
// 6.申诉 隐藏
@@ -1429,7 +1432,7 @@ const {
// 1.新增 隐藏
// 2.批量打回 隐藏
// 3.工单指派 隐藏
-// 4.申请仲裁 隐藏
+// 4.申请完结 隐藏
// 5.批量完结 隐藏
// 6.申诉 隐藏
@@ -1437,7 +1440,7 @@ const {
// 1.新增 隐藏
// 2.批量打回 隐藏
// 3.工单指派 隐藏
-// 4. 申请仲裁 隐藏
+// 4. 申请完结 隐藏
// 5.批量完结 隐藏
// 6.申诉 隐藏
@@ -1468,7 +1471,7 @@ const ButtonPermissions = computed(() => {
batchFinish: false, //批量完结
appeal: false, //申诉
ManagerConfirmed: false, //处理完毕下面的客服经理批量确定
- ArbitrationDetermination: false, //批量仲裁确定
+ ArbitrationDetermination: false, //批量完结确定
Financial_accounting: false, //财务入账
defaultassignments: UserPermissions.value != '仓库客服', //默认指派
export_Report: true, //导出报表
@@ -1485,7 +1488,7 @@ const ButtonPermissions = computed(() => {
Batchdetermination: UserPermissions.value != '仓库客服', //批量确定
appeal: false, //申诉
ManagerConfirmed: false, //处理完毕下面的客服经理批量确定
- ArbitrationDetermination: false, //批量仲裁确定
+ ArbitrationDetermination: false, //批量完结确定
Financial_accounting: false, //财务入账
defaultassignments: false, //默认指派
export_Report: true, //导出报表
@@ -1502,7 +1505,7 @@ const ButtonPermissions = computed(() => {
appeal: UserPermissions.value == '仓库客服' && AppealStatusT.value, //申诉
Batchdetermination: UserPermissions.value == '仓库客服', //批量确定
ManagerConfirmed: false, //处理完毕下面的客服经理批量确定
- ArbitrationDetermination: false, //批量仲裁确定
+ ArbitrationDetermination: false, //批量完结确定
Financial_accounting: false, //财务入账
defaultassignments: false, //默认指派
export_Report: true, //导出报表
@@ -1519,7 +1522,7 @@ const ButtonPermissions = computed(() => {
Batchdetermination: false, //批量确定
DingTalkNumber: false, //钉钉号填写
ManagerConfirmed: false, //处理完毕下面的客服经理批量确定
- ArbitrationDetermination: false, //批量仲裁确定
+ ArbitrationDetermination: false, //批量完结确定
Financial_accounting: false, //财务入账
defaultassignments: false, //默认指派
export_Report: true, //导出报表
@@ -1536,7 +1539,7 @@ const ButtonPermissions = computed(() => {
DingTalkNumber: false, //钉钉号填写
Batchdetermination: false, //批量确定
ManagerConfirmed: false, //处理完毕下面的客服经理批量确定
- ArbitrationDetermination: false, //批量仲裁确定
+ ArbitrationDetermination: false, //批量完结确定
Financial_accounting: false, //财务入账
defaultassignments: false, //默认指派
export_Report: true, //导出报表
@@ -1553,7 +1556,7 @@ const ButtonPermissions = computed(() => {
DingTalkNumber: false, //钉钉号填写
Batchdetermination: false, //批量确定
ManagerConfirmed: false, //处理完毕下面的客服经理批量确定
- ArbitrationDetermination: UserPermissions.value != '仓库客服', //批量仲裁确定
+ ArbitrationDetermination: UserPermissions.value != '仓库客服', //批量完结确定
Financial_accounting: false, //财务入账
defaultassignments: false, //默认指派
export_Report: true, //导出报表
@@ -1570,7 +1573,7 @@ const ButtonPermissions = computed(() => {
appeal: UserPermissions.value == '仓库客服', //申诉
Batchdetermination: false, //批量确定
ManagerConfirmed: false, //处理完毕下面的客服经理批量确定
- ArbitrationDetermination: false, //批量仲裁确定
+ ArbitrationDetermination: false, //批量完结确定
Financial_accounting: true && !AppealStatusT.value, //财务入账
defaultassignments: false, //默认指派
export_Report: true, //导出报表
@@ -1586,7 +1589,7 @@ const ButtonPermissions = computed(() => {
appeal: false, //申诉
Batchdetermination: false, //批量确定
ManagerConfirmed: false, //处理完毕下面的客服经理批量确定
- ArbitrationDetermination: false, //批量仲裁确定
+ ArbitrationDetermination: false, //批量完结确定
Financial_accounting: false, //财务入账
defaultassignments: false, //默认指派
export_Report: false, //导出报表
@@ -1602,7 +1605,7 @@ const ButtonPermissions = computed(() => {
appeal: false, //申诉
Batchdetermination: false, //批量确定
ManagerConfirmed: false, //处理完毕下面的客服经理批量确定
- ArbitrationDetermination: false, //批量仲裁确定
+ ArbitrationDetermination: false, //批量完结确定
Financial_accounting: false, //财务入账
defaultassignments: false, //默认指派
export_Report: false, //导出报表
@@ -1618,7 +1621,7 @@ const ButtonPermissions = computed(() => {
appeal: false, //申诉
Batchdetermination: false, //批量确定
ManagerConfirmed: UserPermissions.value == '总部客服经理', //处理完毕下面的客服经理批量确定
- ArbitrationDetermination: false, //批量仲裁确定
+ ArbitrationDetermination: false, //批量完结确定
Financial_accounting: false, //财务入账
defaultassignments: false, //默认指派
export_Report: true, //导出报表
@@ -1635,7 +1638,7 @@ const ButtonPermissions = computed(() => {
appeal: false,
Batchdetermination: false, //批量确定
ManagerConfirmed: false, //处理完毕下面的客服经理批量确定
- ArbitrationDetermination: false, //批量仲裁确定
+ ArbitrationDetermination: false, //批量完结确定
Financial_accounting: false, //财务入账
defaultassignments: false, //默认指派
export_Report: false, //导出报表
@@ -1737,7 +1740,7 @@ const Statusprocessing = val => {
} else if (item.workOrderStatus == 60) {
item.workOrderStatusNameS = columnList[10].checkarr[3].label; //超时未处理
} else if (item.workOrderStatus == 70) {
- item.workOrderStatusNameS = columnList[10].checkarr[6].label; //仲裁中
+ item.workOrderStatusNameS = columnList[10].checkarr[6].label; //完结
} else if (item.workOrderStatus == 80) {
item.workOrderStatusNameS = columnList[10].checkarr[7].label; //完结
} else if (item.workOrderStatus == 90) {
@@ -1894,6 +1897,22 @@ const OnLoad = () => {
};
OnLoad();
+// 监听路由地址变化
+watch(() => route.path, (newPath, oldPath) => {
+ if ($useStore.state.isRefresh.refreshObj.aftersalesWorkOrder) {
+ // 重新请求数据
+ OnLoad();
+ $useStore.commit('EDIT_REFRESHITEM', { title: 'aftersalesWorkOrder', status: false });
+ }
+});
+// onActivated(() => {
+// console.log('进入缓存');
+// if ($useStore.state.isRefresh.refreshObj.aftersalesWorkOrder) {
+// // 重新请求数据
+// OnLoad();
+// $useStore.commit('EDIT_REFRESHITEM', { title: 'aftersalesWorkOrder', status: false });
+// }
+// });
// 字典公共函数
function updateDictionary(targetArray, dictionaryType) {
getDictionaryBiz(dictionaryType).then(res => {
@@ -2498,7 +2517,7 @@ const Appealbutton = state => {
loadingappeal.value = false; //关闭加载效果
console.log(res, '功返回值');
ProcessingPartyState.value = false; //关闭处理方
- ArbitrationStatus.value = false; //不可以申请仲裁
+ ArbitrationStatus.value = false; //不可以申请完结
AppealeditorState.value = false; //关闭编辑状态
appealData.value = {}; //清空当前行申诉数据
if (AppealStatusT.value) {
@@ -2836,7 +2855,7 @@ const appealFn = val => {
// 申诉列表
const AppealTab = val => {
- console.log(val, '仲裁中当前列表');
+ console.log(val, '完结当前列表');
arbitrationTemp.value = val;
if (val == 0) {
@@ -2846,7 +2865,7 @@ const AppealTab = val => {
console.log('处理完毕');
ProcessingPartyState.value = false; //关闭处理方
details.query.workOrderStatus = 80;
- ArbitrationStatus.value = false; //不可以申请仲裁
+ ArbitrationStatus.value = false; //不可以申请完结
// empty(); //清空搜索数据
let data = {
...details.query,
@@ -2996,7 +3015,7 @@ const DataRendering = (val, input, Refresh) => {
if (val == 0) {
ProcessingPartyState.value = false; //关闭处理方
- ArbitrationStatus.value = true; //可以以申请仲裁
+ ArbitrationStatus.value = true; //可以以申请完结
if (UserPermissions.value == '仓库客服') {
//全部
data.workOrderStatus = 1000;
@@ -3019,7 +3038,7 @@ const DataRendering = (val, input, Refresh) => {
details.query.workOrderStatus = 40;
}
ProcessingPartyState.value = false; //关闭处理方
- ArbitrationStatus.value = true; //可以申请仲裁
+ ArbitrationStatus.value = true; //可以申请完结
Tableheaderswitching(columnList);
IndexTable(data, Refresh);
} else if (val == 2) {
@@ -3027,7 +3046,7 @@ const DataRendering = (val, input, Refresh) => {
data.workOrderStatus = 30;
details.query.workOrderStatus = 30;
ProcessingPartyState.value = false; //关闭处理方
- ArbitrationStatus.value = false; //不可以申请仲裁
+ ArbitrationStatus.value = false; //不可以申请完结
Tableheaderswitching(columnList);
IndexTable(data, Refresh);
} else if (val == 3) {
@@ -3043,14 +3062,14 @@ const DataRendering = (val, input, Refresh) => {
data.workOrderStatus = 10;
details.query.workOrderStatus = 10;
- ArbitrationStatus.value = true; //可以申请仲裁
+ ArbitrationStatus.value = true; //可以申请完结
Tableheaderswitching(columnList);
IndexTable(data, Refresh);
} else if (val == 4) {
// 理赔金额未出
ProcessingPartyState.value = false; //关闭处理方
details.query.workOrderStatus = null;
- ArbitrationStatus.value = false; //不可以申请仲裁
+ ArbitrationStatus.value = false; //不可以申请完结
Tableheaderswitching(Claimsfield); //切换表格
settlementclaim(data, Refresh);
} else if (val == 5) {
@@ -3058,7 +3077,7 @@ const DataRendering = (val, input, Refresh) => {
ProcessingPartyState.value = false; //关闭处理方
data.workOrderStatus = 70;
details.query.workOrderStatus = 70;
- ArbitrationStatus.value = false; //不可以申请仲裁
+ ArbitrationStatus.value = false; //不可以申请完结
IndexTable(data, Refresh);
} else if (val == 6 && AppealStatusT.value) {
@@ -3075,7 +3094,7 @@ const DataRendering = (val, input, Refresh) => {
ProcessingPartyState.value = false; //关闭处理方
data.workOrderStatus = 80;
details.query.workOrderStatus = 80;
- ArbitrationStatus.value = false; //不可以申请仲裁
+ ArbitrationStatus.value = false; //不可以申请完结
Tableheaderswitching(columnList); //表头切换
IndexTable(data, Refresh);
var bodyContent = document.querySelectorAll('.maboxhi');
@@ -3089,7 +3108,7 @@ const DataRendering = (val, input, Refresh) => {
ProcessingPartyState.value = false; //关闭处理方
data.workOrderStatus = null;
details.query.workOrderStatus = null;
- ArbitrationStatus.value = false; //不可以申请仲裁
+ ArbitrationStatus.value = false; //不可以申请完结
Tableheaderswitching(timeoutList); //表头切换
TimeoutHandling(data, Refresh); //调用超时未出理
} else if (val == 8) {
@@ -3108,7 +3127,7 @@ const DataRendering = (val, input, Refresh) => {
data.workOrderStatus = 500;
details.query.workOrderStatus = 500;
}
- ArbitrationStatus.value = true; //可以申请仲裁
+ ArbitrationStatus.value = true; //可以申请完结
Tableheaderswitching(columnList);
IndexTable(data, Refresh);
}
@@ -3362,7 +3381,7 @@ const DetermineStorage = val => {
console.log(data, '处理好的值');
};
-// 仲裁里面确定按钮
+// 完结里面确定按钮
const EndArbitration = val => {
console.log(val, '当前参数');
let data = {
@@ -3389,7 +3408,7 @@ const EndArbitration = val => {
pageLoad.value=false
});
};
-// 批量仲裁确定
+// 批量完结确定
const AllEndArbitration = () => {
// 校验是否勾选了数据
if (!details.selectionList.length) {
@@ -3402,8 +3421,8 @@ const AllEndArbitration = () => {
let data = {
assignList: [],
};
- data['assignList'] = details.selectionList.map(res => res.id); //获取批量仲裁的ID
- console.log('批量仲裁确定处理好的值');
+ data['assignList'] = details.selectionList.map(res => res.id); //获取批量完结的ID
+ console.log('批量完结确定处理好的值');
$_updateArbitrateStatu(data)
.then(res => {
console.log(res, '处理成功');
@@ -3696,12 +3715,12 @@ const Assignbutton = () => {
dialogassign.value = false; //关闭指派工单弹窗
});
};
-// 客服介入(申请仲裁)
+// 客服介入(申请完结)
const arbitrate = () => {
if (!details.selectionList.length) {
console.log('当前没有数据');
ElMessage({
- message: '请勾要仲裁的数据',
+ message: '请勾要完结的数据',
type: 'warning',
});
return;
@@ -3711,7 +3730,7 @@ const arbitrate = () => {
); //判断勾选中的数据是否存在不符合条件的
if (!resultState) {
ElMessage({
- message: '勾选数据不符合(待处理或处理中才可以申请仲裁)',
+ message: '勾选数据不符合(待处理或处理中才可以申请完结)',
type: 'warning',
});
return;
@@ -3729,12 +3748,12 @@ const CustomerServiceintervention = () => {
data['assignList'].push(item.id);
});
- console.log(data, '仲裁处理好的参数');
+ console.log(data, '完结处理好的参数');
loadingCustomer.value = true; //开启加载
// 发送请求
$_arbitrate(data)
.then(res => {
- console.log(res, '仲裁成功返回值');
+ console.log(res, '完结成功返回值');
// PagerefreshPublic();
DataRendering(TabPermissions.value, details.query, true);
if (res.data.code == 200) {
@@ -3937,7 +3956,7 @@ const CompletedSubmission = () => {
// }
if (!Reasonarbitration.value) {
ElMessage({
- message: '请填写仲裁原因',
+ message: '请填写完结原因',
type: 'warning',
});
return;
diff --git a/src/views/aftersales/aftersalesWorkOrderAdd.vue b/src/views/aftersales/aftersalesWorkOrderAdd.vue
index 5021c5ab..504a0f26 100644
--- a/src/views/aftersales/aftersalesWorkOrderAdd.vue
+++ b/src/views/aftersales/aftersalesWorkOrderAdd.vue
@@ -31,6 +31,7 @@
placeholder="请选择异常类型"
style="width: 100%"
clearable
+ @change="workOrderTypeChange"
>
@@ -326,6 +327,32 @@
clearable
/>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -684,13 +718,16 @@
-->
-
+
|