!-- flowchart 箭头图标 勿删 --
<div :id="'echartItem'+index" v-for="(item,index) in echartListAll" :key="index">
<Page :current="item.excelSet.currentPage"
@on-change="function(params){pageChange(params, index)}"
/>
</div>
pageChange: function (val,index) {
var _this = this;
if (index) {
_this.nowEchartNum = index;
}
},
<di