|
@@ -262,7 +262,7 @@
|
|
|
import XForm from "../../components/XForm";
|
|
|
import { mapState } from "vuex";
|
|
|
import ChartWsd from "./chart/ChartWsd";
|
|
|
-import ChartDl from "./chart/ChartDl";
|
|
|
+// import ChartDl from "./chart/ChartDl";
|
|
|
import ChartWater from "./chart/ChartWater";
|
|
|
import ChartPig from "./chart/ChartPig";
|
|
|
import {
|
|
@@ -280,7 +280,6 @@ export default {
|
|
|
name: "dashboard",
|
|
|
components: {
|
|
|
ChartWsd,
|
|
|
- ChartDl,
|
|
|
ChartWater,
|
|
|
ChartPig,
|
|
|
XForm,
|
|
@@ -292,21 +291,25 @@ export default {
|
|
|
{
|
|
|
icon: "el-icon-s-order",
|
|
|
name: "今日报警总数",
|
|
|
+ num: 0,
|
|
|
unit: "条",
|
|
|
},
|
|
|
{
|
|
|
icon: "el-icon-shopping-bag-1",
|
|
|
name: "昨日卖猪总数",
|
|
|
+ num: 0,
|
|
|
unit: "头",
|
|
|
},
|
|
|
{
|
|
|
icon: "el-icon-coin",
|
|
|
name: "昨日卖猪金额",
|
|
|
+ num: 0,
|
|
|
unit: "元",
|
|
|
},
|
|
|
{
|
|
|
icon: "el-icon-finished",
|
|
|
name: "近7天卖猪总数",
|
|
|
+ num: 0,
|
|
|
unit: "头",
|
|
|
},
|
|
|
],
|