#
luxiaotao1123
2024-03-29 7c32ab19d3bf4c601212314a1617bbb51c5fdd2a
zy-asrs-flow/src/pages/map/drawer/shelf/index.jsx
@@ -5,6 +5,7 @@
import * as Utils from '../../utils'
import Http from '@/utils/http';
import ShowJson from '../showJson';
import ShelfView from './view'
const useStyles = createStyles(({ token, css }) => {
@@ -13,12 +14,27 @@
const ShelfDrawer = (props) => {
    const intl = useIntl();
    const { styles } = useStyles();
    const [activeTabKey, setActiveTabKey] = useState('json');
    const { curSprite, curFloor } = props;
    const [activeTabKey, setActiveTabKey] = useState('view');
    const locNo = curSprite.data.no + '-' + curFloor;
    useEffect(() => {
        props.setDrawerTitle(intl.formatMessage({ id: 'map.loc.no', defaultMessage: '库位号' }) + ': ' + locNo);
    }, [curSprite]);
    const contentList = {
        view: (
            <ShelfView
                locNo={locNo}
                data={curSprite.data}
                curFloor={curFloor}
            />
        ),
        json: (
            <ShowJson
                data={props.curSprite.data}
                data={curSprite.data}
            />
        ),
    };
@@ -32,6 +48,10 @@
                type='inner'
                tabList={[
                    {
                        key: 'view',
                        tab: intl.formatMessage({ id: 'map.drawer.shelf.view.title', defaultMessage: '库位信息' }),
                    },
                    {
                        key: 'json',
                        tab: intl.formatMessage({ id: 'map.drawer.json', defaultMessage: 'JSON' }),
                    },