|
@@ -14,7 +14,7 @@ const layoutSize = computed(() => {
|
|
|
case "ZiGong":
|
|
|
return "140%";
|
|
|
case "LuZhou":
|
|
|
- return "120%";
|
|
|
+ return "95%";
|
|
|
}
|
|
|
});
|
|
|
export const optionHandle = (regionCode: string, list: object[]) => {
|
|
@@ -78,23 +78,23 @@ export const optionHandle = (regionCode: string, list: object[]) => {
|
|
|
<div class='custom-tooltip-style-box'>
|
|
|
<div class="ball">
|
|
|
<div class="ball-value">${
|
|
|
- params.data.satisfiedRate
|
|
|
+ params.data?.satisfiedRate
|
|
|
}<span>%</span></div>
|
|
|
<div class="ball-text">满意率</div>
|
|
|
</div>
|
|
|
<div class="custom-tooltip-style-box-text">
|
|
|
<div class="custom-tooltip-style-box-text-item">在办工单:<span>${
|
|
|
- params.data.handlingCount
|
|
|
+ params.data?.handlingCount
|
|
|
}</span> <b> 件</b></div>
|
|
|
<div class="custom-tooltip-style-box-text-item">已办工单:<span>${
|
|
|
- params.data.filedCount
|
|
|
+ params.data?.filedCount
|
|
|
}</span> <b> 件</b></div>
|
|
|
<div class="custom-tooltip-style-box-text-item">超期工单:<span>${
|
|
|
- params.data.overTimeCount
|
|
|
+ params.data?.overTimeCount
|
|
|
}</span> <b> 件</b></div>
|
|
|
<div class="custom-tooltip-style-box-text-item">高频热点:<span class="last">${
|
|
|
- params.data.hotspotName
|
|
|
- ? params.data.hotspotName
|
|
|
+ params.data?.hotspotName
|
|
|
+ ? params.data?.hotspotName
|
|
|
: "-"
|
|
|
}</span></div>
|
|
|
</div>
|