#
luxiaotao1123
2024-03-18 32a644a0bbe2610347dc2566b6f549431bbd2502
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
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 AgvDrawer = (props) => {
    const intl = useIntl();
    const { styles } = useStyles();
 
    const handleCancel = () => {
        props.onCancel();
    };
 
    const handleOk = () => {
    }
 
    return (
        <>
        <h1>Agv</h1>
        </>
    )
}
 
export default AgvDrawer;