|
|
|
@ -1,7 +1,7 @@
|
|
|
|
|
<template> |
|
|
|
|
<basic-container> |
|
|
|
|
<div class="avue-crud"> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-descriptions |
|
|
|
|
title="客户信息详情" |
|
|
|
|
:column="2" |
|
|
|
@ -42,7 +42,7 @@
|
|
|
|
|
客户类型 |
|
|
|
|
</div> |
|
|
|
|
</template> |
|
|
|
|
{{ detail.clientType }} |
|
|
|
|
{{ detail.clientTypeName }} |
|
|
|
|
</el-descriptions-item> |
|
|
|
|
<el-descriptions-item> |
|
|
|
|
<template #label> |
|
|
|
@ -53,7 +53,7 @@
|
|
|
|
|
服务类型 |
|
|
|
|
</div> |
|
|
|
|
</template> |
|
|
|
|
{{ detail.typeServiceList }} |
|
|
|
|
{{ detail.typeServiceName }} |
|
|
|
|
</el-descriptions-item> |
|
|
|
|
<el-descriptions-item> |
|
|
|
|
<template #label> |
|
|
|
@ -99,18 +99,7 @@
|
|
|
|
|
</template> |
|
|
|
|
{{ detail.detailedly }} |
|
|
|
|
</el-descriptions-item> |
|
|
|
|
<el-descriptions-item> |
|
|
|
|
<template #label> |
|
|
|
|
<div class="cell-item"> |
|
|
|
|
<el-icon :style="iconStyle"> |
|
|
|
|
<!-- <office-building /> --> |
|
|
|
|
</el-icon> |
|
|
|
|
合同附件 |
|
|
|
|
</div> |
|
|
|
|
</template> |
|
|
|
|
<el-image style="width: 100px; height: 100px;border-radius: 5px;" :src="detail.leaseAccessories" :fit="fit" /> |
|
|
|
|
<!-- 图片 leaseAccessories --> |
|
|
|
|
</el-descriptions-item> |
|
|
|
|
|
|
|
|
|
<el-descriptions-item> |
|
|
|
|
<template #label> |
|
|
|
|
<div class="cell-item"> |
|
|
|
@ -133,6 +122,18 @@
|
|
|
|
|
</template> |
|
|
|
|
{{ detail.contractEntTime }} |
|
|
|
|
</el-descriptions-item> |
|
|
|
|
<el-descriptions-item> |
|
|
|
|
<template #label> |
|
|
|
|
<div class="cell-item"> |
|
|
|
|
<el-icon :style="iconStyle"> |
|
|
|
|
<!-- <office-building /> --> |
|
|
|
|
</el-icon> |
|
|
|
|
合同附件 |
|
|
|
|
</div> |
|
|
|
|
</template> |
|
|
|
|
<el-image style="width: 100px; height: 100px;border-radius: 5px;" :src="detail.leaseAccessories" :fit="fit" /> |
|
|
|
|
<!-- 图片 leaseAccessories --> |
|
|
|
|
</el-descriptions-item> |
|
|
|
|
<el-descriptions-item> |
|
|
|
|
<template #label> |
|
|
|
|
<div class="cell-item"> |
|
|
|
@ -153,6 +154,8 @@
|
|
|
|
|
import { getDetail } from '@/api/basicdata/basicClient'; |
|
|
|
|
import { useRoute, useRouter } from 'vue-router'; |
|
|
|
|
import { reactive,onMounted } from 'vue'; |
|
|
|
|
import { getDictionaryBiz } from '@/api/system/dict'; |
|
|
|
|
import { getLazyTreeAll } from '@/api/base/region'; |
|
|
|
|
const route = useRoute(); |
|
|
|
|
const router=useRouter() |
|
|
|
|
const details = reactive({ |
|
|
|
@ -169,9 +172,67 @@ watchEffect(()=>{
|
|
|
|
|
init() |
|
|
|
|
}) |
|
|
|
|
async function init() { |
|
|
|
|
//字典 |
|
|
|
|
let a =await getDictionaryBiz('client_type'); |
|
|
|
|
|
|
|
|
|
let b = await getLazyTreeAll(); |
|
|
|
|
let fw = await getDictionaryBiz('basic_freight_type'); |
|
|
|
|
|
|
|
|
|
if(!!details.id){ |
|
|
|
|
let res=await getDetail(details.id) |
|
|
|
|
details.detail=res.data.data |
|
|
|
|
let res=await getDetail(details.id); |
|
|
|
|
const dat = res.data.data; |
|
|
|
|
if(!!dat){ |
|
|
|
|
console.log("客户类型》》》》》",a.data.data); |
|
|
|
|
console.log("地址类型》》》",b); |
|
|
|
|
console.log("什么鬼",dat); |
|
|
|
|
let keh = a.data.data.find( kh => parseInt(kh.dictKey) == parseInt(dat.clientType) ); |
|
|
|
|
|
|
|
|
|
//客户类型 |
|
|
|
|
if(!!keh){ |
|
|
|
|
if (parseInt(keh.dictKey) == parseInt(dat.clientType)) { |
|
|
|
|
dat.clientTypeName = keh.dictValue; |
|
|
|
|
console.log('==-=-=', dat.typeService, keh.dictKey, keh.dictValue); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
if (!dat.clientType ) { |
|
|
|
|
dat.clientTypeName = '无'; |
|
|
|
|
} |
|
|
|
|
if (!dat.typeServiceBusiness ) { |
|
|
|
|
dat.typeServiceName = '无'; |
|
|
|
|
}else{ |
|
|
|
|
let tyName = []; |
|
|
|
|
dat.typeServiceBusiness.forEach( ls =>{ |
|
|
|
|
let fuw = fw.data.data.find( fwu => parseInt(fwu.dictKey) == parseInt(ls.typeService) ); |
|
|
|
|
//服务类型 |
|
|
|
|
if(!!fuw){ |
|
|
|
|
tyName.push( fuw.dictValue); |
|
|
|
|
console.log('==-=-=', dat.typeService, fuw.dictKey, fuw.dictValue); |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
dat.typeServiceName = tyName.join(","); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
//地址 |
|
|
|
|
let dz = ''; |
|
|
|
|
let arrsheng = b.data.data.filter((i) => { |
|
|
|
|
return dat.bladeRegionProvinceId == i.value; |
|
|
|
|
}); |
|
|
|
|
if(arrsheng.length == 0) return |
|
|
|
|
// console.log("========",JSON.parse(JSON.stringify(arrsheng)) ); |
|
|
|
|
let arrshi = arrsheng[0].children.filter((i) => { |
|
|
|
|
return dat.bladeRegionCityId == i.value; |
|
|
|
|
}); |
|
|
|
|
// console.log("========",JSON.parse(JSON.stringify(arrsheng)) ); |
|
|
|
|
let arrqu = arrshi[0].children.filter((i) => { |
|
|
|
|
return dat.bladeRegionAreaId == i.value; |
|
|
|
|
}); |
|
|
|
|
// console.log("========",JSON.parse(JSON.stringify(arrsheng)) ); |
|
|
|
|
dz = arrsheng[0].label + (arrshi[0].label?`/${arrshi[0].label}`:``) + (arrqu[0]?.label?`/${arrqu[0]?.label}`:''); |
|
|
|
|
dat.bladeRegionProvinceId = dz; |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
details.detail=dat; |
|
|
|
|
console.log("数据类型》》》》》",details.detail); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|