Browse Source

修改问题

release_1.1.2
deartibers 3 years ago
parent
commit
0a6969f1f2
  1. 13
      code/VideoAccess-VCMP/web/client/src/sections/offline/containers/carrierpigeon.jsx

13
code/VideoAccess-VCMP/web/client/src/sections/offline/containers/carrierpigeon.jsx

@ -41,8 +41,8 @@ const Carrierpigeon = (props) => {
list: [ list: [
{ name: "策略类型", value: "pushWay" }, { name: "策略类型", value: "pushWay" },
{ name: "推送机制", value: "noticeWay" }, { 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", dataIndex: "logCount",
key: "logCount", key: "logCount",
render: (_, r, index) => { render: (_, r, index) => {
return r.logCount return (r.logCount + '次')
}, },
}, },
{ {
title: "累计推送次数", title: "监听设备数量",
dataIndex: "monitorCount", dataIndex: "monitorCount",
key: "monitorCount", key: "monitorCount",
render: (_, r, index) => { render: (_, r, index) => {
return (r.monitorCount + '次') return r.monitorCount
}, },
}, },
{ {
title: "策略类型", title: "策略类型",
dataIndex: "pushWay", dataIndex: "pushWay",

Loading…
Cancel
Save