diff --git a/code/VideoAccess-VCMP/web/client/assets/images/background/nvr_banner.mp4 b/code/VideoAccess-VCMP/web/client/assets/images/background/nvr_banner.mp4 deleted file mode 100644 index 70603d9..0000000 Binary files a/code/VideoAccess-VCMP/web/client/assets/images/background/nvr_banner.mp4 and /dev/null differ diff --git a/code/VideoAccess-VCMP/web/client/assets/video/nvr_banner.mp4 b/code/VideoAccess-VCMP/web/client/assets/video/nvr_banner.mp4 new file mode 100644 index 0000000..fa0a082 Binary files /dev/null and b/code/VideoAccess-VCMP/web/client/assets/video/nvr_banner.mp4 differ 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 238d736..1e56734 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 @@ -4,61 +4,61 @@ import { Card } from "@douyinfe/semi-ui"; import "../style.less"; const NvrHeader = (props) => { - const { dispatch, actions, user, loading } = props; - return ( - <> - {/*
*/} - - {/*
*/} - - - ); + const { dispatch, actions, user, loading } = props; + return ( + <> + {/*
*/} + + {/*
*/} + + + ); }; -function mapStateToProps(state) { - const { auth, global, members } = state; - return { - loading: members.isRequesting, - user: auth.user, - actions: global.actions, - members: members.data, - }; +function mapStateToProps (state) { + const { auth, global, members } = state; + return { + loading: members.isRequesting, + user: auth.user, + actions: global.actions, + members: members.data, + }; } export default connect(mapStateToProps)(NvrHeader);