#
luxiaotao1123
2024-04-28 95060ad71d43efae18d510e7510904128b93f3bd
#
3个文件已修改
8 ■■■■ 已修改文件
src/pages/base.jsx 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/pages/left/index.jsx 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/pages/right/index.jsx 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/pages/base.jsx
@@ -14,7 +14,7 @@
const Base = (props) => {
    return (
        <div style={{ height: '100%', width: '100%' }}>
        <div style={{ height: '100%', width: '100%', position: 'relative', overflow: 'hidden' }}>
            <Canvas
                shadows
                gl={{
src/pages/left/index.jsx
@@ -28,7 +28,7 @@
            }}
            className={`absolute top-2 left-2 bottom-2 w-[280px] ${styles.panel}`}
        >
            <div className="h-full overflow-auto">
            <div className="h-full overflow-hidden">
                <Panel title="库房情况">
                    <StockCharts />
                </Panel>
src/pages/right/index.jsx
@@ -13,7 +13,7 @@
const Right = () => {
  const [isExpanded, setIsExpanded] = useState(false);
  const containerAnimation = useSpring({
    transform: isExpanded ? 'translate(0%)' : 'translateX(100%)',
    config: { precision: 0.01 },
@@ -30,7 +30,7 @@
        }}
        className={`absolute top-2 w-[280px] right-2 bottom-2 ${styles.panel}`}
      >
        <div className="overflow-auto h-full">
        <div className="overflow-hidden h-full">
          <Panel title="出入库信息">
            {/* <Allerway /> */}
          </Panel>