简介
该用户还未填写简介
擅长的技术栈
可提供的服务
暂无可提供的服务
自定义y轴刻度线条数定义最大值:max最小值:min刻度线数量:splitNumber刻度间隔:intervalyAxis: { // y轴min: 0, // 刻度最小值max: 999, // 刻度最大值(需要动态获取最大值,并且能被3整除(向下取整再乘回来))splitNumber: 3, // 横线数interval: 333, // 刻度间隔axisLine: { // 坐标抽lineS
需求:vue-echarts放子组件里父组件传值调用它当父组件的数据变更了子组件里的echart重绘思路:子组件watch监听 props数据的变更当监听到变更重新定义 options的值父组件正常传值即可子组件<template><chart style="width:160px; height:190px;"ref="yibiaopan":options="orgOption
<template><chart style="width: 100%; height: 350px"ref="chart1":options="orgOptions":auto-resize="true"></chart></template>methods: {resizeTheChart () {if (this.$refs &&
<chart style="width:100%; height:320px;"ref="chart1":options="orgOptions":auto-resize="true"@click='onClick'></chart>methods: {onClic...
自定义y轴刻度线条数定义最大值:max最小值:min刻度线数量:splitNumber刻度间隔:intervalyAxis: { // y轴min: 0, // 刻度最小值max: 999, // 刻度最大值(需要动态获取最大值,并且能被3整除(向下取整再乘回来))splitNumber: 3, // 横线数interval: 333, // 刻度间隔axisLine: { // 坐标抽lineS
问题:想把mac那个参数,传到.then回调的方法里解决.then(res => { this.getAlarmDataSucc(res, mac) })getAlarmDataSucc (res, mac) {
<div class="top" ref="top">mounted () {let topHeight = this.$refs.top.offsetHeight // 头部高度console.log(topHeight)}