Sfoglia il codice sorgente

出现app图表未显示问题

zaijin 3 anni fa
parent
commit
bb39b0de7e
2 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 1 1
      components/lineChart.vue
  2. 1 1
      components/pieChart.vue

+ 1 - 1
components/lineChart.vue

@@ -2,7 +2,7 @@
 <template>
 	<view class="charts-box">
 		<view class="charts-box-title">{{ title }}</view>
-		<qiun-data-charts type="line" :canvas2d="true" :ontouch="true" :echartsApp="true" :chartData="chartData" :opts="opts" />
+		<qiun-data-charts type="line" :canvas2d="true" :ontouch="true" :chartData="chartData" :opts="opts" />
 	</view>
 </template>
 

+ 1 - 1
components/pieChart.vue

@@ -2,7 +2,7 @@
 <template>
 	<view class="charts-box">
 		<view class="charts-box-title">{{ title }}</view>
-		<qiun-data-charts type="pie" :canvas2d="true" :echartsApp="true" :ontouch="true" :chartData="chartData" :opts="opts" />
+		<qiun-data-charts type="pie" :canvas2d="true" :ontouch="true" :chartData="chartData" :opts="opts" />
 	</view>
 </template>