There is a chart instance already initialized on the do

    当封装为组件使用的时候,类名是一样的,同一个页面多次出现相同类名,只能显示一个。
    当为id不能显示,因为id不能重复

    1. var progress = echarts.init(document.querySelector(".progress"));
    2. progress.setOption(this.option);
    1. <div ref="refDom" class="line"></div>
    2. let refDom = ref(null);
    3. nextTick(() => {
    4. watchEffect(() => {
    5. if (props.tab === "amount") {
    6. fetchTxData(panel.amountInfo);
    7. } else {
    8. fetchTxData(panel.transInfo);
    9. }
    10. });
    11. });