#
Junjie
2024-04-07 0254b3caa25819d038754baa58b03824303b5fa7
zy-asrs-flow/src/pages/device/shuttle/index.jsx
@@ -130,6 +130,9 @@
        >
            <div style={{ display: 'flex', flexWrap: 'wrap', justifyContent: 'space-around' }}>
                {deviceInfos.map(item => {
                    if(item == null) {
                        return;
                    }
                    let tmpTitle = item.shuttleNo + "号四向车"
                    let tmpData = [
                        {
@@ -170,7 +173,7 @@
                        {
                            key: '8',
                            label: '充电状态',
                            children: 'N',
                            children: item.hasCharge ? 'Y' : 'N',
                        },
                        {
                            key: '9',
@@ -187,6 +190,11 @@
                            label: '运行方向',
                            children: item.runDirection,
                        },
                        {
                            key: '12',
                            label: '是否有托盘',
                            children: item.hasPallet ? 'Y' : 'N',
                        },
                    ];
                    return <div key={item.id} style={{ width: '45%' }}>
                        <Descriptions size="small" title={tmpTitle} bordered items={tmpData} />