#
luxiaotao1123
2024-03-18 f6a191cb66f3027cbe058b5784b72ff25bd43974
#
1个文件已添加
1个文件已修改
31 ■■■■■ 已修改文件
zy-asrs-flow/src/pages/map/drawer/index.jsx 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
zy-asrs-flow/src/pages/map/drawer/shelf/index.jsx 30 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
zy-asrs-flow/src/pages/map/drawer/index.jsx
@@ -4,6 +4,7 @@
import { createStyles } from 'antd-style';
import * as Utils from '../utils'
import Http from '@/utils/http';
import ShelfDrawer from './shelf';
const useStyles = createStyles(({ token, css }) => {
zy-asrs-flow/src/pages/map/drawer/shelf/index.jsx
New file
@@ -0,0 +1,30 @@
import React, { useState, useRef, useEffect } from 'react';
import { Drawer, Space, Button } from 'antd';
import { FormattedMessage, useIntl, useModel } from '@umijs/max';
import { createStyles } from 'antd-style';
import * as Utils from '../../utils'
import Http from '@/utils/http';
const useStyles = createStyles(({ token, css }) => {
})
const ShelfDrawer = (props) => {
    const intl = useIntl();
    const { styles } = useStyles();
    const handleCancel = () => {
        props.onCancel();
    };
    const handleOk = () => {
    }
    return (
        <>
        <h1>sad</h1>
        </>
    )
}
export default ShelfDrawer;