diff --git a/code/VideoAccess-VCMP/web/client/src/components/reminderBox.jsx b/code/VideoAccess-VCMP/web/client/src/components/reminderBox.jsx index 90a42e8..2c3b535 100644 --- a/code/VideoAccess-VCMP/web/client/src/components/reminderBox.jsx +++ b/code/VideoAccess-VCMP/web/client/src/components/reminderBox.jsx @@ -1,7 +1,7 @@ import { Button, Checkbox, Modal } from "@douyinfe/semi-ui"; import React from "react"; -const ReminderBox = ({ title, wait, toadd, visible, onOk }) => { +const ReminderBox = ({ title, wait, toadd, visible, onOk, close }) => { return ( { } - // visible={true} - visible={visible} + visible={visible} > ); }; diff --git a/code/VideoAccess-VCMP/web/client/src/layout/components/header/index.jsx b/code/VideoAccess-VCMP/web/client/src/layout/components/header/index.jsx index 5d8ee4d..0e36653 100644 --- a/code/VideoAccess-VCMP/web/client/src/layout/components/header/index.jsx +++ b/code/VideoAccess-VCMP/web/client/src/layout/components/header/index.jsx @@ -63,7 +63,7 @@ const Header = (props) => { - {user && user.namePresent} + {user && user.displayName} } > diff --git a/code/VideoAccess-VCMP/web/client/src/sections/auth/containers/login.jsx b/code/VideoAccess-VCMP/web/client/src/sections/auth/containers/login.jsx index cd6e73e..bb976f3 100644 --- a/code/VideoAccess-VCMP/web/client/src/sections/auth/containers/login.jsx +++ b/code/VideoAccess-VCMP/web/client/src/sections/auth/containers/login.jsx @@ -48,10 +48,8 @@ const Login = props => { width: 446, height: 348, padding: '45px 60px', - // backgroundImage: "url('/assets/images/background/loginbg.png')", - // backgroundSize: '100% 100%', - // backgroundRepeat: 'no-repeat', - background: 'linear-gradient(rgba(255,255,255,1),rgba(255,255,255,.3))', + background: 'linear-gradient(rgba(255,255,255,0.4),rgba(255,255,255,.3))', + backdropFilter:"saturate(100%) contrast(100%) blur(17px)", position: 'absolute', top: '33.89%', right: '16.43%', diff --git a/code/VideoAccess-VCMP/web/client/src/sections/equipmentWarehouse/actions/nvr.js b/code/VideoAccess-VCMP/web/client/src/sections/equipmentWarehouse/actions/nvr.js index e833cd9..618dd0c 100644 --- a/code/VideoAccess-VCMP/web/client/src/sections/equipmentWarehouse/actions/nvr.js +++ b/code/VideoAccess-VCMP/web/client/src/sections/equipmentWarehouse/actions/nvr.js @@ -48,7 +48,7 @@ export function delNvr(orgId) { url: `${ApiTable.delNvr.replace("{nvrId}", orgId)}`, msg: { option: - "删除成 功!被删除的设备会被存放在“设备回收站”中。并植入“设备回收站”路径。", + "设备会被存放在“设备回收站”中,删除", }, reducer: { name: "" }, }); diff --git a/code/VideoAccess-VCMP/web/client/src/sections/equipmentWarehouse/components/cameraModal.jsx b/code/VideoAccess-VCMP/web/client/src/sections/equipmentWarehouse/components/cameraModal.jsx index 4b458a5..464c6d4 100644 --- a/code/VideoAccess-VCMP/web/client/src/sections/equipmentWarehouse/components/cameraModal.jsx +++ b/code/VideoAccess-VCMP/web/client/src/sections/equipmentWarehouse/components/cameraModal.jsx @@ -52,9 +52,26 @@ function cameraModal (props) { dispatch(equipmentWarehouse.getCameraKind()); dispatch(equipmentWarehouse.getAbility()); cameraData.type == "nvr" || addNvr ? setcameraList(cameraList.slice(1, 4)) : ""; - // if(){ - - // } + //axyData安心云参数 + if (axyData) { + console.log(axyData) + switch (axyData.openCamera) { + case "nvr": + setcameraList(cameraList.slice(1, 4)) + setclickNum(2) + break + case "ipc": + setcameraList(cameraList.slice(0, 3)) + setclickNum(3) + break + case "yingshi": + setcameraList(cameraList.slice(0, 3)) + setclickNum(1) + break + default: + break + } + } }, []); const cameraList = [ //循环摄像头列表 @@ -156,19 +173,19 @@ function cameraModal (props) { } function handleChoose (id) { //选择摄像头接入类型 - if (!addNvr && !modify) { + if (!addNvr && !modify && !axyData) { setclickNum(id); } } function turnLift () { //轮播图向左 - if (!addNvr && !modify) { + if (!addNvr && !modify && !axyData) { setcameraList(cameraList.slice(0, 3)); } } function turnRight () { //轮播图向右 - if (!addNvr && !modify) { + if (!addNvr && !modify && !axyData) { setcameraList(cameraList.slice(1, 4)); } } @@ -388,7 +405,7 @@ function cameraModal (props) { }} onClick={() => handleChoose(item.id)} > - {modify || addNvr ? item.id == clickNum ? "" :
{ - let str = []; - for (let i = 0; i < line; i++) { - if (i == line - 1) { - str.push({ - createUserId: ( -
- ), - operation: ( -
- ), - }); - } else { - str.push({ - createUserId: ( -
- ), - operation: ( -
- ), - }); - } - } - return str; - }; - const column = () => { - let str = []; - for (let i = 0; i < columns; i++) { - if (i == columns - 1) { - str.push({ - title: ( -
- ), - dataIndex: "operation", - key: i, - width: "20%", - }); - } else { - str.push({ - title: ( -
- ), - dataIndex: "createUserId", - key: i, - }); - } - } - return str; - }; - - return ( - <> - - - ); +export function skeletonScreen() { + return <> + + + + + + + + + + + } diff --git a/code/VideoAccess-VCMP/web/client/src/sections/equipmentWarehouse/containers/camera.jsx b/code/VideoAccess-VCMP/web/client/src/sections/equipmentWarehouse/containers/camera.jsx index d0787ce..a442308 100644 --- a/code/VideoAccess-VCMP/web/client/src/sections/equipmentWarehouse/containers/camera.jsx +++ b/code/VideoAccess-VCMP/web/client/src/sections/equipmentWarehouse/containers/camera.jsx @@ -52,7 +52,6 @@ const CameraHeader = (props) => { console.log(props) //安心云传参 let isAxyData = props.location.search - if (isAxyData) { setAxyData(qs.parse(isAxyData.slice(1))) setCameraModal(true) @@ -93,7 +92,7 @@ const CameraHeader = (props) => { return "离线" default: return "未知" - }F + } } function colorStatus (data) { @@ -673,7 +672,7 @@ const CameraHeader = (props) => {
s)} diff --git a/code/VideoAccess-VCMP/web/client/src/sections/equipmentWarehouse/containers/nvr.jsx b/code/VideoAccess-VCMP/web/client/src/sections/equipmentWarehouse/containers/nvr.jsx index 7c30aef..2a135fd 100644 --- a/code/VideoAccess-VCMP/web/client/src/sections/equipmentWarehouse/containers/nvr.jsx +++ b/code/VideoAccess-VCMP/web/client/src/sections/equipmentWarehouse/containers/nvr.jsx @@ -118,6 +118,7 @@ const NvrHeader = (props) => { width: "20%", dataIndex: "", render: (_, row) => { + console.log(row) return (
s)} @@ -609,6 +611,9 @@ const NvrHeader = (props) => { history.push({ pathname: '/equipmentWarehouse/camera', query: { addNvr: true, serialNo: nvrRef.current.nvrNumber() } }); setReminder(false) }} + close={()=>{ + setReminder(false) + }} />