瀏覽代碼

出现app图表未显示问题

zaijin 3 年之前
父節點
當前提交
bb39b0de7e
共有 2 個文件被更改,包括 2 次插入2 次删除
  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>