123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210 |
- <template>
- <div shadow="never" class="homeBoxCard" v-loading="loading">
- <div
- style="height: 400px; width: 700px"
- ref="lineChartBanlance"
- v-show="flag"
- />
- </div>
- </template>
- <script>
- import { defineComponent, onMounted, ref, watch } from 'vue'
- import * as echarts from 'echarts'
- export default defineComponent({
- name: 'innerLineChart',
- props: {
- yinSuChart: Object,
- aa: Number,
- },
- setup(props) {
- const flag = ref(true)
- let lineChartBanlance = ref(null)
- // 读取数据 func
- const loading = ref(true)
- const getData = async () => {
- console.log('子组件中的props.yinSuChart.cos')
- // console.log(props.yinSuChart)
- console.log(props.yinSuChart)
- console.log(props.yinSuChart.dataTime)
- loading.value = false
- }
- function echarts2() {
- let myChart = echarts.init(lineChartBanlance.value)
- // 绘制图表
- myChart.setOption({
- color: ['#1187FF'],
- legend: {
- top: '0',
- data: ['功率因素'],
- },
- tooltip: {
- trigger: 'axis',
- axisPointer: { type: 'cross' },
- },
- grid: {
- left: '20',
- right: '40',
- top: '50',
- bottom: '30',
- containLabel: true,
- },
- xAxis: {
- axisLabel: {
- color: '#444',
- fontSize: 14,
- },
- /*改变xy轴颜色*/
- axisLine: {
- lineStyle: {
- color: '#444',
- width: 1, //这里是为了突出显示加上的
- },
- },
- boundaryGap: false,
- // data: props.value.dataTime,
- // data: [1, 2, 3, 4, 5, 6, 7, 8],
- },
- yAxis: {
- name: '%',
- nameTextStyle: {
- color: 'black',
- fontSize: 10,
- },
- type: 'value',
- axisTick: {
- show: true, //去除刻度线
- },
- axisLabel: {
- color: 'black', // 文本颜色
- },
- axisLine: {
- show: true, // 去除轴线
- lineStyle: {
- color: 'black',
- },
- },
- splitNumber: 5,
- splitLine: {
- show: true,
- lineStyle: {
- color: '#9d9d9d',
- },
- },
- },
- series: [
- {
- name: '电流不平衡度',
- type: 'line',
- symbolSize: 7,
- smooth: false,
- // data: props.yinSuChart.value.cos,
- data: [1, 2, 3, 4, 5, 6, 7, 8],
- markLine: {
- //最大值和最小值
- data: [
- {
- yAxis: 30,
- label: {
- position: 'middle',
- formatter: '严重三项不平衡',
- },
- lineStyle: {
- width: 2,
- color: '#FF5D1D',
- },
- },
- {
- yAxis: 14,
- label: {
- position: 'middle',
- formatter: '不平衡度',
- },
- lineStyle: {
- width: 2,
- color: '#f2e251',
- },
- },
- ],
- },
- },
- ],
- })
- window.addEventListener('resize', () => {
- myChart.resize()
- })
- }
- const writeValue = (val) => {
- val
- getData()
- echarts2()
- }
- //监听变化
- watch(
- () => props.yinSuChart,
- (newVal, oldVal, clear) => {
- alert(2)
- // 执行异步任务,并得到关闭异步任务的 id
- // console.log(newVal)
- let id = writeValue(newVal, oldVal)
- // 如果 watch 监听被重复执行了,则会先清除上次未完成的异步任务
- clear(() => clearTimeout(id))
- },
- { lazy: true }
- )
- onMounted(() => {
- getData()
- echarts2()
- })
- return {
- lineChartBanlance,
- loading,
- flag,
- echarts2,
- }
- },
- })
- </script>
- <style lang="scss" scoped>
- .homeBoxCard {
- margin-bottom: 24px;
- ::v-deep(.el-card__header) {
- padding-left: 12px;
- padding-right: 12px;
- }
- ::v-deep(.el-card__body) {
- padding: 12px;
- font-size: 14px;
- line-height: 1.5715;
- }
- ::v-deep(.el-divider) {
- margin: 8px 0;
- }
- .num {
- font-size: 30px;
- color: #515a6e;
- }
- .height400 {
- height: 400px;
- }
- }
- </style>
|