#
luxiaotao1123
2024-04-07 d57cf3a04590c99d7a3208efc3ee12d8403e4d10
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
import React, { useState, useRef, useEffect } from 'react';
import * as THREE from 'three'
import { Spin, Descriptions, Button } from 'antd';
import { FormattedMessage, useIntl, useModel } from '@umijs/max';
import { LoadingOutlined } from '@ant-design/icons';
import { createStyles } from 'antd-style';
import * as Utils from '../utils'
import Http from '@/utils/http';
 
const useStyles = createStyles(({ token, css }) => {
    return {
    }
})
 
const BatchShelfView = (props) => {
    const intl = useIntl();
    const { styles } = useStyles();
    const refContainer = useRef();
 
    const [loading, setLoading] = React.useState(false);
 
 
    useEffect(() => {
 
 
    }, [])
 
    return (
        <>
            <h1>asd</h1>
        </>
    )
}
 
 
export default BatchShelfView;