|
@@ -1,6 +1,6 @@
|
|
|
import * as React from 'react';
|
|
import * as React from 'react';
|
|
|
import { useNavigate } from "react-router-dom";
|
|
import { useNavigate } from "react-router-dom";
|
|
|
-import { Dropdown, Spin } from 'antd';
|
|
|
|
|
|
|
+import { Dropdown, Spin,Tooltip } from 'antd';
|
|
|
import { Chat } from './DeepSeekChat';
|
|
import { Chat } from './DeepSeekChat';
|
|
|
import whiteLogo from "../icons/whiteLogo.png";
|
|
import whiteLogo from "../icons/whiteLogo.png";
|
|
|
import jkxz from "../icons/jkxz.png";
|
|
import jkxz from "../icons/jkxz.png";
|
|
@@ -120,6 +120,7 @@ const DeekSeek: React.FC = () => {
|
|
|
return {
|
|
return {
|
|
|
key: 'child' + i,
|
|
key: 'child' + i,
|
|
|
label: <div
|
|
label: <div
|
|
|
|
|
+ className='deekSeek-menuds'
|
|
|
onClick={() => {
|
|
onClick={() => {
|
|
|
const search = `?showMenu=${child.showMenu}&chatMode=${child.chatMode}&appId=${child.appId}`;
|
|
const search = `?showMenu=${child.showMenu}&chatMode=${child.chatMode}&appId=${child.appId}`;
|
|
|
if (child.appId) {
|
|
if (child.appId) {
|
|
@@ -130,7 +131,9 @@ const DeekSeek: React.FC = () => {
|
|
|
}
|
|
}
|
|
|
}}
|
|
}}
|
|
|
>
|
|
>
|
|
|
- {child.title}
|
|
|
|
|
|
|
+ <Tooltip placement="left" title={child.title}>
|
|
|
|
|
+ {child.title}
|
|
|
|
|
+ </Tooltip>
|
|
|
</div>,
|
|
</div>,
|
|
|
children: child.children ? child.children.map((record, ind) => {
|
|
children: child.children ? child.children.map((record, ind) => {
|
|
|
return {
|
|
return {
|