|
@@ -35,7 +35,7 @@
|
|
<div id="barChart" style="width: 600px;height: 400px;"></div>
|
|
<div id="barChart" style="width: 600px;height: 400px;"></div>
|
|
</div>
|
|
</div>
|
|
<!-- 饼图 -->
|
|
<!-- 饼图 -->
|
|
- <div class="echartsBox_Piechart">
|
|
|
|
|
|
+ <div class="echartsBox_Piechart" @click="pieOnclick" style="cursor: pointer;">
|
|
<div id="pieChart" style="width: 600px;height: 400px;"></div>
|
|
<div id="pieChart" style="width: 600px;height: 400px;"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@@ -248,6 +248,14 @@ export default {
|
|
});
|
|
});
|
|
});
|
|
});
|
|
},
|
|
},
|
|
|
|
+ pieOnclick() {
|
|
|
|
+ this.$router.push({
|
|
|
|
+ path: "/rc/openitem",
|
|
|
|
+ query: {
|
|
|
|
+ status: '4'
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ },
|
|
getString1(date) {
|
|
getString1(date) {
|
|
return Number(date.getYear() + 1900) + "年" + Number(date.getMonth() + 1) + "月" + date.getDate() + "日";
|
|
return Number(date.getYear() + 1900) + "年" + Number(date.getMonth() + 1) + "月" + date.getDate() + "日";
|
|
},
|
|
},
|