|
@@ -1,7 +1,6 @@
|
|
|
<template>
|
|
|
<view class="content">
|
|
|
<view @click="echarts.onClick" :prop="option" :change:prop="echarts.updateEcharts" id="echarts" class="echarts"></view>
|
|
|
-
|
|
|
</view>
|
|
|
</template>
|
|
|
|
|
@@ -35,7 +34,8 @@
|
|
|
color: ['#67e0e3', '#e062ae'],
|
|
|
tooltip: {
|
|
|
trigger: 'item',
|
|
|
- formatter: "{a} <br/>{b}: {c} ({d}%)"
|
|
|
+ // formatter: "{b}: {c} ({d}%)",
|
|
|
+ formatter: "{b}: {c} "
|
|
|
},
|
|
|
title: [{ //aa标题
|
|
|
text: '{val|' + this.bindData.integratedAlarmCount + '}\n{name|' + title + '}',
|
|
@@ -159,7 +159,7 @@
|
|
|
// 动态引入较大类库避免影响页面展示
|
|
|
const script = document.createElement('script')
|
|
|
// view 层的页面运行在 www 根目录,其相对路径相对于 www 计算
|
|
|
- script.src = '/static/echarts.js'
|
|
|
+ script.src = '/static/echarts.min.js'
|
|
|
script.onload = this.initEcharts.bind(this)
|
|
|
document.head.appendChild(script)
|
|
|
}
|
|
@@ -189,7 +189,9 @@
|
|
|
display: flex;
|
|
|
flex-direction: column;
|
|
|
align-items: center;
|
|
|
- justify-content: center;
|
|
|
+ justify-content: center;
|
|
|
+ width:100%;
|
|
|
+ height:100%
|
|
|
}
|
|
|
|
|
|
.echarts {
|