diff --git a/code/VideoAccess-VCMP/web/client/src/sections/offline/components/pushModal.jsx b/code/VideoAccess-VCMP/web/client/src/sections/offline/components/pushModal.jsx index 00ed2e5..478a339 100644 --- a/code/VideoAccess-VCMP/web/client/src/sections/offline/components/pushModal.jsx +++ b/code/VideoAccess-VCMP/web/client/src/sections/offline/components/pushModal.jsx @@ -76,7 +76,7 @@ function pushModal (props) { const [policyList, setPolicyList] = useState([//通知策略备注 { strategy: '系统监听到设备离线时,进行一次邮件推送,并将当前所 有离线的设备一同推送至信息邮箱,每次起始推送间隔不少于15分钟。', - example: '【superadmin】账号下的设备:【智慧小蓝排涝-乡山站排口】于【2022年22时00分】掉线,【智慧小蓝排涝-乡山站排口】于【2022年22时00分】掉线,【智慧小蓝排涝-乡山站排口】于【2022年22时00分】掉线,请及时处理!', + example: '【superadmin】账号下的设备:【智慧小蓝排涝-乡山站排口】于【2022年22时00分】掉线,【智慧小蓝排涝-乡山站排口】于【2022年22时00分】掉线,【智慧小蓝排涝-乡山站排口】于【2022年22时00分】掉线,请即时处理!', }, { strategy: '系统监听到设备上线时,推送至信息邮箱,每次推送间隔 不少于15分钟。', @@ -84,7 +84,7 @@ function pushModal (props) { }, { strategy: '系统在设定时间前统计所有离线的设备信息,并推送至信 息邮箱。', - example: '【superadmin】账号下的设备,截止【2022年22时00分】,有15个设备掉线:【智慧小蓝排涝-乡山站排口】于【2022年22时00分】掉线,【智慧小蓝排涝-乡山站排口】于【2022年22时00分】掉线,【智慧小蓝排涝-乡山站排口】于【2022年22时00分】掉线,请及时处理!', + example: '【superadmin】账号下的设备,截止【2022年22时00分】,有15个设备掉线:【智慧小蓝排涝-乡山站排口】于【2022年22时00分】掉线,【智慧小蓝排涝-乡山站排口】于【2022年22时00分】掉线,【智慧小蓝排涝-乡山站排口】于【2022年22时00分】掉线,请即时处理!', }, ]);//阶段信息 const [chooseCameraList, setChooseCameraList] = useState([]);//第三阶段选中监听范围摄像头列表 diff --git a/code/VideoAccess-VCMP/web/client/src/sections/offline/components/pushSideSheet.jsx b/code/VideoAccess-VCMP/web/client/src/sections/offline/components/pushSideSheet.jsx index 38dc967..f4bdfc4 100644 --- a/code/VideoAccess-VCMP/web/client/src/sections/offline/components/pushSideSheet.jsx +++ b/code/VideoAccess-VCMP/web/client/src/sections/offline/components/pushSideSheet.jsx @@ -157,7 +157,7 @@ function pushSideSheet (props) { }>
{itm.cameraList}
-
{itm.noticeWay == 'online' ? '上线及时通知' : itm.noticeWay == 'offline' ? '离线即时通知' : '24时定时统计'}
+
{itm.noticeWay == 'online' ? '上线即时通知' : itm.noticeWay == 'offline' ? '离线即时通知' : '24时定时统计'}
) })} 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 fbd509b..30e7b05 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 @@ -46,8 +46,8 @@ const Carrierpigeon = (props) => { }, ]; const noticeWayObj = { - 'offline':'离线及时通知', - 'online':'上线及时通知', + 'offline':'离线即时通知', + 'online':'上线即时通知', 'timing':'定时统计', } useEffect(() => { @@ -206,7 +206,7 @@ const Carrierpigeon = (props) => { let val = r.noticeWay[index] noticeWayValue.push(noticeWayObj[val]) } - let noticeWayString=noticeWayValue.join(';') + let noticeWayString=noticeWayValue.join(';') return noticeWayString; }, }, diff --git a/code/VideoAccess-VCMP/web/client/src/sections/offline/style.less b/code/VideoAccess-VCMP/web/client/src/sections/offline/style.less index e69de29..bce4fa2 100644 --- a/code/VideoAccess-VCMP/web/client/src/sections/offline/style.less +++ b/code/VideoAccess-VCMP/web/client/src/sections/offline/style.less @@ -0,0 +1,8 @@ +.semi-table{ + .semi-table-row:first-child{ + .semi-table-row-head{ + background: #2662DC; + color: #FFFFFF; + } + } +}