index.js
1003 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*
* @Author: varcms
* @LastEditors: varcms
* @Date: 2025-06-04 11:06:14
* @Description:
*/
import React from "react";
import styles from "./index.less";
import ButtonComponent from "@/mes/common/buttonComponent";
import RouterComponent from "@/routes/mes/routerComponent";
const QueryTracking = (props) => {
// const style = {
// width: "100%",
// height: "100%",
// display: "flex",
// justifyContent: "center",
// alignItems: "center",
// fontSize: 30
// };
// return <div style={style}>页面开发中22...</div>;
return (
<div className="mesCommonLayout">
<ButtonComponent {...props} />
<div className="sider-content">
<div className="mesContent">
<ContentComponent {...props} />
</div>
</div>
</div>
);
};
const ContentComponent = props => {
return (
<div className={styles.serviceUpkeep}>
<RouterComponent {...props}/>
</div>
);
};
export default QueryTracking;