From d835d1b51f832889929cdf69010034a30ef44d02 Mon Sep 17 00:00:00 2001
From: Junjie <xjj@123>
Date: 星期四, 17 十月 2024 13:57:29 +0800
Subject: [PATCH] #

---
 zy-asrs-flow/src/pages/map/drawer/shelf/index.jsx |   19 ++++++++-----------
 1 files changed, 8 insertions(+), 11 deletions(-)

diff --git a/zy-asrs-flow/src/pages/map/drawer/shelf/index.jsx b/zy-asrs-flow/src/pages/map/drawer/shelf/index.jsx
index a8e8458..89b43b6 100644
--- a/zy-asrs-flow/src/pages/map/drawer/shelf/index.jsx
+++ b/zy-asrs-flow/src/pages/map/drawer/shelf/index.jsx
@@ -3,27 +3,24 @@
 import { FormattedMessage, useIntl, useModel } from '@umijs/max';
 import { createStyles } from 'antd-style';
 import * as Utils from '../../utils'
-import Http from '@/utils/http';
 import ShowJson from '../showJson';
 import ShelfView from './view'
 
-const useStyles = createStyles(({ token, css }) => {
-
-})
-
 const ShelfDrawer = (props) => {
     const intl = useIntl();
-    const { styles } = useStyles();
     const { curSprite, curFloor } = props;
 
     const [activeTabKey, setActiveTabKey] = useState('view');
-    const [curLocNo, setCurLocNo] = React.useState(curSprite.data.no + '-' + curFloor);
+    const [curLocNo, setCurLocNo] = React.useState(''); // just used to modify the drawer title
+
+    props.setDrawerWidth(window.innerWidth * 0.35);
 
     useEffect(() => {
-        const locNo = curSprite.data.no + '-' + curFloor;
-        props.setDrawerTitle(intl.formatMessage({ id: 'map.loc.no', defaultMessage: '搴撲綅鍙�' }) + ': ' + locNo);
-        setCurLocNo(locNo);
-    }, [curSprite]);
+        if (!curSprite) {
+            return
+        }
+        props.setDrawerTitle(intl.formatMessage({ id: 'map.loc.no', defaultMessage: '搴撲綅鍙�' }) + ': ' + curLocNo);
+    }, [curLocNo]);
 
     const contentList = {
         view: (

--
Gitblit v1.9.1