|
@@ -17,7 +17,7 @@
|
|
|
<div class="h10"></div>
|
|
|
<div class="find-data">
|
|
|
<div class="left-view saga-border">
|
|
|
- <doughnut v-if="!!sum" type="left" :name="dataName" width="200" height="200" :renderData="echartsData"></doughnut>
|
|
|
+ <doughnut v-if="!!sum" :sum="sum" type="left" :name="dataName" width="200" height="200" :renderData="echartsData"></doughnut>
|
|
|
<div v-else class="center">
|
|
|
<i class="iconwushuju iconfont"></i>
|
|
|
暂无数据
|
|
@@ -224,15 +224,15 @@
|
|
|
let data = res.Content[0]
|
|
|
this.dataName = res.Content[0].Name
|
|
|
this.echartsData = [{
|
|
|
- name: "无法识别-" + (this.type != 'type' ? data.Equipmentparameterignorestandard : data.Equipmenttypeignorestandard),
|
|
|
+ name: "无法识别:" + (this.type != 'type' ? data.Equipmentparameterignorestandard : data.Equipmenttypeignorestandard),
|
|
|
value: (this.type != 'type' ? data.Equipmentparameterignorestandard : data.Equipmenttypeignorestandard)
|
|
|
},
|
|
|
{
|
|
|
- name: "未识别-" + (this.type != 'type' ? data.Equipmentparameternotstandard : data.Equipmenttypenotstandard),
|
|
|
+ name: "未识别:" + (this.type != 'type' ? data.Equipmentparameternotstandard : data.Equipmenttypenotstandard),
|
|
|
value: (this.type != 'type' ? data.Equipmentparameternotstandard : data.Equipmenttypenotstandard)
|
|
|
},
|
|
|
{
|
|
|
- name: "已识别-" + (this.type != 'type' ? data.Equipmentparameterstandard : data.Equipmenttypestandard),
|
|
|
+ name: "已识别:" + (this.type != 'type' ? data.Equipmentparameterstandard : data.Equipmenttypestandard),
|
|
|
value: (this.type != 'type' ? data.Equipmentparameterstandard : data.Equipmenttypestandard)
|
|
|
}
|
|
|
]
|