#
luxiaotao1123
2024-03-29 a49392a9a482bb5e3097f344723e5cdd6c587bbe
#
4个文件已修改
63 ■■■■■ 已修改文件
zy-asrs-flow/src/locales/en-US/map.ts 6 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
zy-asrs-flow/src/pages/map/drawer/index.jsx 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
zy-asrs-flow/src/pages/map/drawer/shelf/index.jsx 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
zy-asrs-flow/src/pages/map/drawer/shelf/view.jsx 49 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
zy-asrs-flow/src/locales/en-US/map.ts
@@ -11,6 +11,12 @@
    'map.load.success': 'Welcome To WCS.',
    '': '',
    '': '',
    'map.loc.no': 'Location Number',
    'map.pallet.barcode': 'Pallet Barcode',
    'map.is.enable': 'Enable or Not',
    'map.loc.operation': 'Location Operation',
    '': '',
    '': '',
    '': '',
    '': '',
    'map.sensor.type.shuttle': 'Shuttle',
zy-asrs-flow/src/pages/map/drawer/index.jsx
@@ -36,7 +36,7 @@
                getContainer={props.refCurr}
                rootStyle={{ position: "absolute" }}
                mask={false}
                width={900}
                width={window.innerWidth * 0.35}
                style={{
                    opacity: 1
                }}
zy-asrs-flow/src/pages/map/drawer/shelf/index.jsx
@@ -16,15 +16,19 @@
    const { styles } = useStyles();
    const { curSprite, curFloor } = props;
    const [locNo, setLocNo] = useState('');
    const [activeTabKey, setActiveTabKey] = useState('view');
    useEffect(() => {
        props.setDrawerTitle(curSprite.data.no + '-' + curFloor);
        const locNo = curSprite.data.no + '-' + curFloor;
        setLocNo(locNo)
        props.setDrawerTitle(intl.formatMessage({ id: 'map.loc.no', defaultMessage: '库位号' }) + ': ' + locNo);
    }, [curSprite]);
    const contentList = {
        view: (
            <ShelfView
                locNo={locNo}
                data={curSprite.data}
                curFloor={curFloor}
            />
zy-asrs-flow/src/pages/map/drawer/shelf/view.jsx
@@ -16,7 +16,7 @@
        },
        threeInfo: {
            height: '100%',
            width: '50%',
            width: '60%',
        },
        spinWrapper: {
            height: '100%',
@@ -28,7 +28,7 @@
        },
        tableInfo: {
            height: '100%',
            width: '50%',
            width: '40%',
            padding: '0 10px 0 15px',
            overflow: 'auto',
        }
@@ -88,47 +88,22 @@
                            [
                                {
                                    key: '1',
                                    label: 'Product',
                                    children: 'Cloud Database',
                                    label: intl.formatMessage({ id: 'map.loc.no', defaultMessage: '库位号' }),
                                    children: props.locNo,
                                },
                                {
                                    key: '2',
                                    label: 'Billing Mode',
                                    children: 'Prepaid',
                                },
                                {
                                    key: '1',
                                    label: 'Product',
                                    children: 'Cloud Database',
                                },
                                {
                                    key: '2',
                                    label: 'Billing Mode',
                                    children: 'Prepaid',
                                },
                                {
                                    key: '1',
                                    label: 'Product',
                                    children: 'Cloud Database',
                                },
                                {
                                    key: '2',
                                    label: 'Billing Mode',
                                    children: 'Prepaid',
                                },
                                {
                                    key: '1',
                                    label: 'Product',
                                    children: 'Cloud Database',
                                },
                                {
                                    key: '2',
                                    label: 'Billing Mode',
                                    children: 'Prepaid',
                                    label: intl.formatMessage({ id: 'map.pallet.barcode', defaultMessage: '托盘条码' }),
                                    children: '80000010',
                                },
                                {
                                    key: '3',
                                    label: 'Automatic Renewal',
                                    label: intl.formatMessage({ id: 'map.is.enable', defaultMessage: '是否启用' }),
                                    children: 'Disabled',
                                },
                                {
                                    key: '2',
                                    label: intl.formatMessage({ id: 'map.loc.operation', defaultMessage: '库位操作' }),
                                    children: <Button> submit</Button>,
                                },
                            ]