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",