diff --git a/src/views/big-screen/model-components/center-model.vue b/src/views/big-screen/model-components/center-model.vue index 391c012..c4e375a 100644 --- a/src/views/big-screen/model-components/center-model.vue +++ b/src/views/big-screen/model-components/center-model.vue @@ -20,7 +20,11 @@
-
+
上架装备数
@@ -30,7 +34,11 @@
-
+
装备总类型数
@@ -40,7 +48,11 @@
-
+
保养告警
@@ -58,7 +70,11 @@
-
+
{{ maTypeLeasingNum || 0 }} @@ -68,7 +84,11 @@
在租赁种类
-
+
{{ devLeasingNum || 0 }} @@ -78,7 +98,11 @@
在租装备数
-
+
{{ devRepairingNum || 0 }} @@ -88,7 +112,11 @@
退租装备数
-
+
{{ devUsageRatio || 0 }}% @@ -104,7 +132,11 @@
-
+
{{ leaseNum || 0 }} @@ -114,7 +146,11 @@
需求总数
-
+
{{ maTypeCountFromLease || 0 }} @@ -124,7 +160,11 @@
需求装备种类
-
+
第一
{{ topPopularTypeName || '' }} @@ -132,7 +172,11 @@
最需装备
-
+
{{ leaseOrderRatio || 0 }} @@ -207,12 +251,58 @@ const handleDetail = (type: any) => { title: '', column: [], } + let path = '' if (type == 1) { params.title = '入驻装备数' params.type = 1 + path = '/detail-list-f' + } else if (type == 2) { + params.title = '上架装备数' + params.type = 2 + path = '/detail-list-f' + } else if (type == 3) { + params.title = '装备总类型数' + params.type = 3 + path = '/detail-list-f' + } else if (type == 4) { + params.title = '保养告警' + params.type = 4 + path = '/detail-list-f' + } else if (type == 5) { + params.title = '在租赁种类' + params.type = 5 + path = '/detail-list-f' + } else if (type == 6) { + params.title = '在租装备数' + params.type = 6 + path = '/detail-list-f' + } else if (type == 7) { + params.title = '退租装备数' + params.type = 7 + path = '/detail-list' + } else if (type == 8) { + params.title = '装备利用率' + params.type = 8 + path = '/detail-list' + } else if (type == 9) { + params.title = '需求总数' + params.type = 9 + path = '/detail-list' + } else if (type == 10) { + params.title = '需求装备种类' + params.type = 10 + path = '/detail-list' + } else if (type == 11) { + params.title = '最需装备' + params.type = 11 + path = '/detail-list' + } else if (type == 12) { + params.title = '需求应答率' + params.type = 12 + path = '/detail-list' } router.push({ - path: '/detail-list-f', + path, query: params, }) }