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: [
{ 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",

Loading…
Cancel
Save