BI根据客户提出的优化数据,中间的要对上

右上方的数据对上
pull/2/head
guoyuepeng 2023-11-16 09:03:21 +08:00
parent d0f38ccda9
commit ba989d3cf1
1 changed files with 16 additions and 16 deletions

View File

@ -212,11 +212,11 @@
</div> </div>
<div v-for="(item,index) in safetyEnvironmentalInspectionList" :key="index"> <div v-for="(item,index) in safetyEnvironmentalInspectionList" :key="index">
<span>{{ <span>{{
item.INSPECTION_PLACE.length > 6 ? item.INSPECTION_PLACE.substr(0, 6) + '...' : item.INSPECTION_PLACE item.INSPECTION_PLACE.length > 6 ? item.INSPECTION_PLACE.substr(0, 6) + '...' : item.INSPECTION_PLACE
}}</span> }}</span>
<span>{{ <span>{{
item.INSPECTION_TIME_START.length > 10 ? item.INSPECTION_TIME_START.substr(0, 10) + '...' : item.INSPECTION_TIME_START item.INSPECTION_TIME_START.length > 10 ? item.INSPECTION_TIME_START.substr(0, 10) + '...' : item.INSPECTION_TIME_START
}}</span> }}</span>
</div> </div>
</div> </div>
</div> </div>
@ -1065,8 +1065,8 @@ export default {
labelLine: { labelLine: {
normal: { normal: {
show: true, show: true,
length: 15, length: 1,
length2: 15 length2: 1
} }
}, },
label: { label: {
@ -1094,9 +1094,13 @@ export default {
right: '0%', right: '0%',
bottom: '15%', bottom: '15%',
data: [ data: [
'忽略', // ''
'一般', // '',
'特殊处置', // '',
// '',
// ''
'轻微隐患',
'一般隐患',
'较大隐患', '较大隐患',
'重大隐患' '重大隐患'
], ],
@ -1134,22 +1138,18 @@ export default {
data: [ data: [
{ {
value: yinhuanCount[0], value: yinhuanCount[0],
name: '忽略' name: '轻微隐患'
}, },
{ {
value: yinhuanCount[1], value: yinhuanCount[1],
name: '一般' name: '一般隐患'
}, },
{ {
value: yinhuanCount[2], value: yinhuanCount[2],
name: '特殊处置'
},
{
value: yinhuanCount[3],
name: '较大隐患' name: '较大隐患'
}, },
{ {
value: yinhuanCount[4], value: yinhuanCount[3],
name: '重大隐患' name: '重大隐患'
}, },
{ {