From 0a6969f1f2376eca907b2af84a44f9dcb39f40e4 Mon Sep 17 00:00:00 2001 From: deartibers <947466799@qq.com> Date: Mon, 8 Aug 2022 10:48:42 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../sections/offline/containers/carrierpigeon.jsx | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/code/VideoAccess-VCMP/web/client/src/sections/offline/containers/carrierpigeon.jsx b/code/VideoAccess-VCMP/web/client/src/sections/offline/containers/carrierpigeon.jsx index 2256ce0..5f26d57 100644 --- a/code/VideoAccess-VCMP/web/client/src/sections/offline/containers/carrierpigeon.jsx +++ b/code/VideoAccess-VCMP/web/client/src/sections/offline/containers/carrierpigeon.jsx @@ -41,8 +41,8 @@ const Carrierpigeon = (props) => { list: [ { name: "策略类型", value: "pushWay" }, { name: "推送机制", value: "noticeWay" }, - { name: "监听设备数量", value: "logCount" }, - { name: "累计推送次数", value: "monitorCount" }, + { name: "监听设备数量", value: "monitorCount" }, + { name: "累计推送次数", value: "logCount" }, ] }, ]; @@ -238,22 +238,21 @@ const Carrierpigeon = (props) => { }, }, { - title: "监听设备数量", + title: "累计推送次数", dataIndex: "logCount", key: "logCount", render: (_, r, index) => { - return r.logCount + return (r.logCount + '次') }, }, { - title: "累计推送次数", + title: "监听设备数量", dataIndex: "monitorCount", key: "monitorCount", render: (_, r, index) => { - return (r.monitorCount + '次') + return r.monitorCount }, }, - { title: "策略类型", dataIndex: "pushWay",