|
|
|
@ -549,11 +549,14 @@ const HistoricalPackageList = ref([]); //历史包件数组
|
|
|
|
|
const HistorIndex = ref(0); //历史包件索引 |
|
|
|
|
const TotalClaimAmount = ref(0); //总金额 |
|
|
|
|
const dialogReturn = ref(false); //打回弹窗 |
|
|
|
|
const ProcessingRecords =ref([]);//处理放记录用于匹配按钮 |
|
|
|
|
const repulse = ref(false); //加载效果 |
|
|
|
|
const amplifyurl = ref(''); //当前点击的图片 |
|
|
|
|
const amplifysrcList = ref([]); //图片循环列表 |
|
|
|
|
const RouteIndexs = ref(''); //进入前的页面索引 |
|
|
|
|
const UserPermissions = ref('');//当前状态 |
|
|
|
|
const warehouseInfo=ref('');//仓库信息 |
|
|
|
|
const warehouseState=ref(false);//仓库权限 |
|
|
|
|
const PackageInfo = ref([ |
|
|
|
|
//包件信息 |
|
|
|
|
{ packageCode: '', orderCode: '', waybillNumber: '', brandName: '' }, |
|
|
|
@ -621,7 +624,7 @@ function updateDictionary(targetArray, dictionaryType) {
|
|
|
|
|
console.log(UserPermissions.value, '当前角色权限'); |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
warehouseInfo.value = localStorage.getItem('WarehouseName'); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 图片上传必须携带TOKEN |
|
|
|
@ -680,10 +683,10 @@ const ButtonPermissions = computed(() => {
|
|
|
|
|
return { |
|
|
|
|
reply: UserPermissions.value == '仓库客服', //回复按钮 |
|
|
|
|
ProcessingResults: UserPermissions.value == '仓库客服', //处理结果按钮 |
|
|
|
|
end: UserPermissions.value == '职能客服', //完结按钮 |
|
|
|
|
repulse: UserPermissions.value == '职能客服', //打回按钮 |
|
|
|
|
end: UserPermissions.value != '仓库客服', //完结按钮 |
|
|
|
|
repulse: UserPermissions.value != '仓库客服', //打回按钮 |
|
|
|
|
ArbitrationCompleted: UserPermissions.value == '职能客服', //客服仲裁完结 |
|
|
|
|
edit: false, //编辑 |
|
|
|
|
edit:UserPermissions.value == '仓库客服', //编辑 |
|
|
|
|
}; |
|
|
|
|
case RouteIndexs.value == 4: //理赔金额未出 |
|
|
|
|
return { |
|
|
|
@ -696,7 +699,7 @@ const ButtonPermissions = computed(() => {
|
|
|
|
|
}; |
|
|
|
|
case RouteIndexs.value == 5: //仲裁中 |
|
|
|
|
return { |
|
|
|
|
reply: false, //回复按钮 |
|
|
|
|
reply: UserPermissions.value == '职能客服', //回复按钮 |
|
|
|
|
ProcessingResults: false, //处理结果按钮 |
|
|
|
|
end: false, //完结按钮 |
|
|
|
|
repulse: false, //打回按钮 |
|
|
|
@ -832,6 +835,7 @@ const onLoad = () => {
|
|
|
|
|
$_getInfo({ id: $route.query.id }).then(res => { |
|
|
|
|
console.log(res, '回显返回值参数'); |
|
|
|
|
Indexform.value = res.data.data; |
|
|
|
|
|
|
|
|
|
Indexform.value['result'] = []; |
|
|
|
|
Indexform.value['processor'] = []; |
|
|
|
|
//图片处理回显 |
|
|
|
@ -869,10 +873,12 @@ const onLoad = () => {
|
|
|
|
|
res.data.data.processorVOList.forEach(item => { |
|
|
|
|
if (item.typesOf == 2) { |
|
|
|
|
// 处理方 |
|
|
|
|
ProcessingRecords.value.push(item.businessId) |
|
|
|
|
Indexform.value.processor.push(item.businessId); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
// let a=['张三','李四'] |
|
|
|
|
// let b=['张三'] |
|
|
|
|
companyProportion.value = 100 - sum; |
|
|
|
|
|
|
|
|
|
// updateDictionary(columnList[2].checkarr, 'pc_work_order'); //异常类型 |
|
|
|
@ -905,6 +911,7 @@ const onLoad = () => {
|
|
|
|
|
// 处理结果说明回显 |
|
|
|
|
Indexform.value.resultDescription = res.data.data.processingResultsVO.resultDescription; |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
}; |
|
|
|
|
onLoad(); //初始化程序 |
|
|
|
|
// 异常类型事件 |
|
|
|
@ -1481,9 +1488,10 @@ const EndJump = () => {
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.foot_btn { |
|
|
|
|
width: 100%; |
|
|
|
|
position: fixed; |
|
|
|
|
bottom: 0; |
|
|
|
|
left: 42%; |
|
|
|
|
left: 50%; |
|
|
|
|
height: 40px; |
|
|
|
|
display: flex; |
|
|
|
|
align-items: center; |
|
|
|
|