|
|
@@ -9,6 +9,7 @@ import ExitModal from '@/components/ExitModal';
|
|
|
import { showNotImplemented } from '@/utils/notificationHelper';
|
|
|
import { FormattedMessage } from 'react-intl';
|
|
|
import logo from '@/assets/imgs/bzylogo.png';
|
|
|
+import logo_human from '@/assets/imgs/human-logo.png';
|
|
|
import { useAppSelector } from '@/states/store';
|
|
|
|
|
|
const BottomBar: React.FC = () => {
|
|
|
@@ -16,6 +17,7 @@ const BottomBar: React.FC = () => {
|
|
|
const login = useSelector((state: RootState) => isLoggedIn(state.userInfo));
|
|
|
const username = useSelector((state: RootState) => state.userInfo.name);
|
|
|
const avatarUrl = useSelector((state: RootState) => state.userInfo.avatar);
|
|
|
+ const productName = useAppSelector((state) => state.product.productName);
|
|
|
|
|
|
// 退出弹框状态管理
|
|
|
const [exitModalVisible, setExitModalVisible] = useState(false);
|
|
|
@@ -44,9 +46,9 @@ const BottomBar: React.FC = () => {
|
|
|
>
|
|
|
{/* Logo */}
|
|
|
<Col flex="none" className="h-full">
|
|
|
- <img
|
|
|
- src={logo}
|
|
|
- alt="Logo"
|
|
|
+ <img
|
|
|
+ src={productName === 'DROS' ? logo_human : logo}
|
|
|
+ alt="Logo"
|
|
|
className="h-full w-auto object-contain"
|
|
|
/>
|
|
|
</Col>
|