diff --git a/web/client/src/components/setup.jsx b/web/client/src/components/setup.jsx
index c4cd070..8465bcf 100644
--- a/web/client/src/components/setup.jsx
+++ b/web/client/src/components/setup.jsx
@@ -12,8 +12,6 @@ function Setup(props) {
tableList
} = props;
- console.log(tableType,
- tableList);
const [check, setCheck] = useState([]);
const checkboxcss = { width: "25%", height: 16, margin: "0 0 20px 0" };
diff --git a/web/client/src/sections/analysis/containers/operationData.jsx b/web/client/src/sections/analysis/containers/operationData.jsx
index 003eb46..57c7a18 100644
--- a/web/client/src/sections/analysis/containers/operationData.jsx
+++ b/web/client/src/sections/analysis/containers/operationData.jsx
@@ -14,7 +14,6 @@ const Console = (props) => {
// websocket 使用测试
// useEffect(() => {
- // console.log(socket)
// if (socket) {
// socket.on('TEST', function (msg) {
// console.info(msg);
diff --git a/web/client/src/sections/install/components/memberModal.jsx b/web/client/src/sections/install/components/memberModal.jsx
index 0ddef9d..ed20739 100644
--- a/web/client/src/sections/install/components/memberModal.jsx
+++ b/web/client/src/sections/install/components/memberModal.jsx
@@ -44,7 +44,6 @@ function memberModal (props) {
]); //权限配置
//初始化
useEffect(() => {
- console.log('editObj',editObj);
if (editObj.id) {
let departmentList = []
for (let i = 0; i < pepList.length; i++) {
diff --git a/web/client/src/sections/problem/components/inspection.jsx b/web/client/src/sections/problem/components/inspection.jsx
index 18d2d8a..7c28cb4 100644
--- a/web/client/src/sections/problem/components/inspection.jsx
+++ b/web/client/src/sections/problem/components/inspection.jsx
@@ -26,12 +26,10 @@ const Inspection = ({ dispatch, actions, user, route, statistic }) => {
const api = useRef();
const unfoldApi = useRef(false);
- // console.log(pictureData);
useEffect(() => {
dispatch(problem.getProjectPoms()).then((res) => {
- // console.log(res.payload.data);
if (res.success) {
let project = []
let apply = []
@@ -66,7 +64,6 @@ const Inspection = ({ dispatch, actions, user, route, statistic }) => {
useEffect(() => {
dispatch(problem.getAlarmLnspection(checkPatrol)).then((res) => {
- // console.log(res.payload.data)
if (res.success) {
setPatrolAbnormal(res.payload.data)
setNotRead(res.payload.data.filter(v => !v.notedTime).length)
@@ -306,7 +303,6 @@ const Inspection = ({ dispatch, actions, user, route, statistic }) => {
{
- console.log(pictureData);
copy(pictureData?.router || "无相关地址");
Notification.success({
content: "复制成功",
diff --git a/web/client/src/sections/problem/components/sideSheet.jsx b/web/client/src/sections/problem/components/sideSheet.jsx
index a8b119b..391e59f 100644
--- a/web/client/src/sections/problem/components/sideSheet.jsx
+++ b/web/client/src/sections/problem/components/sideSheet.jsx
@@ -23,7 +23,6 @@ function SideSheets ({ dispatch, actions, close, alarmId }) {
if (alarmId) {
dispatch(problem.getAlarmDataDetail({ alarmId: alarmId, ...query })).then((res) => {
if (res?.success) {
- console.log(res.payload.data);
setdataSource(res.payload.data);
projectScrollbar = new PerfectScrollbar("#Alarm", {
suppressScrollX: true,
@@ -33,8 +32,6 @@ function SideSheets ({ dispatch, actions, close, alarmId }) {
dispatch(problem.getAlarmDataDetailAgg({ alarmId: alarmId })).then((res) => {
if (res?.success) {
let dataSort = res.payload.data || []
- // console.log(dataSort);
- // moment.duration(videoAfter?.diff(videoFront))._data.milliseconds;
dataSort.sort((a, b) => {
if (moment(a.hours).isBefore(b.hours)) {
return -1
@@ -42,7 +39,6 @@ function SideSheets ({ dispatch, actions, close, alarmId }) {
return 1
}
})
- // console.log(dataSort);
let data = {
grid: {
left: '5%',
@@ -96,9 +92,7 @@ function SideSheets ({ dispatch, actions, close, alarmId }) {
}
]
}
- // console.log(data);
setOption(data)
- // setNvrDetails(res.payload.data);
}
});
}
@@ -193,7 +187,6 @@ function SideSheets ({ dispatch, actions, close, alarmId }) {
currentPage={query.page + 1}
pageSizeOpts={[10, 20, 30, 40]}
onChange={(currentPage, pageSize) => {
- console.log(currentPage, pageSize);
setQuery({ pageSize: pageSize, page: currentPage - 1 });
}}
/>
diff --git a/web/client/src/sections/problem/components/statistics.jsx b/web/client/src/sections/problem/components/statistics.jsx
index 0e8d6cb..518c799 100644
--- a/web/client/src/sections/problem/components/statistics.jsx
+++ b/web/client/src/sections/problem/components/statistics.jsx
@@ -5,7 +5,6 @@ import Inspection from "./inspection";
const Statistics = ({ dispatch, actions, route, statistic }) => {
let title = { dataLnterrupt: "DATA ABORTS", dataAbnormal: "DATA ANOMALY", strategyHit: "ALGORITHM&POLICY HIT" }
- // console.log(route);
return (
<>{route == 'useAbnormal' ?