VUE+elementui组件在table-cell单元格中绘制微型echarts图
程序员文章站
2022-04-06 13:21:14
需求效果图示例实际完成效果图**代码实现注:table表格为二次封装的子组件-在table表格中 根据 scope.$index动态设置元素的id ,便于指定单元格的echarts初始化;-在单元格中...
需求效果图示例
实际完成效果图
**
代码实现
注:table表格为二次封装的子组件
-在table表格中 根据 scope.$index动态设置元素的id ,便于指定单元格的echarts初始化;
-在单元格中触发一个方法,传入当前的scope.row数据或者指定其他数据,并且传入 scope.$index 以及一个字符串便于识别当前是哪条数据的charts
-在方法中绘制echarts**
<el-table-column align="center"> <template slot="header" slot-scope="scope"> <div v-if="tabletitle == 'sale'"> <p v-if="datetype != '1'"> 近{{ datetype }}天累计 <br /> / 日均销量 </p> <p v-if="datetype == '1'">昨日累计销量</p> </div> <div v-if="tabletitle == 'fav'"> <p v-if="datetype != '1'"> 近{{ datetype }}天累计 <br /> / 日均收藏量 </p> <p v-if="datetype == '1'">昨日累计收藏</p> </div> </template> <div slot-scope="scope" style="white-space:nowrap;"> <span class="xiao-red-color">{{ realrowname(scope.row, '0') || '-' }}</span> <span v-if="datetype != '1'" class="xiao-red-color"> / {{ isnan(realrowname(scope.row, '0')) ? '-' : (realrowname(scope.row, '0') / (parseint(datetype) - calcshelftime(scope.row.real_created_time, '0') < 0 ? parseint(datetype): calcshelftime(scope.row.real_created_time, '0'))).tofixed(0)}} </span> </div> </el-table-column> <el-table-column label="每日销量趋势" align="center" v-if="datetype != '1'"> <template slot-scope="scope"> {{ drawecharts(scope.row, scope.$index, 'sale') }} <div :id="`tiger-sale-trend-index` + scope.$index" class="tiger-trend-charts"></div> </template> </el-table-column>
绘制echarts的方法(数据仅为示例,实际开发根据传进来的scope.row数据)注意此处初始化echarts对象时采用vue的this.$nexttick方法,以防获取不到未渲染的节点元素。
drawecharts() { //绘制趋势echarts // console.log(arguments) let option = { tooltip: { trigger: 'axis' }, // legend: { // data: ['每日30天销量分析'] // }, grid: { left: '10px', right: '30px', top: '40px', bottom: '10px', containlabel: true }, xaxis: { show: false, type: 'category', boundarygap: false, data: ['03-21', '03-22', '03-23', '03-24', '03-25', '03-26', '03-27'] }, yaxis: { show: false, type: 'value' }, series: [ { name: '每日30天销量分析', type: 'line', data: [120, 500, 101, 86, 173, 230, 6] } ] }; let chartid = 'tiger-' + arguments[2] + '-trend-index' + arguments[1]; this.$nexttick(() => { let mychart = this.echarts.init(document.getelementbyid(chartid), 'macarons'); mychart.setoption(option); mychart.resize(); }); },
and 不要忘记设置echarts的高度,否则一辈子也出不来图形(示例,根据实施开发调整)
&-frame { display: flex; flex-flow: column nowrap; justify-content: space-between; .price-bar { color: red !important; } .tiger-trend-charts { height: 60px; min-width: 100px; } }
到此这篇关于vue+elementui组件在table-cell单元格中绘制微型echarts图的文章就介绍到这了,更多相关vue elementui 单元格echarts图内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!