#
luxiaotao1123
2024-01-25 eb0d50ec195ff643ce243cc920ddd1617fc29ec1
#
1个文件已修改
1个文件已添加
21 ■■■■ 已修改文件
zy-asrs-flow/src/pages/Admin.jsx 7 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
zy-asrs-flow/src/pages/G6.jsx 14 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
zy-asrs-flow/src/pages/Admin.jsx
@@ -19,6 +19,7 @@
import React, { useState } from 'react';
import defaultProps from './_defaultProps';
import logo from '@/assets/logo.png';
import G6 from './G6';
const SearchInput = () => {
    const { token } = theme.useToken();
@@ -187,7 +188,8 @@
                        {...settings}
                    >
                        <PageContainer
                        <G6></G6>
                        {/* <PageContainer
                            token={{
                                paddingInlinePageContainerContent: num,
                            }}
@@ -213,7 +215,6 @@
                            ]}
                        >
                            <ProCard
                                style={{
                                    height: '200vh',
@@ -223,7 +224,7 @@
                                <div />
                            </ProCard>
                        </PageContainer>
                        </PageContainer> */}
                        <SettingDrawer
                            pathname={pathname}
zy-asrs-flow/src/pages/G6.jsx
New file
@@ -0,0 +1,14 @@
function G6() {
    return (
        <>
            <h1>Hello Flow</h1>
            <div style={{ height: '200vh' }}>
            </div>
        </>
    )
}
export default G6