From dae8cdecc05c1d64189d261364ce7fda9c4f505b Mon Sep 17 00:00:00 2001
From: fuliqi <fuliqi@qq.com>
Date: 星期二, 03 九月 2024 21:14:04 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'
---
src/views/system/data-manage/data-detail/list.js | 2054 +++++++++++++++++++++++++++++++++++++++------------------
src/views/system/data-manage/data-detail/index.vue | 26
src/components/RightToolbar/index.vue | 6
3 files changed, 1,417 insertions(+), 669 deletions(-)
diff --git a/src/components/RightToolbar/index.vue b/src/components/RightToolbar/index.vue
index 35563f4..f0f9310 100644
--- a/src/components/RightToolbar/index.vue
+++ b/src/components/RightToolbar/index.vue
@@ -7,14 +7,14 @@
<el-tooltip class="item" effect="dark" content="鍒锋柊" placement="top">
<el-button size="mini" circle icon="el-icon-refresh" @click="refresh()" />
</el-tooltip>
- <el-tooltip class="item" effect="dark" content="鑷畾涔夊垪" placement="top">
+ <el-tooltip v-show="$route.path.includes('equipment')" class="item" effect="dark" content="鑷畾涔夊垪" placement="top">
<el-button size="mini" circle icon="el-icon-collection-tag" @click="addDynamicColumn()" />
</el-tooltip>
<el-tooltip class="item" effect="dark" content="鏄鹃殣鍒�" placement="top" v-if="columns">
<el-button size="mini" circle icon="el-icon-menu" @click="showColumn()" v-if="showColumnsType == 'transfer'"/>
<el-dropdown trigger="click" :hide-on-click="false" style="padding-left: 12px" v-if="showColumnsType == 'checkbox'">
<el-button size="mini" circle icon="el-icon-menu" />
- <el-dropdown-menu slot="dropdown">
+ <el-dropdown-menu slot="dropdown" style="max-height: 650px;overflow-y: auto">
<template v-for="item in columns">
<el-dropdown-item :key="item.key">
<el-checkbox :checked="item.visible" @change="checkboxChange($event, item.label)" :label="item.label" />
@@ -115,7 +115,7 @@
}
},
created() {
- if (this.$route.path.concat("equipment")) {
+ if (this.$route.path.includes("equipment")) {
this.getDyColumn()
}
if (this.showColumnsType == 'transfer') {
diff --git a/src/views/system/data-manage/data-detail/index.vue b/src/views/system/data-manage/data-detail/index.vue
index 33cf76e..df57a6b 100644
--- a/src/views/system/data-manage/data-detail/index.vue
+++ b/src/views/system/data-manage/data-detail/index.vue
@@ -82,12 +82,13 @@
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
- <div v-if="tableData.list && tableData.list.length >0">
+ <right-toolbar :showSearch.sync="showSearch" @queryTable="handleQuery" :columns="showList"></right-toolbar>
+
+ <div>
<el-table v-loading="loading" :data="tableData.list">
- <el-table-column :prop="item.prop" :label="item.label" v-for="(item, index) in tableHead" :key="index" v-if="item"/>
+ <el-table-column :prop="item.prop" :label="item.label" :width="item.width" v-for="(item, index) in tableHead" :key="index" v-if="showListPD(item)"/>
</el-table>
</div>
- <el-empty v-else description="鏆傛棤鏁版嵁"></el-empty>
<pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNum" :limit.sync="queryParams.pageSize"
@pagination="getList" />
@@ -238,6 +239,7 @@
],
},
+ showList: [],
tableHead: [],
cardList: [],
index: null
@@ -261,29 +263,43 @@
this.index = this.$route.query.index;
if (this.$route.query.type === '1') {
let data = videoData.table.filter(item => item.index === this.$route.query.index)[0]
-
this.tableHead = data.columns;
this.cardList = data.card;
- console.log(this.cardList, "wcnm")
+ this.showList = data.showList;
}
if (this.$route.query.type === '2') {
let data = carData.table.filter(item => item.index === this.$route.query.index)[0]
this.tableHead = data.columns;
this.cardList = data.card;
+ this.showList = data.showList;
}
if (this.$route.query.type === '3') {
let data = faceData.table.filter(item => item.index === this.$route.query.index)[0]
this.tableHead = data.columns;
this.cardList = data.card;
+ this.showList = data.showList;
}
if (this.$route.query.type === '4') {
let data = equipment.table.filter(item => item.index === this.$route.query.index)[0]
this.tableHead = data.columns;
this.cardList = data.card;
+ this.showList = data.showList;
}
this.getList();
},
methods: {
+ showListPD(item) {
+ if (!this.showList) {
+ return true
+ }
+ let arr = this.showList.filter(d => d.label === item.label)
+ if (item && (!arr || arr.length <1)) {
+ return true;
+ } else {
+ return item && arr && arr.length > 0 && arr[0].visible
+ }
+
+ },
/** 淇敼鎸夐挳鎿嶄綔 */
handleResourceUpdate(row) {
this.reset("resourceForm");
diff --git a/src/views/system/data-manage/data-detail/list.js b/src/views/system/data-manage/data-detail/list.js
index 0b62bda..f280c16 100644
--- a/src/views/system/data-manage/data-detail/list.js
+++ b/src/views/system/data-manage/data-detail/list.js
@@ -15,7 +15,7 @@
prop: 'platformIp',
},
{
- label: '浠婃棩绂荤嚎鏃堕暱(绉�)',
+ label: '褰撴棩绂荤嚎鏃堕暱(绉�)',
align: 'center',
prop: 'todayOutlineSed'
},
@@ -40,7 +40,14 @@
{
"label": "琛屾斂缂栫爜",
"align": "center",
- "prop": "civilCode.value"
+ "prop": "civilCode.value",
+ "width": 100
+ },
+ {
+ "label": "灞曠ず鍊�",
+ "align": "center",
+ "prop": "civilCode.showValue",
+ "width": 100
},
{
"label": "鏄惁閿欒",
@@ -50,252 +57,266 @@
{
"label": "閿欒淇℃伅",
"align": "center",
- "prop": "civilCode.errorMessage"
- },
- {
- "label": "灞曠ず鍊�",
- "align": "center",
- "prop": "civilCode.showValue"
- },
- {
- "label": "鏄惁闆嗘垚璁惧",
- "align": "center",
- "prop": "integrated_device.value"
- },
- {
- "label": "闆嗘垚璁惧鏄惁閿欒",
- "align": "center",
- "prop": "integrated_device.error"
- },
- {
- "label": "闆嗘垚璁惧閿欒淇℃伅",
- "align": "center",
- "prop": "integrated_device.errorMessage"
+ "prop": "civilCode.errorMessage",
+ "width": 150
},
{
"label": "闆嗘垚璁惧灞曠ず鍊�",
"align": "center",
- "prop": "integrated_device.showValue"
+ "prop": "integrated_device.showValue",
+ "width": 120
+ },
+ {
+ "label": "闆嗘垚璁惧鏄惁閿欒",
+ "align": "center",
+ "prop": "integrated_device.error",
+ "width": 130
+ },
+ {
+ "label": "闆嗘垚璁惧閿欒淇℃伅",
+ "align": "center",
+ "prop": "integrated_device.errorMessage",
+ "width": 150
},
{
"label": "IP鍦板潃灞曠ず鍊�",
"align": "center",
- "prop": "ip.showValue"
+ "prop": "ip.showValue",
+ "width": 150
},
{
"label": "IP鍦板潃瀹為檯鍊�",
"align": "center",
- "prop": "ip.value"
+ "prop": "ip.value",
+ "width": 150
},
{
"label": "IP鍦板潃鏄惁鏈夎",
"align": "center",
- "prop": "ip.error"
+ "prop": "ip.error",
+ "width": 120
},
{
"label": "IP鍦板潃閿欒淇℃伅",
"align": "center",
- "prop": "ip.errorMessage"
+ "prop": "ip.errorMessage",
+ "width": 150
},
{
"label": "鐩戞帶鐐逛綅绫诲瀷灞曠ず鍊�",
"align": "center",
- "prop": "jkdwlx.showValue"
+ "prop": "jkdwlx.showValue",
+ "width": 100
},
{
"label": "鐩戞帶鐐逛綅绫诲瀷瀹為檯鍊�",
"align": "center",
- "prop": "jkdwlx.value"
+ "prop": "jkdwlx.value",
+ "width": 100
},
{
"label": "鐩戞帶鐐逛綅绫诲瀷鏄惁鏈夎",
"align": "center",
- "prop": "jkdwlx.error"
+ "prop": "jkdwlx.error",
+ "width": 150
},
{
"label": "鐩戞帶鐐逛綅绫诲瀷閿欒淇℃伅",
"align": "center",
- "prop": "jkdwlx.errorMessage"
+ "prop": "jkdwlx.errorMessage",
+ "width": 150
},
{
"label": "绾害灞曠ず鍊�",
"align": "center",
- "prop": "latitude.showValue"
+ "prop": "latitude.showValue",
+ "width": 100
},
{
"label": "绾害瀹為檯鍊�",
"align": "center",
- "prop": "latitude.value"
+ "prop": "latitude.value",
+ "width": 100
},
{
"label": "绾害鏄惁鏈夎",
"align": "center",
- "prop": "latitude.error"
+ "prop": "latitude.error",
+ "width": 120
},
{
"label": "绾害閿欒淇℃伅",
"align": "center",
- "prop": "latitude.errorMessage"
+ "prop": "latitude.errorMessage",
+ "width": 100
},
{
"label": "缁忓害灞曠ず鍊�",
"align": "center",
- "prop": "longitude.showValue"
+ "prop": "longitude.showValue",
+ "width": 100
},
{
"label": "缁忓害瀹為檯鍊�",
"align": "center",
- "prop": "longitude.value"
+ "prop": "longitude.value",
+ "width": 100
},
{
"label": "缁忓害鏄惁鏈夎",
"align": "center",
- "prop": "longitude.error"
+ "prop": "longitude.error",
+ "width": 100
},
{
"label": "缁忓害閿欒淇℃伅",
"align": "center",
- "prop": "longitude.errorMessage"
+ "prop": "longitude.errorMessage",
+ "width": 100
},
{
"label": "mac鍦板潃灞曠ず鍊�",
"align": "center",
- "prop": "macdz.showValue"
+ "prop": "macdz.showValue",
+ "width": 190
},
{
"label": "mac鍦板潃瀹為檯鍊�",
"align": "center",
- "prop": "macdz.value"
+ "prop": "macdz.value",
+ "width": 190
},
{
"label": "mac鍦板潃鏄惁鏈夎",
"align": "center",
- "prop": "macdz.error"
+ "prop": "macdz.error",
+ "width": 130
},
{
"label": "mac鍦板潃閿欒淇℃伅",
"align": "center",
- "prop": "macdz.errorMessage"
+ "prop": "macdz.errorMessage",
+ "width": 150
},
{
"label": "璁惧鍚嶅睍绀哄��",
"align": "center",
- "prop": "name.showValue"
+ "prop": "name.showValue",
+ "width": 250
},
{
"label": "璁惧鍚嶅疄闄呭��",
"align": "center",
- "prop": "name.value"
+ "prop": "name.value",
+ "width": 250
},
{
"label": "璁惧鍚嶆槸鍚︽湁璇�",
"align": "center",
- "prop": "name.error"
+ "prop": "name.error",
+ "width": 120
},
{
"label": "璁惧鍚嶉敊璇俊鎭�",
"align": "center",
- "prop": "name.errorMessage"
+ "prop": "name.errorMessage",
+ "width": 150
},
{
"label": "璁惧鐘舵�佸睍绀哄��",
"align": "center",
- "prop": "sbzt.showValue"
+ "prop": "sbzt.showValue",
+ "width": 100
},
{
"label": "璁惧鐘舵�佸疄闄呭��",
"align": "center",
- "prop": "sbzt.value"
+ "prop": "sbzt.value",
+ "width": 120
},
{
"label": "璁惧鐘舵�佹槸鍚︽湁璇�",
"align": "center",
- "prop": "sbzt.error"
+ "prop": "sbzt.error",
+ "width": 130
},
{
"label": "璁惧鐘舵�侀敊璇俊鎭�",
"align": "center",
- "prop": "sbzt.errorMessage"
+ "prop": "sbzt.errorMessage",
+ "width": 150
},
{
"label": "璁惧缂栫爜灞曠ず鍊�",
"align": "center",
- "prop": "serialNumber.showValue"
+ "prop": "serialNumber.showValue",
+ "width": 150
},
{
"label": "璁惧缂栫爜瀹為檯鍊�",
"align": "center",
- "prop": "serialNumber.value"
+ "prop": "serialNumber.value",
+ "width": 150
},
{
"label": "璁惧缂栫爜鏄惁鏈夎",
"align": "center",
- "prop": "serialNumber.error"
+ "prop": "serialNumber.error",
+ "width": 150
},
{
"label": "璁惧缂栫爜閿欒淇℃伅",
"align": "center",
- "prop": "serialNumber.errorMessage"
+ "prop": "serialNumber.errorMessage",
+ "width": 150
},
{
"label": "鎽勫儚鏈洪噰闆嗗尯鍩熷睍绀哄��",
"align": "center",
- "prop": "sxjcjqy.showValue"
+ "prop": "sxjcjqy.showValue",
+ "width": 150
},
{
"label": "鎽勫儚鏈洪噰闆嗗尯鍩熷疄闄呭��",
"align": "center",
- "prop": "sxjcjqy.value"
+ "prop": "sxjcjqy.value",
+ "width": 100
},
{
"label": "鎽勫儚鏈洪噰闆嗗尯鍩熸槸鍚︽湁璇�",
"align": "center",
- "prop": "sxjcjqy.error"
+ "prop": "sxjcjqy.error",
+ "width": 170
},
{
"label": "鎽勫儚鏈洪噰闆嗗尯鍩熼敊璇俊鎭�",
"align": "center",
- "prop": "sxjcjqy.errorMessage"
+ "prop": "sxjcjqy.errorMessage",
+ "width": 170
},
{
"label": "鎽勫儚鏈哄姛鑳界被鍨嬪睍绀哄��",
"align": "center",
- "prop": "sxjgnlx.showValue"
+ "prop": "sxjgnlx.showValue",
+ "width": 170
},
{
"label": "鎽勫儚鏈哄姛鑳界被鍨嬪疄闄呭��",
"align": "center",
- "prop": "sxjgnlx.value"
+ "prop": "sxjgnlx.value",
+ "width": 170
},
{
"label": "鎽勫儚鏈哄姛鑳界被鍨嬫槸鍚︽湁璇�",
"align": "center",
- "prop": "sxjgnlx.error"
+ "prop": "sxjgnlx.error",
+ "width": 170
},
{
"label": "鎽勫儚鏈哄姛鑳界被鍨嬮敊璇俊鎭�",
"align": "center",
- "prop": "sxjgnlx.errorMessage"
- },
- {
- "label": "绉熸埛id灞曠ず鍊�",
- "align": "center",
- "prop": "tenantId.showValue"
- },
- {
- "label": "绉熸埛id瀹為檯鍊�",
- "align": "center",
- "prop": "tenantId.value"
- },
- {
- "label": "绉熸埛id鏄惁鏈夎",
- "align": "center",
- "prop": "tenantId.error"
- },
- {
- "label": "绉熸埛id閿欒淇℃伅",
- "align": "center",
- "prop": "tenantId.errorMessage"
+ "prop": "sxjgnlx.errorMessage",
+ "width": 170
}
],
card: [
@@ -304,7 +325,30 @@
dataList: [
]
}
- ]
+ ],
+ showList: [
+ { key: 0, label: `闆嗘垚璁惧灞曠ず鍊糮, visible: false },
+ { key: 1, label: `IP鍦板潃灞曠ず鍊糮, visible: false },
+ { key: 2, label: `IP鍦板潃瀹為檯鍊糮, visible: false },
+ { key: 3, label: `鐩戞帶鐐逛綅绫诲瀷灞曠ず鍊糮, visible: false },
+ { key: 4, label: `鐩戞帶鐐逛綅绫诲瀷瀹為檯鍊糮, visible: false },
+ { key: 5, label: `绾害灞曠ず鍊糮, visible: false },
+ { key: 6, label: `绾害瀹為檯鍊糮, visible: false },
+ { key: 7, label: `缁忓害灞曠ず鍊糮, visible: false },
+ { key: 8, label: `缁忓害瀹為檯鍊糮, visible: false },
+ { key: 9, label: `mac鍦板潃灞曠ず鍊糮, visible: false },
+ { key: 10, label: `mac鍦板潃瀹為檯鍊糮, visible: false },
+ { key: 11, label: `璁惧鍚嶅睍绀哄�糮, visible: false },
+ { key: 12, label: `璁惧鍚嶅疄闄呭�糮, visible: false },
+ { key: 13, label: `璁惧鐘舵�佸睍绀哄�糮, visible: false },
+ { key: 14, label: `璁惧鐘舵�佸疄闄呭�糮, visible: false },
+ { key: 15, label: `璁惧缂栫爜灞曠ず鍊糮, visible: false },
+ { key: 16, label: `璁惧缂栫爜瀹為檯鍊糮, visible: false },
+ { key: 17, label: `鎽勫儚鏈洪噰闆嗗尯鍩熷睍绀哄�糮, visible: false },
+ { key: 18, label: `鎽勫儚鏈洪噰闆嗗尯鍩熷疄闄呭�糮, visible: false },
+ { key: 19, label: `鎽勫儚鏈哄姛鑳界被鍨嬪睍绀哄�糮, visible: false },
+ { key: 20, label: `鎽勫儚鏈哄姛鑳界被鍨嬪疄闄呭�糮, visible: false }
+ ],
},
{
title: '涓�鏈轰竴妗f敞鍐岀巼',
@@ -313,142 +357,170 @@
{
"label": "璁惧缂栫爜",
"align": "center",
- "prop": "sbbm"
+ "prop": "sbbm",
+ "width": 220
},
{
"label": "璁惧鍚嶇О",
"align": "center",
- "prop": "sbmc"
+ "prop": "sbmc",
+ "width": 250
},
{
"label": "鎽勫儚鏈洪噰闆嗗尯鍩�",
"align": "center",
- "prop": "sxjcjqy"
+ "prop": "sxjcjqy",
+ "width": 120
},
{
"label": "鐩戞帶鐐逛綅绫诲瀷",
"align": "center",
- "prop": "jkdwlx"
+ "prop": "jkdwlx",
+ "width": 150
},
{
"label": "IPV4鍦板潃",
"align": "center",
- "prop": "ip"
+ "prop": "ip",
+ "width": 150
},
{
"label": "缁忓害",
"align": "center",
- "prop": "jd"
+ "prop": "jd",
+ "width": 100
},
{
"label": "绾害",
"align": "center",
- "prop": "wd"
+ "prop": "wd",
+ "width": 100
},
{
"label": "鎽勫儚鏈哄姛鑳界被鍨�",
"align": "center",
- "prop": "sxjgnlx"
+ "prop": "sxjgnlx",
+ "width": 150
},
{
"label": "MAC鍦板潃",
"align": "center",
- "prop": "macdz"
+ "prop": "macdz",
+ "width": 150
},
{
"label": "璁惧鐘舵��",
"align": "center",
- "prop": "sbzt"
+ "prop": "sbzt",
+ "width": 100
},
{
"label": "璁惧鍘傚晢",
"align": "center",
- "prop": "sbcs"
+ "prop": "sbcs",
+ "width": 150
},
{
"label": "琛屾斂鍖哄煙",
"align": "center",
- "prop": "xzqy"
+ "prop": "xzqy",
+ "width": 150
},
{
"label": "璁惧鍨嬪彿",
"align": "center",
- "prop": "sbxh"
+ "prop": "sbxh",
+ "width": 120
},
{
"label": "鐐逛綅淇楃О",
"align": "center",
- "prop": "dwcs"
+ "prop": "dwcs",
+ "width": 250
},
{
"label": "鎽勫儚鏈虹被鍨�",
"align": "center",
- "prop": "sxjlx"
+ "prop": "sxjlx",
+ "width": 100
},
{
"label": "琛ュ厜灞炴��",
"align": "center",
- "prop": "bgsx"
+ "prop": "bgsx",
+ "width": 100
},
{
"label": "鎽勫儚鏈虹紪鐮佹牸寮�",
"align": "center",
- "prop": "sxjbmgs"
+ "prop": "sxjbmgs",
+ "width": 170
},
{
"label": "瀹夎鍦板潃",
"align": "center",
- "prop": "azdz"
+ "prop": "azdz",
+ "width": 170
},
{
"label": "鎽勫儚鏈轰綅缃被鍨�",
"align": "center",
- "prop": "sxjwzlx"
+ "prop": "sxjwzlx",
+ "width": 170
},
{
"label": "鐩戣鏂逛綅",
"align": "center",
- "prop": "jsfw"
+ "prop": "jsfw",
+ "width": 120
},
{
"label": "鎽勫儚鏈哄満鏅璁剧収鐗嘦RL",
"align": "center",
- "prop": "sxjcjyszp"
+ "prop": "sxjcjyszp",
+ "width": 190
},
{
"label": "鑱旂綉灞炴��",
"align": "center",
- "prop": "lwsx"
+ "prop": "lwsx",
+ "width": 120
},
{
"label": "鎵�灞炶緰鍖哄叕瀹夋満鍏�",
"align": "center",
- "prop": "ssxqgafg"
+ "prop": "ssxqgafg",
+ "width": 170
},
{
"label": "瀹夎鏃堕棿",
"align": "center",
- "prop": "azsj"
+ "prop": "azsj",
+ "width": 170
},
{
"label": "绠$悊鍗曚綅",
"align": "center",
- "prop": "gldw"
+ "prop": "gldw",
+ "width": 170
},
{
"label": "绠$悊鍗曚綅鑱旂郴鏂瑰紡",
"align": "center",
- "prop": "gldwlxfs"
+ "prop": "gldwlxfs",
+ "width": 190
},
{
"label": "褰曞儚淇濆瓨澶╂暟",
"align": "center",
- "prop": "lxbcts"
+ "prop": "lxbcts",
+ "width": 170
},
{
"label": "鎵�灞為儴闂�/琛屼笟",
"align": "center",
- "prop": "ssbmhy"
+ "prop": "ssbmhy",
+ "width": 170
}
],
card: [
@@ -472,7 +544,27 @@
},
]
}
- ]
+ ],
+ showList: [
+ { key: 0, label: `璁惧鍘傚晢`, visible: false },
+ { key: 1, label: `琛屾斂鍖哄煙`, visible: false },
+ { key: 2, label: `璁惧鍨嬪彿`, visible: false },
+ { key: 3, label: `鐐逛綅淇楃О`, visible: false },
+ { key: 4, label: `鎽勫儚鏈虹被鍨媊, visible: false },
+ { key: 5, label: `琛ュ厜灞炴�, visible: false },
+ { key: 6, label: `鎽勫儚鏈虹紪鐮佹牸寮廯, visible: false },
+ { key: 7, label: `瀹夎鍦板潃`, visible: false },
+ { key: 8, label: `鎽勫儚鏈轰綅缃被鍨媊, visible: false },
+ { key: 9, label: `鐩戣鏂逛綅`, visible: false },
+ { key: 10, label: `鎽勫儚鏈哄満鏅璁剧収鐗嘦RL`, visible: false },
+ { key: 11, label: `鑱旂綉灞炴�, visible: false },
+ { key: 12, label: `鎵�灞炶緰鍖哄叕瀹夋満鍏砢, visible: false },
+ { key: 13, label: `瀹夎鏃堕棿`, visible: false },
+ { key: 14, label: `绠$悊鍗曚綅`, visible: false },
+ { key: 15, label: `褰曞儚淇濆瓨澶╂暟`, visible: false },
+ { key: 16, label: `鎵�灞為儴闂�/琛屼笟`, visible: false },
+ { key: 16, label: `绠$悊鍗曚綅鑱旂郴鏂瑰紡`, visible: false },
+ ],
},
{
title: '鑰冩牳妗f姣�',
@@ -481,142 +573,170 @@
{
"label": "璁惧缂栫爜",
"align": "center",
- "prop": "sbbm"
+ "prop": "sbbm",
+ "width": 220
},
{
"label": "璁惧鍚嶇О",
"align": "center",
- "prop": "sbmc"
+ "prop": "sbmc",
+ "width": 250
},
{
"label": "鎽勫儚鏈洪噰闆嗗尯鍩�",
"align": "center",
- "prop": "sxjcjqy"
+ "prop": "sxjcjqy",
+ "width": 150
},
{
"label": "鐩戞帶鐐逛綅绫诲瀷",
"align": "center",
- "prop": "jkdwlx"
+ "prop": "jkdwlx",
+ "width": 170
},
{
"label": "IPV4鍦板潃",
"align": "center",
- "prop": "ip"
+ "prop": "ip",
+ "width": 150
},
{
"label": "缁忓害",
"align": "center",
- "prop": "jd"
+ "prop": "jd",
+ "width": 130
},
{
"label": "绾害",
"align": "center",
- "prop": "wd"
+ "prop": "wd",
+ "width": 130
},
{
"label": "鎽勫儚鏈哄姛鑳界被鍨�",
"align": "center",
- "prop": "sxjgnlx"
+ "prop": "sxjgnlx",
+ "width": 170
},
{
"label": "MAC鍦板潃",
"align": "center",
- "prop": "macdz"
+ "prop": "macdz",
+ "width": 150
},
{
"label": "璁惧鐘舵��",
"align": "center",
- "prop": "sbzt"
+ "prop": "sbzt",
+ "width": 120
},
{
"label": "璁惧鍘傚晢",
"align": "center",
- "prop": "sbcs"
+ "prop": "sbcs",
+ "width": 120
},
{
"label": "琛屾斂鍖哄煙",
"align": "center",
- "prop": "xzqy"
+ "prop": "xzqy",
+ "width": 150
},
{
"label": "璁惧鍨嬪彿",
"align": "center",
- "prop": "sbxh"
+ "prop": "sbxh",
+ "width": 150
},
{
"label": "鐐逛綅淇楃О",
"align": "center",
- "prop": "dwcs"
+ "prop": "dwcs",
+ "width": 200
},
{
"label": "鎽勫儚鏈虹被鍨�",
"align": "center",
- "prop": "sxjlx"
+ "prop": "sxjlx",
+ "width": 150
},
{
"label": "琛ュ厜灞炴��",
"align": "center",
- "prop": "bgsx"
+ "prop": "bgsx",
+ "width": 100
},
{
"label": "鎽勫儚鏈虹紪鐮佹牸寮�",
"align": "center",
- "prop": "sxjbmgs"
+ "prop": "sxjbmgs",
+ "width": 200
},
{
"label": "瀹夎鍦板潃",
"align": "center",
- "prop": "azdz"
+ "prop": "azdz",
+ "width": 170
},
{
"label": "鎽勫儚鏈轰綅缃被鍨�",
"align": "center",
- "prop": "sxjwzlx"
+ "prop": "sxjwzlx",
+ "width": 170
},
{
"label": "鐩戣鏂逛綅",
"align": "center",
- "prop": "jsfw"
+ "prop": "jsfw",
+ "width": 150
},
{
"label": "鎽勫儚鏈哄満鏅璁剧収鐗嘦RL",
"align": "center",
- "prop": "sxjcjyszp"
+ "prop": "sxjcjyszp",
+ "width": 200
},
{
"label": "鑱旂綉灞炴��",
"align": "center",
- "prop": "lwsx"
+ "prop": "lwsx",
+ "width": 100
},
{
"label": "鎵�灞炶緰鍖哄叕瀹夋満鍏�",
"align": "center",
- "prop": "ssxqgafg"
+ "prop": "ssxqgafg",
+ "width": 190
},
{
"label": "瀹夎鏃堕棿",
"align": "center",
- "prop": "azsj"
+ "prop": "azsj",
+ "width": 170
},
{
"label": "绠$悊鍗曚綅",
"align": "center",
- "prop": "gldw"
+ "prop": "gldw",
+ "width": 180
},
{
"label": "绠$悊鍗曚綅鑱旂郴鏂瑰紡",
"align": "center",
- "prop": "gldwlxfs"
+ "prop": "gldwlxfs",
+ "width": 170
},
{
"label": "褰曞儚淇濆瓨澶╂暟",
"align": "center",
- "prop": "lxbcts"
+ "prop": "lxbcts",
+ "width": 120
},
{
"label": "鎵�灞為儴闂�/琛屼笟",
"align": "center",
- "prop": "ssbmhy"
+ "prop": "ssbmhy",
+ "width": 150
}
],
card: [
@@ -641,26 +761,37 @@
]
}
- ]
+ ],
+ showList: [
+ { key: 0, label: `璁惧鍘傚晢`, visible: false },
+ { key: 1, label: `琛屾斂鍖哄煙`, visible: false },
+ { key: 2, label: `璁惧鍨嬪彿`, visible: false },
+ { key: 3, label: `鐐逛綅淇楃О`, visible: false },
+ { key: 3, label: `鎽勫儚鏈虹被鍨媊, visible: false },
+ { key: 3, label: `琛ュ厜灞炴�, visible: false },
+ { key: 3, label: `鎽勫儚鏈虹紪鐮佹牸寮廯, visible: false },
+ { key: 3, label: `瀹夎鍦板潃`, visible: false },
+ { key: 3, label: `鎽勫儚鏈轰綅缃被鍨媊, visible: false },
+ { key: 3, label: `鐩戣鏂逛綅`, visible: false },
+ { key: 3, label: `鎽勫儚鏈哄満鏅璁剧収鐗嘦RL`, visible: false },
+ { key: 3, label: `鑱旂綉灞炴�, visible: false },
+ { key: 3, label: `鎵�灞炶緰鍖哄叕瀹夋満鍏砢, visible: false },
+ { key: 3, label: `瀹夎鏃堕棿`, visible: false },
+ { key: 3, label: `绠$悊鍗曚綅`, visible: false },
+ { key: 3, label: `绠$悊鍗曚綅鑱旂郴鏂瑰紡`, visible: false },
+ { key: 3, label: `褰曞儚淇濆瓨澶╂暟`, visible: false },
+ { key: 3, label: `鎵�灞為儴闂�/琛屼笟`, visible: false },
+ ],
},
{
- title: "鐐逛綅鍦ㄧ嚎鐜�",
- index: 'site_online',
+ title: "閮ㄧ骇鐐逛綅鍦ㄧ嚎鐜�",
+ index: 'ministry_site_online',
columns: [
{
"label": "琛屾斂鍖哄垝缂栫爜",
"align": "center",
- "prop": "arealayerPath"
- },
- {
- "label": "琛屾斂鍖哄垝缂栫爜",
- "align": "center",
- "prop": "arealayerno"
- },
- {
- "label": "琛屾斂鍖哄垝鍚嶇О",
- "align": "center",
- "prop": "arealayerName"
+ "prop": "arealayerPath",
+ "width": 250
},
{
"label": "瑙g爜鐘舵�佺爜",
@@ -670,12 +801,14 @@
{
"label": "璁惧id",
"align": "center",
- "prop": "deviceId"
+ "prop": "deviceId",
+ "width": 250
},
{
"label": "璁惧鍚嶇О",
"align": "center",
- "prop": "deviceName"
+ "prop": "deviceName",
+ "width": 250
},
{
"label": "icmp寤惰繜",
@@ -691,7 +824,8 @@
"label": "鏈�杩慽cmp鏃堕棿",
"align": "center",
"prop": "icmpTime",
- "format": "yyyy-MM-dd HH:mm:ss"
+ "format": "yyyy-MM-dd HH:mm:ss",
+ "width": 200
},
{
"label": "鍏抽敭甯ф椂寤�",
@@ -701,28 +835,33 @@
{
"label": "ip鍦板潃",
"align": "center",
- "prop": "ipAddr"
+ "prop": "ipAddr",
+ "width": 150
},
{
"label": "鏈�杩戞寔缁绾挎晠闅滄鏁�",
"align": "center",
- "prop": "olErrEverduring"
+ "prop": "olErrEverduring",
+ "width": 200
},
{
"label": "鏈�杩戞寔缁绾挎晠闅滄椂闂�",
"align": "center",
"prop": "olErrEverduringFirstTime",
- "format": "yyyy-MM-dd HH:mm:ss"
+ "format": "yyyy-MM-dd HH:mm:ss",
+ "width": 200
},
{
"label": "绱绂荤嚎鏁呴殰娆℃暟",
"align": "center",
- "prop": "olErrTotal"
+ "prop": "olErrTotal",
+ width: 180,
},
{
"label": "绱绂荤嚎鏁呴殰鐜�",
"align": "center",
- "prop": "olErrTotalRate"
+ "prop": "olErrTotalRate",
+ "width": 180,
},
{
"label": "宸℃娆℃暟",
@@ -747,17 +886,14 @@
{
"label": "鐪佸巺鏍囩",
"align": "center",
- "prop": "tagStr"
+ "prop": "tagStr",
+ "width": 200
},
{
"label": "鐪佸巺鏍囩鍒楄〃",
"align": "center",
- "prop": "tags"
- },
- {
- "label": "绉熸埛id",
- "align": "center",
- "prop": "tenantId"
+ "prop": "tags",
+ "width": 200
},
{
"label": "瑙嗛娴佹椂寤�",
@@ -768,7 +904,8 @@
"label": "瑙嗛璐ㄩ噺妫�娴嬫椂闂�",
"align": "center",
"prop": "vqdTime",
- "format": "yyyy-MM-dd HH:mm:ss"
+ "format": "yyyy-MM-dd HH:mm:ss",
+ "width": 200
}
],
card: [
@@ -780,7 +917,167 @@
},
]
}
- ]
+ ],
+ showList: [
+ { key: 0, label: `瑙g爜鐘舵�佺爜`, visible: false },
+ { key: 1, label: `sip鐘舵�佺爜`, visible: false },
+ { key: 2, label: `淇′护鏃跺欢`, visible: false },
+ { key: 3, label: `icmp寤惰繜`, visible: false },
+ { key: 3, label: `鍏抽敭甯ф椂寤禶, visible: false },
+ { key: 3, label: `鏈�杩戞寔缁绾挎晠闅滄椂闂碻, visible: false },
+ { key: 3, label: `瑙嗛娴佹椂寤禶, visible: false },
+ { key: 3, label: `宸℃娆℃暟`, visible: false },
+ { key: 3, label: `鐪佸巺鏍囩`, visible: false },
+ { key: 3, label: `鐪佸巺鏍囩鍒楄〃`, visible: false },
+ ],
+ },
+ {
+ title: "鐐逛綅鍦ㄧ嚎鐜�",
+ index: 'site_online',
+ columns: [
+ {
+ "label": "琛屾斂鍖哄垝缂栫爜",
+ "align": "center",
+ "prop": "arealayerPath",
+ "width": 250
+ },
+ {
+ "label": "瑙g爜鐘舵�佺爜",
+ "align": "center",
+ "prop": "decodingCode"
+ },
+ {
+ "label": "璁惧id",
+ "align": "center",
+ "prop": "deviceId",
+ "width": 250
+ },
+ {
+ "label": "璁惧鍚嶇О",
+ "align": "center",
+ "prop": "deviceName",
+ "width": 250
+ },
+ {
+ "label": "icmp寤惰繜",
+ "align": "center",
+ "prop": "icmpDelay"
+ },
+ {
+ "label": "icmp鐘舵��",
+ "align": "center",
+ "prop": "icmpStatusText"
+ },
+ {
+ "label": "鏈�杩慽cmp鏃堕棿",
+ "align": "center",
+ "prop": "icmpTime",
+ "format": "yyyy-MM-dd HH:mm:ss",
+ "width": 200
+ },
+ {
+ "label": "鍏抽敭甯ф椂寤�",
+ "align": "center",
+ "prop": "ifmDelay"
+ },
+ {
+ "label": "ip鍦板潃",
+ "align": "center",
+ "prop": "ipAddr",
+ "width": 150
+ },
+ {
+ "label": "鏈�杩戞寔缁绾挎晠闅滄鏁�",
+ "align": "center",
+ "prop": "olErrEverduring",
+ "width": 200
+ },
+ {
+ "label": "鏈�杩戞寔缁绾挎晠闅滄椂闂�",
+ "align": "center",
+ "prop": "olErrEverduringFirstTime",
+ "format": "yyyy-MM-dd HH:mm:ss",
+ "width": 200
+ },
+ {
+ "label": "绱绂荤嚎鏁呴殰娆℃暟",
+ "align": "center",
+ "prop": "olErrTotal",
+ width: 180,
+ },
+ {
+ "label": "绱绂荤嚎鏁呴殰鐜�",
+ "align": "center",
+ "prop": "olErrTotalRate",
+ "width": 180
+ },
+ {
+ "label": "宸℃娆℃暟",
+ "align": "center",
+ "prop": "olTotal"
+ },
+ {
+ "label": "sip鐘舵�佺爜",
+ "align": "center",
+ "prop": "sipCode"
+ },
+ {
+ "label": "淇′护鏃跺欢",
+ "align": "center",
+ "prop": "sipDelay"
+ },
+ {
+ "label": "鍦ㄧ嚎鐘舵��",
+ "align": "center",
+ "prop": "statusText"
+ },
+ {
+ "label": "鐪佸巺鏍囩",
+ "align": "center",
+ "prop": "tagStr",
+ "width": 200
+ },
+ {
+ "label": "鐪佸巺鏍囩鍒楄〃",
+ "align": "center",
+ "prop": "tags",
+ "width": 200
+ },
+ {
+ "label": "瑙嗛娴佹椂寤�",
+ "align": "center",
+ "prop": "videoDelay"
+ },
+ {
+ "label": "瑙嗛璐ㄩ噺妫�娴嬫椂闂�",
+ "align": "center",
+ "prop": "vqdTime",
+ "format": "yyyy-MM-dd HH:mm:ss",
+ "width": 200
+ }
+ ],
+ card: [
+ {
+ icon: 'el-icon-wind-power',
+ dataList: [
+ {
+ label: '璁惧鎬绘暟'
+ },
+ ]
+ }
+ ],
+ showList: [
+ { key: 0, label: `瑙g爜鐘舵�佺爜`, visible: false },
+ { key: 1, label: `sip鐘舵�佺爜`, visible: false },
+ { key: 2, label: `淇′护鏃跺欢`, visible: false },
+ { key: 3, label: `icmp寤惰繜`, visible: false },
+ { key: 3, label: `鍏抽敭甯ф椂寤禶, visible: false },
+ { key: 3, label: `鏈�杩戞寔缁绾挎晠闅滄椂闂碻, visible: false },
+ { key: 3, label: `瑙嗛娴佹椂寤禶, visible: false },
+ { key: 3, label: `宸℃娆℃暟`, visible: false },
+ { key: 3, label: `鐪佸巺鏍囩`, visible: false },
+ { key: 3, label: `鐪佸巺鏍囩鍒楄〃`, visible: false },
+ ],
},
{
title: "褰曞儚鍙敤鐜�",
@@ -799,17 +1096,20 @@
{
label: "鍒涘缓鏃堕棿",
align: "center",
- prop: "createTime"
+ prop: "createTime",
+ width: 150,
},
{
label: "鎽勫儚鏈篒D",
align: "center",
- prop: "deviceId"
+ prop: "deviceId",
+ width: 190,
},
{
label: "鎽勫儚鏈哄悕绉�",
align: "center",
- prop: "deviceName"
+ prop: "deviceName",
+ width: 230,
},
{
label: "缂哄け鏃堕暱",
@@ -819,7 +1119,8 @@
{
label: "鍥芥爣骞冲彴ID",
align: "center",
- prop: "platId"
+ prop: "platId",
+ width: 190,
},
{
label: "褰曞儚鏃堕暱",
@@ -834,7 +1135,85 @@
{
label: "缁熻鏃堕棿",
align: "center",
- prop: "statTime"
+ prop: "statTime",
+ width: 150,
+ },
+ ],
+ card: [
+ {
+ icon: 'el-icon-wind-power',
+ dataList: [
+ {
+ label: '瀹屾暣'
+ },
+ {
+ label: '闂存瓏'
+ },
+ {
+ label: '寮傚父'
+ },
+ ]
+ }
+ ]
+ },
+ {
+ title: "閮ㄧ骇宸℃褰曞儚鍙敤鐜�",
+ index: 'ministry_video_available',
+ columns: [
+ {
+ label: "琛屾斂鍖哄煙",
+ align: "center",
+ prop: "arealayername"
+ },
+ {
+ label: "琛屾斂鍖哄煙ID",
+ align: "center",
+ prop: "arealayerno"
+ },
+ {
+ label: "鍒涘缓鏃堕棿",
+ align: "center",
+ prop: "createTime",
+ width: 150,
+ },
+ {
+ label: "鎽勫儚鏈篒D",
+ align: "center",
+ prop: "deviceId",
+ width: 190,
+ },
+ {
+ label: "鎽勫儚鏈哄悕绉�",
+ align: "center",
+ prop: "deviceName",
+ width: 230,
+ },
+ {
+ label: "缂哄け鏃堕暱",
+ align: "center",
+ prop: "missDuration"
+ },
+ {
+ label: "鍥芥爣骞冲彴ID",
+ align: "center",
+ prop: "platId",
+ width: 190,
+ },
+ {
+ label: "褰曞儚鏃堕暱",
+ align: "center",
+ prop: "recordDuration"
+ },
+ {
+ label: "褰曞儚瀹屾暣鐘舵��",
+ align: "center",
+ prop: "recordStatusText"
+ },
+ {
+ label: "缁熻鏃堕棿",
+ align: "center",
+ prop: "statTime",
+ width: 150,
},
],
card: [
@@ -1199,142 +1578,170 @@
{
"label": "璁惧缂栫爜",
"align": "center",
- "prop": "sbbm"
+ "prop": "sbbm",
+ width: 190
},
{
"label": "璁惧鍚嶇О",
"align": "center",
- "prop": "sbmc"
+ "prop": "sbmc",
+ width: 200
},
{
"label": "鎽勫儚鏈洪噰闆嗗尯鍩�",
"align": "center",
- "prop": "sxjcjqy"
+ "prop": "sxjcjqy",
+ width: 150
},
{
"label": "鐩戞帶鐐逛綅绫诲瀷",
"align": "center",
- "prop": "jkdwlx"
+ "prop": "jkdwlx",
+ width: 120
},
{
"label": "IPV4鍦板潃",
"align": "center",
- "prop": "ip"
+ "prop": "ip",
+ width: 120
},
{
"label": "缁忓害",
"align": "center",
- "prop": "jd"
+ "prop": "jd",
+ width: 150
},
{
"label": "绾害",
"align": "center",
- "prop": "wd"
+ "prop": "wd",
+ width: 150
},
{
"label": "鎽勫儚鏈哄姛鑳界被鍨�",
"align": "center",
- "prop": "sxjgnlx"
+ "prop": "sxjgnlx",
+ width: 150
},
{
"label": "MAC鍦板潃",
"align": "center",
- "prop": "macdz"
+ "prop": "macdz",
+ width: 150
},
{
"label": "璁惧鐘舵��",
"align": "center",
- "prop": "sbzt"
+ "prop": "sbzt",
+ width: 150
},
{
"label": "璁惧鍘傚晢",
"align": "center",
- "prop": "sbcs"
+ "prop": "sbcs",
+ width: 150
},
{
"label": "琛屾斂鍖哄煙",
"align": "center",
- "prop": "xzqy"
+ "prop": "xzqy",
+ width: 150
},
{
"label": "璁惧鍨嬪彿",
"align": "center",
- "prop": "sbxh"
+ "prop": "sbxh",
+ width: 150
},
{
"label": "鐐逛綅淇楃О",
"align": "center",
- "prop": "dwcs"
+ "prop": "dwcs",
+ width: 150
},
{
"label": "鎽勫儚鏈虹被鍨�",
"align": "center",
- "prop": "sxjlx"
+ "prop": "sxjlx",
+ width: 150
},
{
"label": "琛ュ厜灞炴��",
"align": "center",
- "prop": "bgsx"
+ "prop": "bgsx",
+ width: 150
},
{
"label": "鎽勫儚鏈虹紪鐮佹牸寮�",
"align": "center",
- "prop": "sxjbmgs"
+ "prop": "sxjbmgs",
+ width: 150
},
{
"label": "瀹夎鍦板潃",
"align": "center",
- "prop": "azdz"
+ "prop": "azdz",
+ width: 150
},
{
"label": "鎽勫儚鏈轰綅缃被鍨�",
"align": "center",
- "prop": "sxjwzlx"
+ "prop": "sxjwzlx",
+ width: 180
},
{
"label": "鐩戣鏂逛綅",
"align": "center",
- "prop": "jsfw"
+ "prop": "jsfw",
+ width: 150
},
{
"label": "鎽勫儚鏈哄満鏅璁剧収鐗嘦RL",
"align": "center",
- "prop": "sxjcjyszp"
+ "prop": "sxjcjyszp",
+ width: 200
},
{
"label": "鑱旂綉灞炴��",
"align": "center",
- "prop": "lwsx"
+ "prop": "lwsx",
+ width: 150
},
{
"label": "鎵�灞炶緰鍖哄叕瀹夋満鍏�",
"align": "center",
- "prop": "ssxqgafg"
+ "prop": "ssxqgafg",
+ width: 170
},
{
"label": "瀹夎鏃堕棿",
"align": "center",
- "prop": "azsj"
+ "prop": "azsj",
+ width: 120
},
{
"label": "绠$悊鍗曚綅",
"align": "center",
- "prop": "gldw"
+ "prop": "gldw",
+ width: 120
},
{
"label": "绠$悊鍗曚綅鑱旂郴鏂瑰紡",
"align": "center",
- "prop": "gldwlxfs"
+ "prop": "gldwlxfs",
+ width: 160
},
{
"label": "褰曞儚淇濆瓨澶╂暟",
"align": "center",
- "prop": "lxbcts"
+ "prop": "lxbcts",
+ width: 150
},
{
"label": "鎵�灞為儴闂�/琛屼笟",
"align": "center",
- "prop": "ssbmhy"
+ "prop": "ssbmhy",
+ width: 150
}
],
card: [
@@ -1359,7 +1766,27 @@
]
}
- ]
+ ],
+ showList: [
+ { key: 0, label: `璁惧鍘傚晢`, visible: false },
+ { key: 1, label: `琛屾斂鍖哄煙`, visible: false },
+ { key: 2, label: `璁惧鍨嬪彿`, visible: false },
+ { key: 3, label: `鐐逛綅淇楃О`, visible: false },
+ { key: 3, label: `鎽勫儚鏈虹被鍨媊, visible: false },
+ { key: 3, label: `琛ュ厜灞炴�, visible: false },
+ { key: 3, label: `鎽勫儚鏈虹紪鐮佹牸寮廯, visible: false },
+ { key: 3, label: `瀹夎鍦板潃`, visible: false },
+ { key: 3, label: `鎽勫儚鏈轰綅缃被鍨媊, visible: false },
+ { key: 3, label: `鐩戣鏂逛綅`, visible: false },
+ { key: 3, label: `鎽勫儚鏈哄満鏅璁剧収鐗嘦RL`, visible: false },
+ { key: 3, label: `鑱旂綉灞炴�, visible: false },
+ { key: 3, label: `鎵�灞炶緰鍖哄叕瀹夋満鍏砢, visible: false },
+ { key: 3, label: `瀹夎鏃堕棿`, visible: false },
+ { key: 3, label: `绠$悊鍗曚綅`, visible: false },
+ { key: 3, label: `绠$悊鍗曚綅鑱旂郴鏂瑰紡`, visible: false },
+ { key: 3, label: `褰曞儚淇濆瓨澶╂暟`, visible: false },
+ { key: 3, label: `鎵�灞為儴闂�/琛屼笟`, visible: false },
+ ],
},
{
title: '閲嶇偣鐐逛綅褰曞儚鍙敤鐜�',
@@ -1378,17 +1805,20 @@
{
label: "鍒涘缓鏃堕棿",
align: "center",
- prop: "createTime"
+ prop: "createTime",
+ width: 150,
},
{
label: "鎽勫儚鏈篒D",
align: "center",
- prop: "deviceId"
+ prop: "deviceId",
+ width: 190,
},
{
label: "鎽勫儚鏈哄悕绉�",
align: "center",
- prop: "deviceName"
+ prop: "deviceName",
+ width: 230,
},
{
label: "缂哄け鏃堕暱",
@@ -1398,7 +1828,8 @@
{
label: "鍥芥爣骞冲彴ID",
align: "center",
- prop: "platId"
+ prop: "platId",
+ width: 190,
},
{
label: "褰曞儚鏃堕暱",
@@ -1413,7 +1844,8 @@
{
label: "缁熻鏃堕棿",
align: "center",
- prop: "statTime"
+ prop: "statTime",
+ width: 150,
},
],
card: [
@@ -1440,143 +1872,76 @@
{
"label": "璁惧缂栫爜",
"align": "center",
- "prop": "sbbm"
+ "prop": "deviceNo",
+ width: 190
},
{
"label": "璁惧鍚嶇О",
"align": "center",
- "prop": "sbmc"
+ "prop": "osdName",
+ width: 200
},
{
- "label": "鎽勫儚鏈洪噰闆嗗尯鍩�",
+ "label": "osd鐪�",
"align": "center",
- "prop": "sxjcjqy"
+ "prop": "osdProvince",
+ width: 150
},
{
- "label": "鐩戞帶鐐逛綅绫诲瀷",
+ "label": "osd甯�",
"align": "center",
- "prop": "jkdwlx"
+ "prop": "osdCity",
+ width: 150
},
{
- "label": "IPV4鍦板潃",
+ "label": "osd鍖�",
"align": "center",
- "prop": "ip"
+ "prop": "osdPart",
+ width: 150
},
{
- "label": "缁忓害",
+ "label": "osd宸︿笅瑙�",
"align": "center",
- "prop": "jd"
+ "prop": "osdLB",
+ width: 150
},
{
- "label": "绾害",
+ "label": "osd鏃堕棿鏄惁姝g‘",
"align": "center",
- "prop": "wd"
+ "prop": "osdTimeCorrect",
+ width: 150
},
{
- "label": "鎽勫儚鏈哄姛鑳界被鍨�",
+ "label": "osd閫氶亾鍚嶆槸鍚︽纭�",
"align": "center",
- "prop": "sxjgnlx"
+ "prop": "osdNameCorrect",
+ width: 150
},
{
- "label": "MAC鍦板潃",
+ "label": "osd鐪佹槸鍚︽纭�",
"align": "center",
- "prop": "macdz"
+ "prop": "osdProvinceCorrect",
+ width: 150
},
{
- "label": "璁惧鐘舵��",
+ "label": "osd甯傛槸鍚︽纭�",
"align": "center",
- "prop": "sbzt"
+ "prop": "osdCityCorrect",
+ width: 150
},
{
- "label": "璁惧鍘傚晢",
+ "label": "osd鍖烘槸鍚︽纭�",
"align": "center",
- "prop": "sbcs"
+ "prop": "osdPartCorrect",
+ width: 150
},
{
- "label": "琛屾斂鍖哄煙",
+ "label": "osd宸︿笅瑙掓槸鍚︽纭�",
"align": "center",
- "prop": "xzqy"
+ "prop": "osdLbCorrect",
+ width: 150
},
- {
- "label": "璁惧鍨嬪彿",
- "align": "center",
- "prop": "sbxh"
- },
- {
- "label": "鐐逛綅淇楃О",
- "align": "center",
- "prop": "dwcs"
- },
- {
- "label": "鎽勫儚鏈虹被鍨�",
- "align": "center",
- "prop": "sxjlx"
- },
- {
- "label": "琛ュ厜灞炴��",
- "align": "center",
- "prop": "bgsx"
- },
- {
- "label": "鎽勫儚鏈虹紪鐮佹牸寮�",
- "align": "center",
- "prop": "sxjbmgs"
- },
- {
- "label": "瀹夎鍦板潃",
- "align": "center",
- "prop": "azdz"
- },
- {
- "label": "鎽勫儚鏈轰綅缃被鍨�",
- "align": "center",
- "prop": "sxjwzlx"
- },
- {
- "label": "鐩戣鏂逛綅",
- "align": "center",
- "prop": "jsfw"
- },
- {
- "label": "鎽勫儚鏈哄満鏅璁剧収鐗嘦RL",
- "align": "center",
- "prop": "sxjcjyszp"
- },
- {
- "label": "鑱旂綉灞炴��",
- "align": "center",
- "prop": "lwsx"
- },
- {
- "label": "鎵�灞炶緰鍖哄叕瀹夋満鍏�",
- "align": "center",
- "prop": "ssxqgafg"
- },
- {
- "label": "瀹夎鏃堕棿",
- "align": "center",
- "prop": "azsj"
- },
- {
- "label": "绠$悊鍗曚綅",
- "align": "center",
- "prop": "gldw"
- },
- {
- "label": "绠$悊鍗曚綅鑱旂郴鏂瑰紡",
- "align": "center",
- "prop": "gldwlxfs"
- },
- {
- "label": "褰曞儚淇濆瓨澶╂暟",
- "align": "center",
- "prop": "lxbcts"
- },
- {
- "label": "鎵�灞為儴闂�/琛屼笟",
- "align": "center",
- "prop": "ssbmhy"
- }
+
],
card: [
{
@@ -1600,7 +1965,7 @@
]
}
- ]
+ ],
},
{
title: '閲嶇偣鐐逛綅鏍℃椂姝g‘鐜�',
@@ -1769,152 +2134,77 @@
]
}
- ]
+ ],
+ showList: [
+ { key: 0, label: `璁惧鍘傚晢`, visible: false },
+ { key: 1, label: `琛屾斂鍖哄煙`, visible: false },
+ { key: 2, label: `璁惧鍨嬪彿`, visible: false },
+ { key: 3, label: `鐐逛綅淇楃О`, visible: false },
+ { key: 3, label: `鎽勫儚鏈虹被鍨媊, visible: false },
+ { key: 3, label: `琛ュ厜灞炴�, visible: false },
+ { key: 3, label: `鎽勫儚鏈虹紪鐮佹牸寮廯, visible: false },
+ { key: 3, label: `瀹夎鍦板潃`, visible: false },
+ { key: 3, label: `鎽勫儚鏈轰綅缃被鍨媊, visible: false },
+ { key: 3, label: `鐩戣鏂逛綅`, visible: false },
+ { key: 3, label: `鎽勫儚鏈哄満鏅璁剧収鐗嘦RL`, visible: false },
+ { key: 3, label: `鑱旂綉灞炴�, visible: false },
+ { key: 3, label: `鎵�灞炶緰鍖哄叕瀹夋満鍏砢, visible: false },
+ { key: 3, label: `瀹夎鏃堕棿`, visible: false },
+ { key: 3, label: `绠$悊鍗曚綅`, visible: false },
+ { key: 3, label: `绠$悊鍗曚綅鑱旂郴鏂瑰紡`, visible: false },
+ { key: 3, label: `褰曞儚淇濆瓨澶╂暟`, visible: false },
+ { key: 3, label: `鎵�灞為儴闂�/琛屼笟`, visible: false },
+ ],
},
{
title: '閲嶇偣鎸囨尌鍥惧儚鍦ㄧ嚎鐜�',
index: 'key_command_image_online',
columns: [
{
- "label": "璁惧缂栫爜",
- "align": "center",
- "prop": "sbbm"
+ label: '鍐呯爜',
+ align: 'center',
+ prop: 'indexCode',
},
{
- "label": "璁惧鍚嶇О",
- "align": "center",
- "prop": "sbmc"
+ label: '璁惧鎴栧崱鍙e浗鏍囩紪鐮�',
+ align: 'center',
+ prop: 'externalIndexCode',
},
{
- "label": "鎽勫儚鏈洪噰闆嗗尯鍩�",
- "align": "center",
- "prop": "sxjcjqy"
+ label: '璁惧鎴栧崱鍙e悕绉�',
+ align: 'center',
+ prop: 'deviceName',
},
{
- "label": "鐩戞帶鐐逛綅绫诲瀷",
- "align": "center",
- "prop": "jkdwlx"
+ label: '缁勭粐缂栧彿',
+ align: 'center',
+ prop: 'orgCode',
},
{
- "label": "IPV4鍦板潃",
- "align": "center",
- "prop": "ip"
+ label: '鎶撴媿鏁版嵁閲�',
+ align: 'center',
+ prop: 'dataCount',
},
{
- "label": "缁忓害",
- "align": "center",
- "prop": "jd"
+ label: '闈炰粖鏃ユ姄鎷嶉噺',
+ align: 'center',
+ prop: 'noTodayCount',
},
{
- "label": "绾害",
- "align": "center",
- "prop": "wd"
+ label: '鍛ㄥ钩鍧囨姄鎷嶉噺',
+ align: 'center',
+ prop: 'weekCompareCount',
},
{
- "label": "鎽勫儚鏈哄姛鑳界被鍨�",
- "align": "center",
- "prop": "sxjgnlx"
+ label: '鎸佺画鏃犳暟鎹ぉ鏁�',
+ align: 'center',
+ prop: 'continueNoDataDays',
},
{
- "label": "MAC鍦板潃",
- "align": "center",
- "prop": "macdz"
+ label: '鎶撴媿鏁版嵁閲忕洃娴嬬粨鏋�',
+ align: 'center',
+ prop: 'resultTypeText',
},
- {
- "label": "璁惧鐘舵��",
- "align": "center",
- "prop": "sbzt"
- },
- {
- "label": "璁惧鍘傚晢",
- "align": "center",
- "prop": "sbcs"
- },
- {
- "label": "琛屾斂鍖哄煙",
- "align": "center",
- "prop": "xzqy"
- },
- {
- "label": "璁惧鍨嬪彿",
- "align": "center",
- "prop": "sbxh"
- },
- {
- "label": "鐐逛綅淇楃О",
- "align": "center",
- "prop": "dwcs"
- },
- {
- "label": "鎽勫儚鏈虹被鍨�",
- "align": "center",
- "prop": "sxjlx"
- },
- {
- "label": "琛ュ厜灞炴��",
- "align": "center",
- "prop": "bgsx"
- },
- {
- "label": "鎽勫儚鏈虹紪鐮佹牸寮�",
- "align": "center",
- "prop": "sxjbmgs"
- },
- {
- "label": "瀹夎鍦板潃",
- "align": "center",
- "prop": "azdz"
- },
- {
- "label": "鎽勫儚鏈轰綅缃被鍨�",
- "align": "center",
- "prop": "sxjwzlx"
- },
- {
- "label": "鐩戣鏂逛綅",
- "align": "center",
- "prop": "jsfw"
- },
- {
- "label": "鎽勫儚鏈哄満鏅璁剧収鐗嘦RL",
- "align": "center",
- "prop": "sxjcjyszp"
- },
- {
- "label": "鑱旂綉灞炴��",
- "align": "center",
- "prop": "lwsx"
- },
- {
- "label": "鎵�灞炶緰鍖哄叕瀹夋満鍏�",
- "align": "center",
- "prop": "ssxqgafg"
- },
- {
- "label": "瀹夎鏃堕棿",
- "align": "center",
- "prop": "azsj"
- },
- {
- "label": "绠$悊鍗曚綅",
- "align": "center",
- "prop": "gldw"
- },
- {
- "label": "绠$悊鍗曚綅鑱旂郴鏂瑰紡",
- "align": "center",
- "prop": "gldwlxfs"
- },
- {
- "label": "褰曞儚淇濆瓨澶╂暟",
- "align": "center",
- "prop": "lxbcts"
- },
- {
- "label": "鎵�灞為儴闂�/琛屼笟",
- "align": "center",
- "prop": "ssbmhy"
- }
],
card: [
{
@@ -2057,52 +2347,62 @@
{
"label": "鏁版嵁绫诲瀷",
"align": "center",
- "prop": "dataType"
+ "prop": "dataType",
+ width: 120
},
{
"label": "鍗″彛鍐呯爜鎴栭噰闆嗚澶囧唴鐮�",
"align": "center",
- "prop": "indexCode"
+ "prop": "indexCode",
+ width: 190
},
{
"label": "璁惧鎴栧崱鍙e浗鏍囩紪鐮�",
"align": "center",
- "prop": "externalIndexCode"
+ "prop": "externalIndexCode",
+ width: 190
},
{
"label": "璁惧鎴栧崱鍙e悕绉�",
"align": "center",
- "prop": "deviceName"
+ "prop": "deviceName",
+ width: 200
},
{
"label": "缁勭粐缂栧彿",
"align": "center",
- "prop": "orgCode"
+ "prop": "orgCode",
+ width: 100,
},
{
"label": "鎶撴媿鏁版嵁閲�",
"align": "center",
- "prop": "dataCount"
+ "prop": "dataCount",
+ width: 100,
},
{
"label": "闈炰粖鏃ユ姄鎷嶉噺",
"align": "center",
- "prop": "noTodayCount"
+ "prop": "noTodayCount",
+ width: 100,
},
{
"label": "鍛ㄥ钩鍧囨姄鎷嶉噺",
"align": "center",
- "prop": "weekCompareCount"
+ "prop": "weekCompareCount",
+ width: 120,
},
{
"label": "鎸佺画鏃犳暟鎹ぉ鏁�",
"align": "center",
- "prop": "continueNoDataDays"
+ "prop": "continueNoDataDays",
+ width: 120,
},
{
"label": "鎶撴媿鏁版嵁閲忕洃娴嬬粨鏋�",
"align": "center",
- "prop": "resultType"
+ "prop": "resultType",
+ width: 170
}
],
card: [
@@ -2132,52 +2432,62 @@
{
"label": "鏁版嵁绫诲瀷",
"align": "center",
- "prop": "dataType"
+ "prop": "dataType",
+ width: 100
},
{
"label": "鍗″彛鍐呯爜鎴栭噰闆嗚澶囧唴鐮�",
"align": "center",
- "prop": "indexCode"
+ "prop": "indexCode",
+ width: 190
},
{
"label": "璁惧鎴栧崱鍙e浗鏍囩紪鐮�",
"align": "center",
- "prop": "externalIndexCode"
+ "prop": "externalIndexCode",
+ width: 190
},
{
"label": "璁惧鎴栧崱鍙e悕绉�",
"align": "center",
- "prop": "deviceName"
+ "prop": "deviceName",
+ width: 200
},
{
"label": "缁勭粐缂栧彿",
"align": "center",
- "prop": "orgCode"
+ "prop": "orgCode",
+ width: 120
},
{
"label": "鎶撴媿鏁版嵁閲�",
"align": "center",
- "prop": "dataCount"
+ "prop": "dataCount",
+ width: 100
},
{
"label": "闈炰粖鏃ユ姄鎷嶉噺",
"align": "center",
- "prop": "noTodayCount"
+ "prop": "noTodayCount",
+ width: 110
},
{
"label": "鍛ㄥ钩鍧囨姄鎷嶉噺",
"align": "center",
- "prop": "weekCompareCount"
+ "prop": "weekCompareCount",
+ width: 150
},
{
"label": "鎸佺画鏃犳暟鎹ぉ鏁�",
"align": "center",
- "prop": "continueNoDataDays"
+ "prop": "continueNoDataDays",
+ width: 170
},
{
"label": "鎶撴媿鏁版嵁閲忕洃娴嬬粨鏋�",
"align": "center",
- "prop": "resultType"
+ "prop": "resultType",
+ width: 170
}
],
card: [
@@ -2207,142 +2517,170 @@
{
"label": "璁惧缂栫爜",
"align": "center",
- "prop": "sbbm"
+ "prop": "sbbm",
+ "width": 220
},
{
"label": "璁惧鍚嶇О",
"align": "center",
- "prop": "sbmc"
+ "prop": "sbmc",
+ "width": 250
},
{
"label": "鎽勫儚鏈洪噰闆嗗尯鍩�",
"align": "center",
- "prop": "sxjcjqy"
+ "prop": "sxjcjqy",
+ "width": 120
},
{
"label": "鐩戞帶鐐逛綅绫诲瀷",
"align": "center",
- "prop": "jkdwlx"
+ "prop": "jkdwlx",
+ "width": 150
},
{
"label": "IPV4鍦板潃",
"align": "center",
- "prop": "ip"
+ "prop": "ip",
+ "width": 150
},
{
"label": "缁忓害",
"align": "center",
- "prop": "jd"
+ "prop": "jd",
+ "width": 100
},
{
"label": "绾害",
"align": "center",
- "prop": "wd"
+ "prop": "wd",
+ "width": 100
},
{
"label": "鎽勫儚鏈哄姛鑳界被鍨�",
"align": "center",
- "prop": "sxjgnlx"
+ "prop": "sxjgnlx",
+ "width": 150
},
{
"label": "MAC鍦板潃",
"align": "center",
- "prop": "macdz"
+ "prop": "macdz",
+ "width": 150
},
{
"label": "璁惧鐘舵��",
"align": "center",
- "prop": "sbzt"
+ "prop": "sbzt",
+ "width": 100
},
{
"label": "璁惧鍘傚晢",
"align": "center",
- "prop": "sbcs"
+ "prop": "sbcs",
+ "width": 150
},
{
"label": "琛屾斂鍖哄煙",
"align": "center",
- "prop": "xzqy"
+ "prop": "xzqy",
+ "width": 150
},
{
"label": "璁惧鍨嬪彿",
"align": "center",
- "prop": "sbxh"
+ "prop": "sbxh",
+ "width": 120
},
{
"label": "鐐逛綅淇楃О",
"align": "center",
- "prop": "dwcs"
+ "prop": "dwcs",
+ "width": 250
},
{
"label": "鎽勫儚鏈虹被鍨�",
"align": "center",
- "prop": "sxjlx"
+ "prop": "sxjlx",
+ "width": 100
},
{
"label": "琛ュ厜灞炴��",
"align": "center",
- "prop": "bgsx"
+ "prop": "bgsx",
+ "width": 100
},
{
"label": "鎽勫儚鏈虹紪鐮佹牸寮�",
"align": "center",
- "prop": "sxjbmgs"
+ "prop": "sxjbmgs",
+ "width": 170
},
{
"label": "瀹夎鍦板潃",
"align": "center",
- "prop": "azdz"
+ "prop": "azdz",
+ "width": 170
},
{
"label": "鎽勫儚鏈轰綅缃被鍨�",
"align": "center",
- "prop": "sxjwzlx"
+ "prop": "sxjwzlx",
+ "width": 170
},
{
"label": "鐩戣鏂逛綅",
"align": "center",
- "prop": "jsfw"
+ "prop": "jsfw",
+ "width": 120
},
{
"label": "鎽勫儚鏈哄満鏅璁剧収鐗嘦RL",
"align": "center",
- "prop": "sxjcjyszp"
+ "prop": "sxjcjyszp",
+ "width": 190
},
{
"label": "鑱旂綉灞炴��",
"align": "center",
- "prop": "lwsx"
+ "prop": "lwsx",
+ "width": 120
},
{
"label": "鎵�灞炶緰鍖哄叕瀹夋満鍏�",
"align": "center",
- "prop": "ssxqgafg"
+ "prop": "ssxqgafg",
+ "width": 170
},
{
"label": "瀹夎鏃堕棿",
"align": "center",
- "prop": "azsj"
+ "prop": "azsj",
+ "width": 170
},
{
"label": "绠$悊鍗曚綅",
"align": "center",
- "prop": "gldw"
+ "prop": "gldw",
+ "width": 170
},
{
"label": "绠$悊鍗曚綅鑱旂郴鏂瑰紡",
"align": "center",
- "prop": "gldwlxfs"
+ "prop": "gldwlxfs",
+ "width": 190
},
{
"label": "褰曞儚淇濆瓨澶╂暟",
"align": "center",
- "prop": "lxbcts"
+ "prop": "lxbcts",
+ "width": 170
},
{
"label": "鎵�灞為儴闂�/琛屼笟",
"align": "center",
- "prop": "ssbmhy"
+ "prop": "ssbmhy",
+ "width": 170
}
],
card: [
@@ -2352,7 +2690,27 @@
]
}
- ]
+ ],
+ showList: [
+ { key: 0, label: `璁惧鍘傚晢`, visible: false },
+ { key: 1, label: `琛屾斂鍖哄煙`, visible: false },
+ { key: 2, label: `璁惧鍨嬪彿`, visible: false },
+ { key: 3, label: `鐐逛綅淇楃О`, visible: false },
+ { key: 4, label: `鎽勫儚鏈虹被鍨媊, visible: false },
+ { key: 5, label: `琛ュ厜灞炴�, visible: false },
+ { key: 6, label: `鎽勫儚鏈虹紪鐮佹牸寮廯, visible: false },
+ { key: 7, label: `瀹夎鍦板潃`, visible: false },
+ { key: 8, label: `鎽勫儚鏈轰綅缃被鍨媊, visible: false },
+ { key: 9, label: `鐩戣鏂逛綅`, visible: false },
+ { key: 10, label: `鎽勫儚鏈哄満鏅璁剧収鐗嘦RL`, visible: false },
+ { key: 11, label: `鑱旂綉灞炴�, visible: false },
+ { key: 12, label: `鎵�灞炶緰鍖哄叕瀹夋満鍏砢, visible: false },
+ { key: 13, label: `瀹夎鏃堕棿`, visible: false },
+ { key: 14, label: `绠$悊鍗曚綅`, visible: false },
+ { key: 15, label: `褰曞儚淇濆瓨澶╂暟`, visible: false },
+ { key: 16, label: `鎵�灞為儴闂�/琛屼笟`, visible: false },
+ { key: 16, label: `绠$悊鍗曚綅鑱旂郴鏂瑰紡`, visible: false },
+ ],
},
{
title: '杞﹁締鍗″彛淇℃伅閲囬泦鍑嗙‘鐜�',
@@ -2362,11 +2720,13 @@
label: '閲囬泦璁惧鍐呯爜 ',
align: 'center',
prop: 'indexCode',
+ width: 190
},
{
label: '鍥芥爣缂栫爜锛堝鐮侊級 ',
align: 'center',
prop: 'externalIndexCode',
+ width: 190
},
{
label: '缁勭粐缂栧彿 ',
@@ -2377,6 +2737,7 @@
label: '鍗″彛鍚嶇О ',
align: 'center',
prop: 'crossName',
+ width: 250
},
{
label: '缁忓害 ',
@@ -2427,76 +2788,91 @@
label: '鍐呯爜',
align: 'center',
prop: 'indexCode',
+ width: 190,
},
{
label: '璁惧鎴栧崱鍙e浗鏍囩紪鐮�',
align: 'center',
prop: 'externalIndexCode',
+ width: 190,
},
{
label: '璁惧鎴栧崱鍙e悕绉�',
align: 'center',
prop: 'deviceName',
+ width: 200,
},
{
label: '缁勭粐缂栧彿',
align: 'center',
prop: 'orgCode',
+ width: 120,
},
{
label: '鎶撴媿鏁版嵁閲�',
align: 'center',
prop: 'dataCount',
+ width: 120,
},
{
label: '涓昏灞炴�т笉瀹屾暣閲�',
align: 'center',
prop: 'mainNoIntegrityCount',
+ width: 150,
},
{
label: '鏁版嵁涓嶅畬鏁撮噺',
align: 'center',
prop: 'noIntegrityCount',
+ width: 120,
},
{
label: '杞︾墝鍙风爜涓嶅畬鏁存暟鎹噺',
align: 'center',
prop: 'plateNoItgrCount',
+ width: 190,
},
{
label: '杞︾墝棰滆壊涓嶅畬鏁存暟鎹噺',
align: 'center',
prop: 'plateColorItgrCount',
+ width: 170,
},
{
label: '杞﹁締绫诲瀷涓嶅畬鏁存暟鎹噺',
align: 'center',
prop: 'vehTypeItgrCount',
+ width: 170,
},
{
label: '杞﹁締鍝佺墝涓嶅畬鏁存暟鎹噺',
align: 'center',
prop: 'vehBrandItgrCount',
+ width: 170,
},
{
label: '杞﹁締鍨嬪彿涓嶅畬鏁存暟鎹噺',
align: 'center',
prop: 'vehModelItgrCount',
+ width: 170,
},
{
label: '杞﹁韩棰滆壊涓嶅畬鏁存暟鎹噺',
align: 'center',
prop: 'vehColorItgrCount',
+ width: 190,
},
{
label: '涓ら」灞炴�т笉瀹屾暣鐜�',
align: 'center',
prop: 'noIntegrityPercent',
+ width: 170,
},
{
label: '鍏」灞炴�т笉瀹屾暣鐜�',
align: 'center',
prop: 'mainNoIntegrityPercent',
+ width: 170,
}
],
card: [
@@ -2506,7 +2882,11 @@
]
}
- ]
+ ],
+ showList: [
+ { key: 0, label: `鍐呯爜`, visible: false },
+ { key: 1, label: `缁勭粐缂栧彿`, visible: false },
+ ],
},
{
title: '杞﹁締鍗″彛璁惧鎶撴媿鏁版嵁鍑嗙‘鎬�',
@@ -2516,66 +2896,73 @@
label: '鍐呯爜',
align: 'center',
prop: 'indexCode',
+ width: 190,
},
{
label: '璁惧鎴栧崱鍙e浗鏍囩紪鐮�',
align: 'center',
prop: 'externalIndexCode',
+ width: 190,
},
{
label: '璁惧鎴栧崱鍙e悕绉�',
align: 'center',
prop: 'deviceName',
+ width: 200,
},
{
label: '鎶撴媿鏁版嵁閲�',
align: 'center',
prop: 'dataCount',
+ width: 120,
},
{
label: '缁勭粐缂栧彿',
align: 'center',
prop: 'orgCode',
- },
- {
- label: '缁勭粐缂栧彿',
- align: 'center',
- prop: 'orgCode',
+ width: 120,
},
{
label: '鏁版嵁鎶芥閲�',
align: 'center',
prop: 'sampleCount',
+ width: 120,
},
{
label: '涓昏灞炴��(杞︾墝鍙风爜锛岃溅鐗岄鑹�)璇嗗埆涓嶄竴鑷存暟鎹噺',
align: 'center',
prop: 'majorDiffCount',
+ width: 350,
},
{
label: '杞︾墝鍙风爜涓嶄竴鑷存暟鎹噺',
align: 'center',
prop: 'plateDiffCount',
+ width: 180,
},
{
label: '杞︾墝棰滆壊涓嶄竴鑷存暟鎹噺',
align: 'center',
prop: 'plateColorDiffCount',
+ width: 180,
},
{
label: '绫诲瀷灞炴�т笉涓�鑷存暟鎹噺',
align: 'center',
prop: 'vehicleDiffCount',
+ width: 180,
},
{
label: '杞﹁締绫诲瀷涓嶄竴鑷存暟鎹噺',
align: 'center',
prop: 'vehicleTypeDiffCount',
+ width: 180,
},
{
label: '杞﹁締鍝佺墝涓嶄竴鑷存暟鎹噺',
align: 'center',
prop: 'vehicleBrandDiffCount',
+ width: 180,
},
],
card: [
@@ -2585,7 +2972,11 @@
]
}
- ]
+ ],
+ showList: [
+ { key: 0, label: `鍐呯爜`, visible: false },
+ { key: 1, label: `缁勭粐缂栧彿`, visible: false },
+ ],
},
{
title: '杞﹁締鍗″彛璁惧鏃堕挓鍑嗙‘鎬�',
@@ -2594,197 +2985,236 @@
{
"label": "璁惧缂栧彿",
"align": "center",
- "prop": "externalIndexCode"
+ "prop": "externalIndexCode",
+ width: 190,
},
{
"label": "璁惧鍚嶇О",
"align": "center",
- "prop": "deviceName"
+ "prop": "deviceName",
+ width: 200,
},
{
"label": "鍗″彛鍐呯爜鎴栭噰闆嗚澶囧唴鐮�",
"align": "center",
- "prop": "indexCode"
+ "prop": "indexCode",
+ width: 190,
},
{
"label": "缁勭粐缂栧彿",
"align": "center",
- "prop": "orgCode"
+ "prop": "orgCode",
+ width: 150,
},
{
"label": "缁勭粐鍚嶇О",
"align": "center",
- "prop": "orgName"
+ "prop": "orgName",
+ width: 170,
},
{
"label": "褰撴棩鎺ユ敹鍒扮殑褰撴棩鎶撴媿閲�",
"align": "center",
- "prop": "dataCount"
+ "prop": "dataCount",
+ width: 190,
},
{
"label": "褰撴棩鎺ユ敹鍒扮殑鐧藉ぉ鎶撴媿閲�",
"align": "center",
- "prop": "daySnapCount"
+ "prop": "daySnapCount",
+ width: 190,
},
{
"label": "褰撴棩鎺ユ敹鍒扮殑闈炲綋鏃ユ姄鎷嶉噺",
"align": "center",
- "prop": "noTodayCount"
+ "prop": "noTodayCount",
+ width: 190,
},
{
"label": "鎸佺画鏃犳暟鎹ぉ鏁�",
"align": "center",
- "prop": "continueNoDataCount"
+ "prop": "continueNoDataCount",
+ width: 170,
},
{
"label": "鎶撴媿鏁版嵁閲忕洃娴嬬粨鏋�",
"align": "center",
- "prop": "snapResultText"
+ "prop": "snapResultText",
+ width: 170,
},
{
"label": "鏃堕挓鍑嗙‘鐜�",
"align": "center",
- "prop": "snapClock.clockPercent"
+ "prop": "snapClock.clockPercent",
+ width: 120,
},
{
"label": "褰撴棩鎶撴媿鏁版嵁鏃堕挓鍑嗙‘鏁版嵁閲�",
"align": "center",
- "prop": "snapClock.todayClockCount"
+ "prop": "snapClock.todayClockCount",
+ width: 190,
},
{
"label": "褰撴棩鎶撴媿鏁版嵁鏃堕挓鍑嗙‘鎬у垽瀹氱粨鏋�",
"align": "center",
- "prop": "snapClock.todayClockResultText"
+ "prop": "snapClock.todayClockResultText",
+ width: 230,
},
{
"label": "鍏ㄩ儴鎶撴媿鏁版嵁鏃堕挓鍑嗙‘鏁版嵁閲�",
"align": "center",
- "prop": "snapClock.allClockCount"
+ "prop": "snapClock.allClockCount",
+ width: 210,
},
{
"label": "鍏ㄩ儴鎶撴媿鏁版嵁鏃堕挓鍑嗙‘鎬у垽瀹氱粨鏋�",
"align": "center",
- "prop": "snapClock.allClockResultText"
+ "prop": "snapClock.allClockResultText",
+ width: 230,
},
{
"label": "鍙婃椂鐜�",
"align": "center",
- "prop": "snapTimely.timelyPercent"
+ "prop": "snapTimely.timelyPercent",
+ width: 100,
},
{
"label": "褰撴棩鎶撴媿鏁版嵁寤惰繜閲�",
"align": "center",
- "prop": "snapTimely.todayDelayCount"
+ "prop": "snapTimely.todayDelayCount",
+ width: 170,
},
{
"label": "褰撴棩鎶撴媿鏁版嵁寤惰繜30s浠ヤ笂鏁版嵁閲�",
"align": "center",
- "prop": "snapTimely.todayDelayCount2"
+ "prop": "snapTimely.todayDelayCount2",
+ width: 230,
},
{
"label": "褰撴棩鎶撴媿鏁版嵁寤惰繜1m浠ヤ笂鏁版嵁閲�",
"align": "center",
- "prop": "snapTimely.todayDelayCount3"
+ "prop": "snapTimely.todayDelayCount3",
+ width: 210,
},
{
"label": "褰撴棩鎶撴媿鏁版嵁寤惰繜5m浠ヤ笂鏁版嵁閲�",
"align": "center",
- "prop": "snapTimely.todayDelayCount4"
+ "prop": "snapTimely.todayDelayCount4",
+ width: 210,
},
{
"label": "褰撴棩鎶撴媿鏁版嵁鍙婃椂鎬у垽瀹氱粨鏋�",
"align": "center",
- "prop": "snapTimely.todayTimelyResultText"
+ "prop": "snapTimely.todayTimelyResultText",
+ width: 210,
},
{
"label": "鍏ㄩ儴鏁版嵁寤惰繜閲�",
"align": "center",
- "prop": "snapTimely.allDelayCount"
+ "prop": "snapTimely.allDelayCount",
+ width: 150,
},
{
"label": "鍏ㄩ儴鏁版嵁涓欢杩�30s浠ヤ笂鏁版嵁閲�",
"align": "center",
- "prop": "snapTimely.allDelayCount2"
+ "prop": "snapTimely.allDelayCount2",
+ width: 230,
},
{
"label": "鍏ㄩ儴鏁版嵁涓欢杩�1m浠ヤ笂鏁版嵁閲�",
"align": "center",
- "prop": "snapTimely.allDelayCount3"
+ "prop": "snapTimely.allDelayCount3",
+ width: 210,
},
{
"label": "鍏ㄩ儴鏁版嵁涓欢杩�5m浠ヤ笂鏁版嵁閲�",
"align": "center",
- "prop": "snapTimely.allDelayCount4"
+ "prop": "snapTimely.allDelayCount4",
+ width: 210,
},
{
"label": "鍏ㄩ儴鏁版嵁鍙婃椂鎬у垽瀹氱粨鏋�",
"align": "center",
- "prop": "snapTimely.allTimelyResultText"
+ "prop": "snapTimely.allTimelyResultText",
+ width: 170,
},
{
"label": "涓嶅敮涓�鏁版嵁閲�",
"align": "center",
- "prop": "snapUnique.nouniqueData"
+ "prop": "snapUnique.nouniqueData",
+ width: 140,
},
{
"label": "涓嶅敮涓�鏁版嵁閲嶅閲�",
"align": "center",
- "prop": "snapUnique.nouniqueCount"
+ "prop": "snapUnique.nouniqueCount",
+ width: 150,
},
{
"label": "杞︾墝鏈瘑鍒噺",
"align": "center",
- "prop": "snapPlate.noNumberCount"
+ "prop": "snapPlate.noNumberCount",
+ width: 120,
},
{
"label": "鐧藉ぉ鏈瘑鍒噺",
"align": "center",
- "prop": "snapPlate.dayNoNumberCount"
+ "prop": "snapPlate.dayNoNumberCount",
+ width: 120,
},
{
"label": "杞︾墝璇嗗埆寮傚父",
"align": "center",
- "prop": "snapPlate.recgResultText"
+ "prop": "snapPlate.recgResultText",
+ width: 120,
},
{
"label": "杞︾墝鍙蜂笉瀹屾暣閲�",
"align": "center",
- "prop": "integrity.plateNoItgrCount"
+ "prop": "integrity.plateNoItgrCount",
+ width: 120,
},
{
"label": "杞︾墝棰滆壊涓嶅畬鏁撮噺",
"align": "center",
- "prop": "integrity.plateColorItgrCount"
+ "prop": "integrity.plateColorItgrCount",
+ width: 140,
},
{
"label": "杞﹁締绫诲瀷涓嶅畬鏁撮噺",
"align": "center",
- "prop": "integrity.vehTypeItgrCount"
+ "prop": "integrity.vehTypeItgrCount",
+ width: 150,
},
{
"label": "杞﹁締鍝佺墝涓嶅畬鏁撮噺",
"align": "center",
- "prop": "integrity.vehBrandItgrCount"
+ "prop": "integrity.vehBrandItgrCount",
+ width: 170,
},
{
"label": "杞﹁締棰滆壊涓嶅畬鏁撮噺",
"align": "center",
- "prop": "integrity.vehColorItgrCount"
+ "prop": "integrity.vehColorItgrCount",
+ width: 170,
},
{
"label": "杞﹁締鍨嬪彿涓嶅畬鏁撮噺",
"align": "center",
- "prop": "integrity.vehModelItgrCount"
+ "prop": "integrity.vehModelItgrCount",
+ width: 170,
},
{
"label": "涓昏灞炴�т笉瀹屾暣閲�",
"align": "center",
- "prop": "integrity.mainNoIntegrityCount"
+ "prop": "integrity.mainNoIntegrityCount",
+ width: 170,
},
{
"label": "鍏ㄩ噺灞炴�т笉瀹屾暣閲�",
"align": "center",
- "prop": "integrity.noIntegrityCount"
+ "prop": "integrity.noIntegrityCount",
+ width: 170,
}
],
card: [
@@ -2802,7 +3232,38 @@
},
]
}
- ]
+ ],
+ showList: [
+ { key: 0, label: `鍗″彛鍐呯爜鎴栭噰闆嗚澶囧唴鐮乣, visible: false },
+ { key: 1, label: `缁勭粐缂栧彿`, visible: false },
+ { key: 1, label: `缁勭粐鍚嶇О`, visible: false },
+ { key: 1, label: `褰撴棩鎺ユ敹鍒扮殑褰撴棩鎶撴媿閲廯, visible: true },
+ { key: 1, label: `褰撴棩鎺ユ敹鍒扮殑鐧藉ぉ鎶撴媿閲廯, visible: true },
+ { key: 1, label: `褰撴棩鎺ユ敹鍒扮殑闈炲綋鏃ユ姄鎷嶉噺`, visible: true },
+ { key: 1, label: `鎸佺画鏃犳暟鎹ぉ鏁癭, visible: true },
+ { key: 1, label: `鎶撴媿鏁版嵁閲忕洃娴嬬粨鏋渀, visible: true },
+ { key: 1, label: `鏃堕挓鍑嗙‘鐜嘸, visible: true },
+ { key: 1, label: `褰撴棩鎶撴媿鏁版嵁鏃堕挓鍑嗙‘鏁版嵁閲廯, visible: true },
+ { key: 1, label: `褰撴棩鎶撴媿鏁版嵁鏃堕挓鍑嗙‘鎬у垽瀹氱粨鏋渀, visible: true },
+ { key: 1, label: `鍏ㄩ儴鎶撴媿鏁版嵁鏃堕挓鍑嗙‘鏁版嵁閲廯, visible: true },
+ { key: 1, label: `鍏ㄩ儴鎶撴媿鏁版嵁鏃堕挓鍑嗙‘鎬у垽瀹氱粨鏋渀, visible: true },
+ { key: 1, label: `鍙婃椂鐜嘸, visible: true },
+ { key: 1, label: `褰撴棩鎶撴媿鏁版嵁寤惰繜閲廯, visible: true },
+ { key: 1, label: `褰撴棩鎶撴媿鏁版嵁寤惰繜30s浠ヤ笂鏁版嵁閲廯, visible: true },
+ { key: 1, label: `褰撴棩鎶撴媿鏁版嵁寤惰繜1m浠ヤ笂鏁版嵁閲廯, visible: true },
+ { key: 1, label: `褰撴棩鎶撴媿鏁版嵁寤惰繜5m浠ヤ笂鏁版嵁閲廯, visible: true },
+ { key: 1, label: `褰撴棩鎶撴媿鏁版嵁鍙婃椂鎬у垽瀹氱粨鏋渀, visible: true },
+ { key: 1, label: `鍏ㄩ儴鏁版嵁寤惰繜閲廯, visible: true },
+ { key: 1, label: `鍏ㄩ儴鏁版嵁涓欢杩�30s浠ヤ笂鏁版嵁閲廯, visible: true },
+ { key: 1, label: `鍏ㄩ儴鏁版嵁涓欢杩�1m浠ヤ笂鏁版嵁閲廯, visible: true },
+ { key: 1, label: `鍏ㄩ儴鏁版嵁涓欢杩�5m浠ヤ笂鏁版嵁閲廯, visible: true },
+ { key: 1, label: `鍏ㄩ儴鏁版嵁鍙婃椂鎬у垽瀹氱粨鏋渀, visible: true },
+ { key: 1, label: `涓嶅敮涓�鏁版嵁閲廯, visible: true },
+ { key: 1, label: `涓嶅敮涓�鏁版嵁閲嶅閲廯, visible: true },
+ { key: 1, label: `杞︾墝鏈瘑鍒噺`, visible: true },
+ { key: 1, label: `鐧藉ぉ鏈瘑鍒噺`, visible: true },
+ { key: 1, label: `杞︾墝璇嗗埆寮傚父`, visible: true },
+ ],
},
{
title: '杞﹁締鍗″彛璁惧鎶撴媿鏁版嵁涓婁紶鍙婃椂鎬�',
@@ -2812,56 +3273,67 @@
label: '鍐呯爜',
align: 'center',
prop: 'indexCode',
+ width: 190,
},
{
label: '璁惧鎴栧崱鍙e浗鏍囩紪鐮�',
align: 'center',
prop: 'externalIndexCode',
+ width: 190,
},
{
label: '璁惧鎴栧崱鍙e悕绉�',
align: 'center',
prop: 'deviceName',
+ width: 200,
},
{
label: '缁勭粐缂栧彿',
align: 'center',
prop: 'orgCode',
+ width: 150,
},
{
label: '鎶撴媿鏁版嵁閲�',
align: 'center',
prop: 'dataCount',
+ width: 120,
},
{
label: '寤惰繜閲�',
align: 'center',
prop: 'delayCount',
+ width: 120,
},
{
label: '鍊掓寕閲�',
align: 'center',
prop: 'invertCount',
+ width: 120,
},
{
label: '寤惰繜14-30s鐨勬暟鎹噺',
align: 'center',
prop: 'dataDelayCount1',
+ width: 190,
},
{
label: '寤惰繜31-60s鐨勬暟鎹噺',
align: 'center',
prop: 'dataDelayCount2',
+ width: 190,
},
{
label: '寤惰繜61-300s鐨勬暟鎹噺',
align: 'center',
prop: 'dataDelayCount3',
+ width: 190,
},
{
label: '寤惰繜澶т簬300s鐨勬暟鎹噺',
align: 'center',
prop: 'dataDelayCount4',
+ width: 190,
},
],
card: [
@@ -2881,61 +3353,73 @@
label: '鍐呯爜',
align: 'center',
prop: 'indexCode',
+ width: 190,
},
{
label: '璁惧鎴栧崱鍙e浗鏍囩紪鐮�',
align: 'center',
prop: 'externalIndexCode',
+ width: 190,
},
{
label: '璁惧鎴栧崱鍙e悕绉�',
align: 'center',
prop: 'deviceName',
+ width: 200,
},
{
label: '缁勭粐缂栧彿',
align: 'center',
prop: 'orgCode',
+ width: 150,
},
{
label: '鎶撴媿鏁版嵁閲�',
align: 'center',
prop: 'dataCount',
+ width: 150,
},
{
label: '鏁版嵁鎶芥閲�',
align: 'center',
prop: 'sampleCount',
+ width: 150,
},
{
label: '灏忓浘璁块棶寮傚父閲�',
align: 'center',
prop: 'smallPicExpCount',
+ width: 170,
},
{
label: '澶у浘璁块棶寮傚父閲�',
align: 'center',
prop: 'bigPicExpCount',
+ width: 170,
},
{
label: '瀛樺湪鍥剧墖璁块棶寮傚父鐨勬暟鎹噺',
align: 'center',
prop: 'expCount',
+ width: 190,
},
{
label: '浜鸿劯澶у皬鍥句笉涓�鑷存暟閲�',
align: 'center',
prop: 'imgDiffCount',
+ width: 170,
},
{
label: 'Osd鏍囨敞寮傚父閲�',
align: 'center',
prop: 'osdExpCount',
+ width: 170,
},
{
label: '澶у浘涓嶅彲鐢ㄩ噺',
align: 'center',
prop: 'bigDisableCount',
+ width: 170,
},
],
card: [
@@ -2954,92 +3438,110 @@
{
"label": "鍗″彛鍐呯爜鎴栭噰闆嗚澶囧唴鐮�",
"align": "center",
- "prop": "indexCode"
+ "prop": "indexCode",
+ width: 190,
},
{
"label": "璁惧鎴栧崱鍙e浗鏍囩紪鐮�",
"align": "center",
- "prop": "externalIndexCode"
+ "prop": "externalIndexCode",
+ width: 190,
},
{
"label": "璁惧鎴栧崱鍙e悕绉�",
"align": "center",
- "prop": "deviceName"
+ "prop": "deviceName",
+ width: 200,
},
{
"label": "缁勭粐缂栧彿",
"align": "center",
- "prop": "orgCode"
+ "prop": "orgCode",
+ width: 150,
},
{
"label": "缁勭粐鍚嶇О",
"align": "center",
- "prop": "orgName"
+ "prop": "orgName",
+ width: 170,
},
{
"label": "澶у浘鍙敤鎬ф暟鎹娊妫�閲�",
"align": "center",
- "prop": "bigUseful.sampleCount"
+ "prop": "bigUseful.sampleCount",
+ width: 190,
},
{
"label": "澶у浘鍙敤鐜�",
"align": "center",
- "prop": "bigUseful.bigUsefulPercent"
+ "prop": "bigUseful.bigUsefulPercent",
+ width: 150,
},
{
"label": "澶у浘璁块棶寮傚父鏁版嵁閲�",
"align": "center",
- "prop": "bigUseful.bigPicExpCount"
+ "prop": "bigUseful.bigPicExpCount",
+ width: 170,
},
{
"label": "OSD鏍囨敞寮傚父鏁版嵁閲�",
"align": "center",
- "prop": "bigUseful.osdExpCount"
+ "prop": "bigUseful.osdExpCount",
+ width: 170,
},
{
"label": "杞﹁締灞炴�т笉涓�鑷存暟鎹娊妫�閲�",
"align": "center",
- "prop": "vehDiff.sampleCount"
+ "prop": "vehDiff.sampleCount",
+ width: 190,
},
{
"label": "杞︾墝鍙风爜涓嶄竴鑷存暟鎹噺",
"align": "center",
- "prop": "vehDiff.plateNoDiffCount"
+ "prop": "vehDiff.plateNoDiffCount",
+ width: 190,
},
{
"label": "杞︾墝棰滆壊涓嶄竴鑷存暟鎹噺",
"align": "center",
- "prop": "vehDiff.plateColorDiffCount"
+ "prop": "vehDiff.plateColorDiffCount",
+ width: 190,
},
{
"label": "杞﹁締绫诲瀷涓嶄竴鑷存暟鎹噺",
"align": "center",
- "prop": "vehDiff.vehTypeDiffCount"
+ "prop": "vehDiff.vehTypeDiffCount",
+ width: 190,
},
{
"label": "杞﹁締鍝佺墝涓嶄竴鑷存暟鎹噺",
"align": "center",
- "prop": "vehDiff.vehBrandDiffCount"
+ "prop": "vehDiff.vehBrandDiffCount",
+ width: 190,
},
{
"label": "涓昏灞炴�т笉涓�鑷存暟鎹噺",
"align": "center",
- "prop": "vehDiff.majorDiffCount"
+ "prop": "vehDiff.majorDiffCount",
+ width: 190,
},
{
"label": "涓昏灞炴�т竴鑷寸巼",
"align": "center",
- "prop": "vehDiff.majorConPercent"
+ "prop": "vehDiff.majorConPercent",
+ width: 150,
},
{
"label": "閲嶈灞炴�т笉涓�鑷存暟鎹噺",
"align": "center",
- "prop": "vehDiff.importDiffCount"
+ "prop": "vehDiff.importDiffCount",
+ width: 170,
},
{
"label": "閲嶈灞炴�т竴鑷寸巼",
"align": "center",
- "prop": "vehDiff.importantConPercent"
+ "prop": "vehDiff.importantConPercent",
+ width: 150,
}
],
card: [
@@ -3049,7 +3551,12 @@
]
}
- ]
+ ],
+ showList: [
+ { key: 0, label: `鍗″彛鍐呯爜鎴栭噰闆嗚澶囧唴鐮乣, visible: false },
+ { key: 1, label: `缁勭粐缂栧彿`, visible: false },
+ { key: 1, label: `缁勭粐鍚嶇О`, visible: false },
+ ],
},
]
};
@@ -3064,46 +3571,55 @@
label: '鍐呯爜',
align: 'center',
prop: 'indexCode',
+ width: 190,
},
{
label: '璁惧鎴栧崱鍙e浗鏍囩紪鐮�',
align: 'center',
prop: 'externalIndexCode',
+ width: 190,
},
{
label: '璁惧鎴栧崱鍙e悕绉�',
align: 'center',
prop: 'deviceName',
+ width: 200,
},
{
label: '缁勭粐缂栧彿',
align: 'center',
prop: 'orgCode',
+ width: 150,
},
{
label: '鎶撴媿鏁版嵁閲�',
align: 'center',
prop: 'dataCount',
+ width: 150,
},
{
label: '闈炰粖鏃ユ姄鎷嶉噺',
align: 'center',
prop: 'noTodayCount',
+ width: 150,
},
{
label: '鍛ㄥ钩鍧囨姄鎷嶉噺',
align: 'center',
prop: 'weekCompareCount',
+ width: 150,
},
{
label: '鎸佺画鏃犳暟鎹ぉ鏁�',
align: 'center',
prop: 'continueNoDataDays',
+ width: 150,
},
{
label: '鎶撴媿鏁版嵁閲忕洃娴嬬粨鏋�',
align: 'center',
prop: 'resultTypeText',
+ width: 150,
},
],
card: [
@@ -3134,11 +3650,13 @@
label: '鍐呯爜',
align: 'center',
prop: 'indexCode',
+ width: 190,
},
{
label: '璁惧鎴栧崱鍙e浗鏍囩紪鐮�',
align: 'center',
prop: 'externalIndexCode',
+ width: 190,
},
{
label: '璁惧鎴栧崱鍙e悕绉�',
@@ -3149,31 +3667,37 @@
label: '缁勭粐缂栧彿',
align: 'center',
prop: 'orgCode',
+ width: 100,
},
{
label: '鎶撴媿鏁版嵁閲�',
align: 'center',
prop: 'dataCount',
+ width: 120,
},
{
label: '闈炰粖鏃ユ姄鎷嶉噺',
align: 'center',
prop: 'noTodayCount',
+ width: 120,
},
{
label: '鍛ㄥ钩鍧囨姄鎷嶉噺',
align: 'center',
prop: 'weekCompareCount',
+ width: 120,
},
{
label: '鎸佺画鏃犳暟鎹ぉ鏁�',
align: 'center',
prop: 'continueNoDataDays',
+ width: 120,
},
{
label: '鎶撴媿鏁版嵁閲忕洃娴嬬粨鏋�',
align: 'center',
prop: 'resultTypeText',
+ width: 150,
},
],
card: [
@@ -3203,142 +3727,170 @@
{
"label": "璁惧缂栫爜",
"align": "center",
- "prop": "sbbm"
+ "prop": "sbbm",
+ "width": 220
},
{
"label": "璁惧鍚嶇О",
"align": "center",
- "prop": "sbmc"
+ "prop": "sbmc",
+ "width": 250
},
{
"label": "鎽勫儚鏈洪噰闆嗗尯鍩�",
"align": "center",
- "prop": "sxjcjqy"
+ "prop": "sxjcjqy",
+ "width": 120
},
{
"label": "鐩戞帶鐐逛綅绫诲瀷",
"align": "center",
- "prop": "jkdwlx"
+ "prop": "jkdwlx",
+ "width": 150
},
{
"label": "IPV4鍦板潃",
"align": "center",
- "prop": "ip"
+ "prop": "ip",
+ "width": 150
},
{
"label": "缁忓害",
"align": "center",
- "prop": "jd"
+ "prop": "jd",
+ "width": 100
},
{
"label": "绾害",
"align": "center",
- "prop": "wd"
+ "prop": "wd",
+ "width": 100
},
{
"label": "鎽勫儚鏈哄姛鑳界被鍨�",
"align": "center",
- "prop": "sxjgnlx"
+ "prop": "sxjgnlx",
+ "width": 150
},
{
"label": "MAC鍦板潃",
"align": "center",
- "prop": "macdz"
+ "prop": "macdz",
+ "width": 150
},
{
"label": "璁惧鐘舵��",
"align": "center",
- "prop": "sbzt"
+ "prop": "sbzt",
+ "width": 100
},
{
"label": "璁惧鍘傚晢",
"align": "center",
- "prop": "sbcs"
+ "prop": "sbcs",
+ "width": 150
},
{
"label": "琛屾斂鍖哄煙",
"align": "center",
- "prop": "xzqy"
+ "prop": "xzqy",
+ "width": 150
},
{
"label": "璁惧鍨嬪彿",
"align": "center",
- "prop": "sbxh"
+ "prop": "sbxh",
+ "width": 120
},
{
"label": "鐐逛綅淇楃О",
"align": "center",
- "prop": "dwcs"
+ "prop": "dwcs",
+ "width": 250
},
{
"label": "鎽勫儚鏈虹被鍨�",
"align": "center",
- "prop": "sxjlx"
+ "prop": "sxjlx",
+ "width": 100
},
{
"label": "琛ュ厜灞炴��",
"align": "center",
- "prop": "bgsx"
+ "prop": "bgsx",
+ "width": 100
},
{
"label": "鎽勫儚鏈虹紪鐮佹牸寮�",
"align": "center",
- "prop": "sxjbmgs"
+ "prop": "sxjbmgs",
+ "width": 170
},
{
"label": "瀹夎鍦板潃",
"align": "center",
- "prop": "azdz"
+ "prop": "azdz",
+ "width": 170
},
{
"label": "鎽勫儚鏈轰綅缃被鍨�",
"align": "center",
- "prop": "sxjwzlx"
+ "prop": "sxjwzlx",
+ "width": 170
},
{
"label": "鐩戣鏂逛綅",
"align": "center",
- "prop": "jsfw"
+ "prop": "jsfw",
+ "width": 120
},
{
"label": "鎽勫儚鏈哄満鏅璁剧収鐗嘦RL",
"align": "center",
- "prop": "sxjcjyszp"
+ "prop": "sxjcjyszp",
+ "width": 190
},
{
"label": "鑱旂綉灞炴��",
"align": "center",
- "prop": "lwsx"
+ "prop": "lwsx",
+ "width": 120
},
{
"label": "鎵�灞炶緰鍖哄叕瀹夋満鍏�",
"align": "center",
- "prop": "ssxqgafg"
+ "prop": "ssxqgafg",
+ "width": 170
},
{
"label": "瀹夎鏃堕棿",
"align": "center",
- "prop": "azsj"
+ "prop": "azsj",
+ "width": 170
},
{
"label": "绠$悊鍗曚綅",
"align": "center",
- "prop": "gldw"
+ "prop": "gldw",
+ "width": 170
},
{
"label": "绠$悊鍗曚綅鑱旂郴鏂瑰紡",
"align": "center",
- "prop": "gldwlxfs"
+ "prop": "gldwlxfs",
+ "width": 190
},
{
"label": "褰曞儚淇濆瓨澶╂暟",
"align": "center",
- "prop": "lxbcts"
+ "prop": "lxbcts",
+ "width": 170
},
{
"label": "鎵�灞為儴闂�/琛屼笟",
"align": "center",
- "prop": "ssbmhy"
+ "prop": "ssbmhy",
+ "width": 170
}
],
card: [
@@ -3348,7 +3900,27 @@
]
}
- ]
+ ],
+ showList: [
+ { key: 0, label: `璁惧鍘傚晢`, visible: false },
+ { key: 1, label: `琛屾斂鍖哄煙`, visible: false },
+ { key: 2, label: `璁惧鍨嬪彿`, visible: false },
+ { key: 3, label: `鐐逛綅淇楃О`, visible: false },
+ { key: 4, label: `鎽勫儚鏈虹被鍨媊, visible: false },
+ { key: 5, label: `琛ュ厜灞炴�, visible: false },
+ { key: 6, label: `鎽勫儚鏈虹紪鐮佹牸寮廯, visible: false },
+ { key: 7, label: `瀹夎鍦板潃`, visible: false },
+ { key: 8, label: `鎽勫儚鏈轰綅缃被鍨媊, visible: false },
+ { key: 9, label: `鐩戣鏂逛綅`, visible: false },
+ { key: 10, label: `鎽勫儚鏈哄満鏅璁剧収鐗嘦RL`, visible: false },
+ { key: 11, label: `鑱旂綉灞炴�, visible: false },
+ { key: 12, label: `鎵�灞炶緰鍖哄叕瀹夋満鍏砢, visible: false },
+ { key: 13, label: `瀹夎鏃堕棿`, visible: false },
+ { key: 14, label: `绠$悊鍗曚綅`, visible: false },
+ { key: 15, label: `褰曞儚淇濆瓨澶╂暟`, visible: false },
+ { key: 16, label: `鎵�灞為儴闂�/琛屼笟`, visible: false },
+ { key: 16, label: `绠$悊鍗曚綅鑱旂郴鏂瑰紡`, visible: false },
+ ],
},
{
title: '浜鸿劯鍗″彛淇℃伅閲囬泦鍑嗙‘鐜�',
@@ -3358,16 +3930,19 @@
label: '缁勭粐缂栧彿 ',
align: 'center',
prop: 'orgCode',
+ width: 100,
},
{
label: '閲囬泦璁惧鍐呯爜 ',
align: 'center',
prop: 'indexCode',
+ width: 190,
},
{
label: '鍥芥爣缂栫爜锛堝鐮侊級 ',
align: 'center',
prop: 'externalIndexCode',
+ width: 190,
},
{
label: '鍗″彛鍚嶇О ',
@@ -3378,21 +3953,25 @@
label: '缁忓害 ',
align: 'center',
prop: 'longitude',
+ width: 100,
},
{
label: '绾害 ',
align: 'center',
prop: 'latitude',
+ width: 100,
},
{
label: '缁忕含搴︾洃娴嬬粨鏋� ',
align: 'center',
prop: 'lalTypeText',
+ width: 150,
},
{
label: '鍥芥爣缂栫爜鐩戞祴缁撴灉 ',
align: 'center',
prop: 'gbCodeTypeText',
+ width: 150,
},
],
card: [
@@ -3423,6 +4002,7 @@
label: '閲囬泦璁惧鍚嶇О ',
align: 'center',
prop: 'cameraName',
+ width: 250
},
{
label: '缁忓害 ',
@@ -3482,172 +4062,206 @@
{
"label": "璁惧缂栧彿",
"align": "center",
- "prop": "externalIndexCode"
+ "prop": "externalIndexCode",
+ width: 190,
},
{
"label": "璁惧鍚嶇О",
"align": "center",
- "prop": "deviceName"
+ "prop": "deviceName",
+ width: 200,
},
{
"label": "鍗″彛鍐呯爜鎴栭噰闆嗚澶囧唴鐮�",
"align": "center",
- "prop": "indexCode"
+ "prop": "indexCode",
+ width: 190,
},
{
"label": "缁勭粐缂栧彿",
"align": "center",
- "prop": "orgCode"
+ "prop": "orgCode",
+ width: 150,
},
{
"label": "缁勭粐鍚嶇О",
"align": "center",
- "prop": "orgName"
+ "prop": "orgName",
+ width: 190,
},
{
"label": "褰撴棩鎺ユ敹鍒扮殑褰撴棩鎶撴媿閲�",
"align": "center",
- "prop": "dataCount"
+ "prop": "dataCount",
+ width: 200,
},
{
"label": "褰撴棩鎺ユ敹鍒扮殑鐧藉ぉ鎶撴媿閲�",
"align": "center",
- "prop": "daySnapCount"
+ "prop": "daySnapCount",
+ width: 200,
},
{
"label": "褰撴棩鎺ユ敹鍒扮殑闈炲綋鏃ユ姄鎷嶉噺",
"align": "center",
- "prop": "noTodayCount"
+ "prop": "noTodayCount",
+ width: 200,
},
{
"label": "鎸佺画鏃犳暟鎹ぉ鏁�",
"align": "center",
- "prop": "continueNoDataCount"
+ "prop": "continueNoDataCount",
+ width: 150,
},
{
"label": "鎶撴媿鏁版嵁閲忕洃娴嬬粨鏋�",
"align": "center",
- "prop": "snapResultText"
+ "prop": "snapResultText",
+ width: 170,
},
{
"label": "鏃堕挓鍑嗙‘鐜�",
"align": "center",
- "prop": "snapClock.clockPercent"
+ "prop": "snapClock.clockPercent",
+ width: 150,
},
{
"label": "褰撴棩鎶撴媿鏁版嵁鏃堕挓鍑嗙‘鏁版嵁閲�",
"align": "center",
- "prop": "snapClock.todayClockCount"
+ "prop": "snapClock.todayClockCount",
+ width: 210,
},
{
"label": "褰撴棩鎶撴媿鏁版嵁鏃堕挓鍑嗙‘鎬у垽瀹氱粨鏋�",
"align": "center",
- "prop": "snapClock.todayClockResultText"
+ "prop": "snapClock.todayClockResultText",
+ width: 230,
},
{
"label": "鍏ㄩ儴鎶撴媿鏁版嵁鏃堕挓鍑嗙‘鏁版嵁閲�",
"align": "center",
- "prop": "snapClock.allClockCount"
+ "prop": "snapClock.allClockCount",
+ width: 190,
},
{
"label": "鍏ㄩ儴鎶撴媿鏁版嵁鏃堕挓鍑嗙‘鎬у垽瀹氱粨鏋�",
"align": "center",
- "prop": "snapClock.allClockResultText"
+ "prop": "snapClock.allClockResultText",
+ width: 230,
},
{
"label": "鍙婃椂鐜�",
"align": "center",
- "prop": "snapTimely.timelyPercent"
+ "prop": "snapTimely.timelyPercent",
+ width: 120,
},
{
"label": "褰撴棩鎶撴媿鏁版嵁寤惰繜閲�",
"align": "center",
- "prop": "snapTimely.todayDelayCount"
+ "prop": "snapTimely.todayDelayCount",
+ width: 170,
},
{
"label": "褰撴棩鎶撴媿鏁版嵁寤惰繜30s浠ヤ笂鏁版嵁閲�",
"align": "center",
- "prop": "snapTimely.todayDelayCount2"
+ "prop": "snapTimely.todayDelayCount2",
+ width: 230,
},
{
"label": "褰撴棩鎶撴媿鏁版嵁寤惰繜1m浠ヤ笂鏁版嵁閲�",
"align": "center",
- "prop": "snapTimely.todayDelayCount3"
+ "prop": "snapTimely.todayDelayCount3",
+ width: 230,
},
{
"label": "褰撴棩鎶撴媿鏁版嵁寤惰繜5m浠ヤ笂鏁版嵁閲�",
"align": "center",
- "prop": "snapTimely.todayDelayCount4"
+ "prop": "snapTimely.todayDelayCount4",
+ width: 230,
},
{
"label": "褰撴棩鎶撴媿鏁版嵁鍙婃椂鎬у垽瀹氱粨鏋�",
"align": "center",
- "prop": "snapTimely.todayTimelyResultText"
+ "prop": "snapTimely.todayTimelyResultText",
+ width: 210,
},
{
"label": "鍏ㄩ儴鏁版嵁寤惰繜閲�",
"align": "center",
- "prop": "snapTimely.allDelayCount"
+ "prop": "snapTimely.allDelayCount",
+ width: 150,
},
{
"label": "鍏ㄩ儴鏁版嵁涓欢杩�30s浠ヤ笂鏁版嵁閲�",
"align": "center",
- "prop": "snapTimely.allDelayCount2"
+ "prop": "snapTimely.allDelayCount2",
+ width: 230,
},
{
"label": "鍏ㄩ儴鏁版嵁涓欢杩�1m浠ヤ笂鏁版嵁閲�",
"align": "center",
- "prop": "snapTimely.allDelayCount3"
+ "prop": "snapTimely.allDelayCount3",
+ width: 210,
},
{
"label": "鍏ㄩ儴鏁版嵁涓欢杩�5m浠ヤ笂鏁版嵁閲�",
"align": "center",
- "prop": "snapTimely.allDelayCount4"
+ "prop": "snapTimely.allDelayCount4",
+ width: 210,
},
{
"label": "鍏ㄩ儴鏁版嵁鍙婃椂鎬у垽瀹氱粨鏋�",
"align": "center",
- "prop": "snapTimely.allTimelyResultText"
+ "prop": "snapTimely.allTimelyResultText",
+ width: 190,
},
{
"label": "寤烘ā澶辫触鐜�",
"align": "center",
- "prop": "snapValidity.failPercent"
+ "prop": "snapValidity.failPercent",
+ width: 120,
},
{
"label": "寤烘ā澶辫触鏁版嵁閲�",
"align": "center",
- "prop": "snapValidity.failCount"
+ "prop": "snapValidity.failCount",
+ width: 150,
},
{
"label": "鐧藉ぉ寤烘ā澶辫触鏁版嵁閲�",
"align": "center",
- "prop": "snapValidity.dayFailCount"
+ "prop": "snapValidity.dayFailCount",
+ width: 170,
},
{
"label": "浣庤瘎鍒嗘暟鎹噺",
"align": "center",
- "prop": "snapValidity.lowScoreCount"
+ "prop": "snapValidity.lowScoreCount",
+ width: 120,
},
{
"label": "骞冲潎浜鸿劯浣庡钩鍒嗙巼",
"align": "center",
- "prop": "snapValidity.lowScorePercent"
+ "prop": "snapValidity.lowScorePercent",
+ width: 150,
},
{
"label": "鐧藉ぉ浜鸿劯浣庡钩鍒嗘暟鎹噺",
"align": "center",
- "prop": "snapValidity.dayLowCount"
+ "prop": "snapValidity.dayLowCount",
+ width: 170,
},
{
"label": "涓嶅敮涓�鏁版嵁閲�",
"align": "center",
- "prop": "snapUnique.nouniqueData"
+ "prop": "snapUnique.nouniqueData",
+ width: 150,
},
{
"label": "涓嶅敮涓�鏁版嵁閲嶅閲�",
"align": "center",
- "prop": "snapUnique.nouniqueCount"
+ "prop": "snapUnique.nouniqueCount",
+ width: 150,
}
],
card: [
@@ -3665,7 +4279,37 @@
},
]
}
- ]
+ ],
+ showList: [
+ { key: 0, label: `璁惧缂栧彿`, visible: true },
+ { key: 1, label: `璁惧鍚嶇О`, visible: true },
+ { key: 2, label: `鍗″彛鍐呯爜鎴栭噰闆嗚澶囧唴鐮乣, visible: true },
+ { key: 3, label: `缁勭粐缂栧彿`, visible: false },
+ { key: 4, label: `缁勭粐鍚嶇О`, visible: false },
+ { key: 5, label: `褰撴棩鎺ユ敹鍒扮殑褰撴棩鎶撴媿閲廯, visible: true },
+ { key: 6, label: `褰撴棩鎺ユ敹鍒扮殑鐧藉ぉ鎶撴媿閲廯, visible: true },
+ { key: 7, label: `褰撴棩鎺ユ敹鍒扮殑闈炲綋鏃ユ姄鎷嶉噺`, visible: true },
+ { key: 8, label: `鎸佺画鏃犳暟鎹ぉ鏁癭, visible: true },
+ { key: 9, label: `鎶撴媿鏁版嵁閲忕洃娴嬬粨鏋渀, visible: true },
+ { key: 10, label: `鏃堕挓鍑嗙‘鐜嘸, visible: true },
+ { key: 11, label: `褰撴棩鎶撴媿鏁版嵁鏃堕挓鍑嗙‘鏁版嵁閲廯, visible: true },
+ { key: 12, label: `褰撴棩鎶撴媿鏁版嵁鏃堕挓鍑嗙‘鎬у垽瀹氱粨鏋渀, visible: true },
+ { key: 13, label: `鍏ㄩ儴鎶撴媿鏁版嵁鏃堕挓鍑嗙‘鏁版嵁閲廯, visible: true },
+ { key: 14, label: `鍏ㄩ儴鎶撴媿鏁版嵁鏃堕挓鍑嗙‘鎬у垽瀹氱粨鏋渀, visible: true },
+ { key: 15, label: `鍙婃椂鐜嘸, visible: true },
+ { key: 16, label: `褰撴棩鎶撴媿鏁版嵁寤惰繜閲廯, visible: true },
+ { key: 17, label: `褰撴棩鎶撴媿鏁版嵁寤惰繜30s浠ヤ笂鏁版嵁閲廯, visible: true },
+ { key: 18, label: `褰撴棩鎶撴媿鏁版嵁寤惰繜1m浠ヤ笂鏁版嵁閲廯, visible: true },
+ { key: 19, label: `褰撴棩鎶撴媿鏁版嵁寤惰繜5m浠ヤ笂鏁版嵁閲廯, visible: true },
+ { key: 20, label: `褰撴棩鎶撴媿鏁版嵁鍙婃椂鎬у垽瀹氱粨鏋渀, visible: true },
+ { key: 20, label: `鍏ㄩ儴鏁版嵁寤惰繜閲廯, visible: true },
+ { key: 20, label: `鍏ㄩ儴鏁版嵁涓欢杩�30s浠ヤ笂鏁版嵁閲廯, visible: true },
+ { key: 20, label: `鍏ㄩ儴鏁版嵁涓欢杩�1m浠ヤ笂鏁版嵁閲廯, visible: true },
+ { key: 20, label: `鍏ㄩ儴鏁版嵁涓欢杩�5m浠ヤ笂鏁版嵁閲廯, visible: true },
+ { key: 20, label: `鍏ㄩ儴鏁版嵁鍙婃椂鎬у垽瀹氱粨鏋渀, visible: true },
+ { key: 20, label: `寤烘ā澶辫触鐜嘸, visible: true },
+ { key: 20, label: `寤烘ā澶辫触鏁版嵁閲廯, visible: true },
+ ],
},
{
title: '鎶撴媿浜鸿劯鏁版嵁涓婁紶鍙婃椂鎬�',
@@ -3674,142 +4318,170 @@
{
"label": "璁惧缂栧彿",
"align": "center",
- "prop": "externalIndexCode"
+ "prop": "externalIndexCode",
+ width: 190,
},
{
"label": "璁惧鍚嶇О",
"align": "center",
- "prop": "deviceName"
+ "prop": "deviceName",
+ width: 190,
},
{
"label": "鍗″彛鍐呯爜鎴栭噰闆嗚澶囧唴鐮�",
"align": "center",
- "prop": "indexCode"
+ "prop": "indexCode",
+ width: 190,
},
{
"label": "缁勭粐缂栧彿",
"align": "center",
- "prop": "orgCode"
+ "prop": "orgCode",
+ width: 150,
},
{
"label": "缁勭粐鍚嶇О",
"align": "center",
- "prop": "orgName"
+ "prop": "orgName",
+ width: 150,
},
{
"label": "褰撴棩鎺ユ敹鍒扮殑褰撴棩鎶撴媿閲�",
"align": "center",
- "prop": "dataCount"
+ "prop": "dataCount",
+ width: 200,
},
{
"label": "褰撴棩鎺ユ敹鍒扮殑鐧藉ぉ鎶撴媿閲�",
"align": "center",
- "prop": "daySnapCount"
+ "prop": "daySnapCount",
+ width: 200,
},
{
"label": "褰撴棩鎺ユ敹鍒扮殑闈炲綋鏃ユ姄鎷嶉噺",
"align": "center",
- "prop": "noTodayCount"
+ "prop": "noTodayCount",
+ width: 210,
},
{
"label": "鎸佺画鏃犳暟鎹ぉ鏁�",
"align": "center",
- "prop": "continueNoDataCount"
+ "prop": "continueNoDataCount",
+ width: 170,
},
{
"label": "鎶撴媿鏁版嵁閲忕洃娴嬬粨鏋�",
"align": "center",
- "prop": "snapResultText"
+ "prop": "snapResultText",
+ width: 190,
},
{
"label": "鏃堕挓鍑嗙‘鐜�",
"align": "center",
- "prop": "snapClock.clockPercent"
+ "prop": "snapClock.clockPercent",
+ width: 120,
},
{
"label": "褰撴棩鎶撴媿鏁版嵁鏃堕挓鍑嗙‘鏁版嵁閲�",
"align": "center",
- "prop": "snapClock.todayClockCount"
+ "prop": "snapClock.todayClockCount",
+ width: 200,
},
{
"label": "褰撴棩鎶撴媿鏁版嵁鏃堕挓鍑嗙‘鎬у垽瀹氱粨鏋�",
"align": "center",
- "prop": "snapClock.todayClockResultText"
+ "prop": "snapClock.todayClockResultText",
+ width: 230,
},
{
"label": "鍏ㄩ儴鎶撴媿鏁版嵁鏃堕挓鍑嗙‘鏁版嵁閲�",
"align": "center",
- "prop": "snapClock.allClockCount"
+ "prop": "snapClock.allClockCount",
+ width: 200,
},
{
"label": "鍏ㄩ儴鎶撴媿鏁版嵁鏃堕挓鍑嗙‘鎬у垽瀹氱粨鏋�",
"align": "center",
- "prop": "snapClock.allClockResultText"
+ "prop": "snapClock.allClockResultText",
+ width: 230,
},
{
"label": "鍙婃椂鐜�",
"align": "center",
- "prop": "snapTimely.timelyPercent"
+ "prop": "snapTimely.timelyPercent",
+ width: 100,
},
{
"label": "褰撴棩鎶撴媿鏁版嵁寤惰繜閲�",
"align": "center",
- "prop": "snapTimely.todayDelayCount"
+ "prop": "snapTimely.todayDelayCount",
+ width: 170,
},
{
"label": "褰撴棩鎶撴媿鏁版嵁寤惰繜30s浠ヤ笂鏁版嵁閲�",
"align": "center",
- "prop": "snapTimely.todayDelayCount2"
+ "prop": "snapTimely.todayDelayCount2",
+ width: 230,
},
{
"label": "褰撴棩鎶撴媿鏁版嵁寤惰繜1m浠ヤ笂鏁版嵁閲�",
"align": "center",
- "prop": "snapTimely.todayDelayCount3"
+ "prop": "snapTimely.todayDelayCount3",
+ width: 230,
},
{
"label": "褰撴棩鎶撴媿鏁版嵁寤惰繜5m浠ヤ笂鏁版嵁閲�",
"align": "center",
- "prop": "snapTimely.todayDelayCount4"
+ "prop": "snapTimely.todayDelayCount4",
+ width: 230,
},
{
"label": "褰撴棩鎶撴媿鏁版嵁鍙婃椂鎬у垽瀹氱粨鏋�",
"align": "center",
- "prop": "snapTimely.todayTimelyResultText"
+ "prop": "snapTimely.todayTimelyResultText",
+ width: 200,
},
{
"label": "鍏ㄩ儴鏁版嵁寤惰繜閲�",
"align": "center",
- "prop": "snapTimely.allDelayCount"
+ "prop": "snapTimely.allDelayCount",
+ width: 150,
},
{
"label": "鍏ㄩ儴鏁版嵁涓欢杩�30s浠ヤ笂鏁版嵁閲�",
"align": "center",
- "prop": "snapTimely.allDelayCount2"
+ "prop": "snapTimely.allDelayCount2",
+ width: 200,
},
{
"label": "鍏ㄩ儴鏁版嵁涓欢杩�1m浠ヤ笂鏁版嵁閲�",
"align": "center",
- "prop": "snapTimely.allDelayCount3"
+ "prop": "snapTimely.allDelayCount3",
+ width: 200,
},
{
"label": "鍏ㄩ儴鏁版嵁涓欢杩�5m浠ヤ笂鏁版嵁閲�",
"align": "center",
- "prop": "snapTimely.allDelayCount4"
+ "prop": "snapTimely.allDelayCount4",
+ width: 200,
},
{
"label": "鍏ㄩ儴鏁版嵁鍙婃椂鎬у垽瀹氱粨鏋�",
"align": "center",
- "prop": "snapTimely.allTimelyResultText"
+ "prop": "snapTimely.allTimelyResultText",
+ width: 190,
},
{
"label": "涓嶅敮涓�鏁版嵁閲�",
"align": "center",
- "prop": "snapUnique.nouniqueData"
+ "prop": "snapUnique.nouniqueData",
+ width: 150,
},
{
"label": "涓嶅敮涓�鏁版嵁閲嶅閲�",
"align": "center",
- "prop": "snapUnique.nouniqueCount"
+ "prop": "snapUnique.nouniqueCount",
+ width: 170,
}
],
card: [
@@ -3827,7 +4499,37 @@
},
]
}
- ]
+ ],
+ showList: [
+ { key: 0, label: `璁惧缂栧彿`, visible: true },
+ { key: 1, label: `璁惧鍚嶇О`, visible: true },
+ { key: 2, label: `鍗″彛鍐呯爜鎴栭噰闆嗚澶囧唴鐮乣, visible: true },
+ { key: 3, label: `缁勭粐缂栧彿`, visible: false },
+ { key: 4, label: `缁勭粐鍚嶇О`, visible: false },
+ { key: 5, label: `褰撴棩鎺ユ敹鍒扮殑褰撴棩鎶撴媿閲廯, visible: true },
+ { key: 6, label: `褰撴棩鎺ユ敹鍒扮殑鐧藉ぉ鎶撴媿閲廯, visible: true },
+ { key: 7, label: `褰撴棩鎺ユ敹鍒扮殑闈炲綋鏃ユ姄鎷嶉噺`, visible: true },
+ { key: 8, label: `鎸佺画鏃犳暟鎹ぉ鏁癭, visible: true },
+ { key: 9, label: `鎶撴媿鏁版嵁閲忕洃娴嬬粨鏋渀, visible: true },
+ { key: 10, label: `鏃堕挓鍑嗙‘鐜嘸, visible: true },
+ { key: 11, label: `褰撴棩鎶撴媿鏁版嵁鏃堕挓鍑嗙‘鏁版嵁閲廯, visible: true },
+ { key: 12, label: `褰撴棩鎶撴媿鏁版嵁鏃堕挓鍑嗙‘鎬у垽瀹氱粨鏋渀, visible: true },
+ { key: 13, label: `鍏ㄩ儴鎶撴媿鏁版嵁鏃堕挓鍑嗙‘鏁版嵁閲廯, visible: true },
+ { key: 14, label: `鍏ㄩ儴鎶撴媿鏁版嵁鏃堕挓鍑嗙‘鎬у垽瀹氱粨鏋渀, visible: true },
+ { key: 15, label: `鍙婃椂鐜嘸, visible: true },
+ { key: 16, label: `褰撴棩鎶撴媿鏁版嵁寤惰繜閲廯, visible: true },
+ { key: 17, label: `褰撴棩鎶撴媿鏁版嵁寤惰繜30s浠ヤ笂鏁版嵁閲廯, visible: true },
+ { key: 18, label: `褰撴棩鎶撴媿鏁版嵁寤惰繜1m浠ヤ笂鏁版嵁閲廯, visible: true },
+ { key: 19, label: `褰撴棩鎶撴媿鏁版嵁寤惰繜5m浠ヤ笂鏁版嵁閲廯, visible: true },
+ { key: 20, label: `褰撴棩鎶撴媿鏁版嵁鍙婃椂鎬у垽瀹氱粨鏋渀, visible: true },
+ { key: 20, label: `鍏ㄩ儴鏁版嵁寤惰繜閲廯, visible: true },
+ { key: 20, label: `鍏ㄩ儴鏁版嵁涓欢杩�30s浠ヤ笂鏁版嵁閲廯, visible: true },
+ { key: 20, label: `鍏ㄩ儴鏁版嵁涓欢杩�1m浠ヤ笂鏁版嵁閲廯, visible: true },
+ { key: 20, label: `鍏ㄩ儴鏁版嵁涓欢杩�5m浠ヤ笂鏁版嵁閲廯, visible: true },
+ { key: 20, label: `鍏ㄩ儴鏁版嵁鍙婃椂鎬у垽瀹氱粨鏋渀, visible: true },
+ { key: 20, label: `涓嶅敮涓�鏁版嵁閲廯, visible: true },
+ { key: 20, label: `涓嶅敮涓�鏁版嵁閲嶅閲廯, visible: true },
+ ],
},
{
title: '浜鸿劯鍗″彛璁惧鎶撴媿鏁版嵁澶у浘鍙敤鎬�',
@@ -3836,72 +4538,86 @@
{
"label": "璁惧鍚嶇О",
"align": "center",
- "prop": "deviceName"
+ "prop": "deviceName",
+ width: 230,
},
{
"label": "鍗″彛鍐呯爜鎴栭噰闆嗚澶囧唴鐮�",
"align": "center",
- "prop": "indexCode"
+ "prop": "indexCode",
+ width: 190,
},
{
"label": "璁惧鎴栧崱鍙e浗鏍囩紪鐮�",
"align": "center",
- "prop": "externalIndexCode"
+ "prop": "externalIndexCode",
+ width: 190,
},
{
"label": "IP鍦板潃",
"align": "center",
- "prop": "networkAddr"
+ "prop": "networkAddr",
+ width: 150,
},
{
"label": "缁勭粐缂栧彿",
"align": "center",
- "prop": "orgCode"
+ "prop": "orgCode",
+ width: 150,
},
{
"label": "缁勭粐鍚嶇О",
"align": "center",
- "prop": "orgName"
+ "prop": "orgName",
+ width: 150,
},
{
"label": "澶у浘鍙敤鎬ф娊妫�閲�",
"align": "center",
- "prop": "bigUseful.sampleCount"
+ "prop": "bigUseful.sampleCount",
+ width: 170,
},
{
"label": "澶у浘涓嶅彲鐢ㄧ巼",
"align": "center",
- "prop": "bigUseful.bigUsefulPercent"
+ "prop": "bigUseful.bigUsefulPercent",
+ width: 150,
},
{
"label": "澶у浘璁块棶寮傚父鏁版嵁閲�",
"align": "center",
- "prop": "bigUseful.bigPicExpCount"
+ "prop": "bigUseful.bigPicExpCount",
+ width: 200,
},
{
"label": "浜鸿劯澶у皬鍥句笉涓�鑷存暟鎹噺",
"align": "center",
- "prop": "bigUseful.imgDiffCount"
+ "prop": "bigUseful.imgDiffCount",
+ width: 200,
},
{
"label": "OSD鏍囨敞寮傚父鏁版嵁閲�",
"align": "center",
- "prop": "bigUseful.osdExpCount"
+ "prop": "bigUseful.osdExpCount",
+ width: 180,
},
{
"label": "浜鸿劯鍚堟牸鎬ф娊妫�閲�",
"align": "center",
- "prop": "faceElig.sampleCount"
+ "prop": "faceElig.sampleCount",
+ width: 180,
},
{
"label": "浜鸿劯鍚堟牸鐜�",
"align": "center",
- "prop": "faceElig.faceEligPercent"
+ "prop": "faceElig.faceEligPercent",
+ width: 150,
},
{
"label": "浜鸿劯涓嶅敮涓�閲�",
"align": "center",
- "prop": "faceElig.unfaceEligCount"
+ "prop": "faceElig.unfaceEligCount",
+ width: 150,
}
],
card: [
@@ -3911,7 +4627,23 @@
]
}
- ]
+ ],
+ showList: [
+ { key: 1, label: `璁惧鍚嶇О`, visible: true },
+ { key: 1, label: `鍗″彛鍐呯爜鎴栭噰闆嗚澶囧唴鐮乣, visible: true },
+ { key: 2, label: `璁惧鎴栧崱鍙e浗鏍囩紪鐮乣, visible: true },
+ { key: 2, label: `IP鍦板潃`, visible: true },
+ { key: 3, label: `缁勭粐缂栧彿`, visible: false },
+ { key: 4, label: `缁勭粐鍚嶇О`, visible: false },
+ { key: 8, label: `澶у浘鍙敤鎬ф娊妫�閲廯, visible: true },
+ { key: 9, label: `澶у浘涓嶅彲鐢ㄧ巼`, visible: true },
+ { key: 10, label: `澶у浘璁块棶寮傚父鏁版嵁閲廯, visible: true },
+ { key: 11, label: `浜鸿劯澶у皬鍥句笉涓�鑷存暟鎹噺`, visible: true },
+ { key: 12, label: `OSD鏍囨敞寮傚父鏁版嵁閲廯, visible: true },
+ { key: 13, label: `浜鸿劯鍚堟牸鎬ф娊妫�閲廯, visible: true },
+ { key: 14, label: `浜鸿劯鍚堟牸鐜嘸, visible: true },
+ { key: 15, label: `浜鸿劯涓嶅敮涓�閲廯, visible: true },
+ ],
},
]
};
--
Gitblit v1.8.0