Commit d18077bb authored by chenshouchao's avatar chenshouchao

feat: 删除不必要的console.log

parent fcdce906
......@@ -32,9 +32,7 @@ const ButtonComponent = (props) => {
const defultClick = (event) => event && event.stoppropagation && event.stoppropagation()
// 更多按钮 点击 弹出菜单
const handleClick = (event) => {
console.log(event.currentTarget, 'lllll')
setAnchorEl(event.currentTarget)
}
// 关闭更多 menu 弹框
const handleClose = () => setAnchorEl(null);
......
......@@ -18,7 +18,6 @@ import { useEffect } from "react";
export default function EnhancedTable(props) {
const classes = useStyles;
console.log(classes,11111);
const [order, setOrder] = React.useState("asc");
const [orderBy, setOrderBy] = React.useState("");
const { headCells, rows, footer = true, elevation1, tableStyle,tablecellstyle, tableContainerStyle, stickyheader, TableHeadClasses, onRowClick, defaultRow, minHeight='', borderBottom='', onDoubleClick,
......
......@@ -25,7 +25,6 @@ class Menus {
}> = [];
initMenu = (list: projectList) => {
console.log('list: ', list);
this.productList = [];
this.utilityList = [];
for (let item of list) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment