| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960 |
- import * as React from 'react';
- import { observer } from 'mobx-react';
- import {
- List,
- Button,
- Divider,
- Flex,
- Layout,
- Empty,
- Image,
- Modal,
- Tag,
- message,
- Tooltip,
- Select,
- Form,
- Space,
- Row,
- Col,
- Input, Cascader, Card
- } from 'antd';
- import {
- PlusOutlined,
- FileOutlined,
- SettingOutlined,
- DeleteOutlined,
- StepForwardOutlined,
- SearchOutlined,
- ReloadOutlined,
- BookOutlined,
- TeamOutlined,
- AppstoreOutlined,
- EditOutlined, CloseOutlined, BulbOutlined
- } from '@ant-design/icons';
- import { apis } from '@/apis';
- import './style.less';
- import { PaginationConfig } from 'antd/es/pagination';
- import router from '@/router';
- import LocalStorage from '@/LocalStorage';
- import { create } from 'domain';
- import audit from '../../audit';
- import { set } from 'mobx';
- import IconSvg from "@/assets/public/icon.svg";
- import dayjs from 'dayjs';
- const { Header, Footer, Sider, Content } = Layout;
- const { Option } = Select;
- const FormItem = Form.Item;
- const headerStyle: React.CSSProperties = {
- textAlign: 'center',
- height: 24,
- paddingInline: 48,
- lineHeight: '30px',
- backgroundColor: '#fff',
- };
- const contentStyle: React.CSSProperties = {
- textAlign: 'center',
- lineHeight: '40px',
- backgroundColor: '#fff',
- };
- const siderStyle: React.CSSProperties = {
- paddingLeft: 30,
- paddingTop: 30,
- height: 80,
- backgroundColor: '#fff',
- };
- const footerStyle: React.CSSProperties = {
- textAlign: 'center',
- color: '#fff',
- height: 24,
- backgroundColor: '#4096ff',
- };
- const layoutStyle = {
- borderRadius: 8,
- overflow: 'hidden',
- width: 'calc(10% - 8px)',
- maxWidth: 'calc(20% - 8px)',
- };
- const QuestionAnswerList: React.FC = () => {
- const [form] = Form.useForm();
- interface Item {
- name: string,
- desc: string,
- appId: number,
- createBy: string,
- typeId: string;
- status: string;
- comment: string;
- auditStatus: string;
- projectName: string;
- updateTime: string;
- };
- interface PageInfo {
- pageNumber: number,
- pageSize: number,
- total: number,
- };
- type AppTypeList = {
- label: string,
- value: string,
- }[];
- type ProjectTypeList = {
- label: string,
- value: string,
- }[];
- const [listLoading, setListLoading] = React.useState(false);
- const [list, setList] = React.useState<Item[]>([]);
- const [page, setPage] = React.useState<PageInfo>({
- pageNumber: 1,
- pageSize: 10,
- total: 0,
- });
- const [appCount, setAppCount] = React.useState<string>();
- const [knowCount, setKnowCount] = React.useState<string>();
- const { Header, Footer, Sider, Content } = Layout;
- const [appTypeList, setAppTypeList] = React.useState<AppTypeList>([]);
- const [createFlag, setCreateFlag] = React.useState(false);
- const [deleteFlag, setDeleteFlag] = React.useState(false);
- const [updateFlag, setUpdateFlag] = React.useState(false);
- const [userInfoAll, setUserInfoAll] = React.useState<any>({});
- const [projectList, setProjectList] = React.useState<ProjectTypeList>([]);
- const [appProjectList, setAppProjectList] = React.useState<AppTypeList>([]);
- const [showSubPanel, setShowSubPanel] = React.useState(false);
- const [selectedType, setSelectedType] = React.useState<string | null>('全部');
- const wrapperRef = React.useRef<HTMLDivElement>(null);
- const selectRef = React.useRef<any>(null);
- const [levelTypeList, setLevelTypeList] = React.useState<AppTypeList>([]);
- // 新手引导整体可见性(持久化到 localStorage)
- const [showGuide, setShowGuide] = React.useState<boolean>(() => localStorage.getItem('appGuideHidden') !== 'true');
- const hideGuide = () => { localStorage.setItem('appGuideHidden', 'true'); setShowGuide(false); };
- const appApi = {
- fetchList: async (typeId: any, projectId: any) => {
- setListLoading(true);
- try {
- const userInfo = LocalStorage.getUserInfo();
- const userId = (userInfo?.id ?? '').toString();
- const keyword = form.getFieldValue('keyword');
- const res = await apis.fetchTakaiAppList({
- pageSize: page.pageSize,
- pageNumber: page.pageNumber,
- userId: userId,
- typeId: typeId,
- projectId: projectId?.toString(),
- keyword: keyword,
- })
- const list = res.rows.map((item: any) => {
- return {
- name: item.name,
- desc: item.desc,
- appId: item.appId,
- createBy: item.createBy,
- typeId: item.typeId,
- status: item.status,
- comment: item.comment,
- auditStatus: item.auditStatus,
- projectName: item.projectName,
- updateTime: item.updateTime
- }
- });
- const c = LocalStorage.getStatusFlag('deepseek:application:create');
- const u = LocalStorage.getStatusFlag('deepseek:application:delete');
- const filteredList = list.filter((item: any) => {
- // 如果有 createFlag 或 updateFlag 权限,显示所有数据
- if (c || u) {
- return true;
- }
- // 没有权限时排除 status='5' 的数据
- return item.status !== '5';
- });
- setList(filteredList);
- setPage({
- pageNumber: page.pageNumber,
- pageSize: page.pageSize,
- total: res.total,
- });
- } catch (error) {
- console.error(error);
- } finally {
- setListLoading(false);
- }
- },
- auditApplication: async (appId: string, userId: string) => {
- const res = await apis.auditTakaiApplicationLibApi(appId, userId);
- if (res.data === 9) {
- message.error('您没有添加审核人');
- }
- await appApi.fetchList(null, null);
- }
- };
- // 立即使用应用
- const useNowAppLication = (appId: number) => {
- const userInfo = LocalStorage.getUserInfo();
- const getToken = LocalStorage.getToken();
- // const baseUrl = import.meta.env.VITE_JUMP_URL;
- const baseUrl = 'https://llm.jkec.info:11432/#/knowledgeChat?showMenu=false&chatMode=LOCAL'
- window.open(`${baseUrl}&appId=${appId}&userId=${userInfo?.id}&nickName=${userInfo?.name}&token=${getToken}`, '_blank');
- }
- // 删除应用
- const delApplication = async (appId: string) => {
- try {
- await apis.deleteTakaiApplicationApi(appId);
- await appApi.fetchList(null, null);
- } catch (error) {
- console.error(error);
- }
- }
- const indexApi = {
- fetchIndex: async (typeId: any, projectId: any) => {
- try {
- const userInfo = LocalStorage.getUserInfo();
- const userId = (userInfo?.id ?? '').toString();
- const keyword = form.getFieldValue('keyword');
- const res = await apis.fetchTakaiIndexCount({
- pageSize: page.pageSize,
- pageNumber: page.pageNumber,
- userId: userId,
- typeId: typeId,
- projectId: projectId?.toString(),
- keyword: keyword,
- })
- setAppCount(res.data.applicationCount);
- setKnowCount(res.data.knowledgeCount);
- } catch (error) {
- console.error(error);
- } finally {
- setListLoading(false);
- }
- }
- };
- // 获取应用类型
- const appTypeApi = {
- fetchAppType: async () => {
- try {
- const res = await apis.fetchTakaiAppTypeList('app_type');
- const list = res.data.map((item: any) => {
- return {
- label: item.dictLabel,
- value: item.dictCode,
- }
- });
- setAppTypeList(list);
- } catch (error: any) {
- console.error(error);
- }
- },
- };
- // 项目级应用下的类型
- const appProTypeApi = {
- fetchAppProType: async () => {
- try {
- const res = await apis.fetchTakaiAppTypeList('projectTree');
- // const list: AppTypeList = res.data;
- const list: AppTypeList = res.data?.reduce((acc: any, item: any) => {
- if (item.children.length > 0) {
- item.children.forEach((val: any) => {
- acc.push({
- label: val.label,
- value: `${val.value}`,
- })
- })
- }
- return acc;
- }, []);
- setAppProjectList(list);
- // const res = await apis.fetchTakaiAppTypeList('projectTree');
- // const list = res.data.map((item: any) => {
- // return {
- // label: item.dictLabel,
- // value: item.dictCode,
- // }
- // });
- // setAppProjectList(list);
- } catch (error: any) {
- console.error(error);
- }
- },
- };
- const projectApi = {
- fetchProject: async () => {
- try {
- const res = await apis.fetchTakaiProjectLibApi();
- const list = res.data.map((item: any) => {
- return {
- label: item.projectName,
- value: item.projectId,
- }
- });
- setProjectList(list);
- } catch (error: any) {
- console.error(error);
- }
- },
- };
- // 获取应用类型
- const levelTypeApi = {
- fetchLevelAppType: async () => {
- try {
- const res = await apis.fetchTakaiAppTypeList('project_type');
- const list = res.data.map((item: any) => {
- return {
- label: item.dictLabel,
- value: item.dictCode,
- }
- });
- setLevelTypeList(list);
- } catch (error: any) {
- console.error(error);
- }
- },
- };
- const init = async () => {
- await appApi.fetchList(null, null);
- await indexApi.fetchIndex(null, null);
- await appTypeApi.fetchAppType();
- await projectApi.fetchProject();
- await appProTypeApi.fetchAppProType();
- await levelTypeApi.fetchLevelAppType();
- // 设置默认选择"全部"
- form.setFieldsValue({ typeId: '全部' });
- }
- React.useEffect(() => {
- setCreateFlag(LocalStorage.getStatusFlag('deepseek:application:create'));
- setDeleteFlag(LocalStorage.getStatusFlag('deepseek:application:delete'));
- setUpdateFlag(LocalStorage.getStatusFlag('deepseek:application:update'));
- setUserInfoAll(LocalStorage.getUserInfo());
- init();
- }, [page.pageSize, page.pageNumber])
- const paginationConfig: PaginationConfig = {
- // 显示数据总量
- showTotal: (total: number) => {
- return `共 ${total} 条`;
- },
- // 展示分页条数切换
- showSizeChanger: true,
- // 指定每页显示条数
- // pageSizeOptions: ['2', '20', '50', '100'],
- // 快速跳转至某页
- showQuickJumper: true,
- current: page.pageNumber,
- pageSize: page.pageSize,
- total: page.total,
- onChange: (pageNumber, pageSize) => {
- setPage({
- pageNumber: pageNumber,
- pageSize: pageSize,
- total: page.total,
- });
- },
- };
- // 点击查询
- const handleClickSearch = async () => {
- form.validateFields().then(async (values) => {
- if (values.proTypeId) {
- values.typeId = values.proTypeId;
- }
- if (values.typeId === '全部') {
- values.typeId = null;
- }
- if (values.projectId instanceof Array && values.projectId.length == 2) {
- values.projectId = values.projectId[1];
- }
- await indexApi.fetchIndex(values.typeId, values.projectId);
- await appApi.fetchList(values.typeId, values.projectId);
- }).catch((error) => {
- console.error(error);
- });
- };
- // 点击重置
- const handleClickReset = async () => {
- form.resetFields();
- setShowSubPanel(false);
- setSelectedType('全部'); // 重置为"全部"
- page.pageNumber = 1;
- page.pageSize = 10;
- await appApi.fetchList(null, null);
- await indexApi.fetchIndex(null, null);
- };
- /** 点击外部关闭面板 */
- React.useEffect(() => {
- const handleClickOutside = (event: MouseEvent) => {
- if (wrapperRef.current && !wrapperRef.current.contains(event.target as Node)) {
- setShowSubPanel(false);
- }
- };
- document.addEventListener('mousedown', handleClickOutside, true);
- return () => {
- document.removeEventListener('mousedown', handleClickOutside, true);
- };
- }, []);
- const handleAppTypeChange = (value: string) => {
- if (value === '41') {
- // 如果是项目级应用,切换面板状态
- // setShowSubPanel(prev => !prev);
- setShowSubPanel(true);
- } else {
- // 其他选项,隐藏面板
- setShowSubPanel(false);
- }
- setSelectedType(value);
- form.setFieldsValue({ typeId: value });
- // 自动提交逻辑
- if (value === '全部') {
- // 全部选项,传递null给后端
- appApi.fetchList(null, null);
- indexApi.fetchIndex(null, null);
- } else {
- // 其他选项,传递对应的typeId
- appApi.fetchList(value, null);
- indexApi.fetchIndex(value, null);
- }
- };
- const handleAppProTypeChange = (value: string) => {
- console.log(value, 'valuevalue');
- setSelectedType(value);
- form.setFieldsValue({ typeId: value });
- };
- return (
- <div>
- <div style={{ padding: '16px 20px', display: 'flex' }}>
- <Form
- form={form}
- layout='inline'
- colon={false}
- style={{ flex: 1 }}
- >
- <div>
- {/* 主选择器 - 修改为按钮组形式 */}
- <FormItem
- name="typeId"
- style={{ marginBottom: 0 }}
- >
- <div className="filter-button-group">
- {/* 全部按钮 */}
- <Button
- key="全部"
- type={selectedType === '全部' ? 'primary' : 'default'}
- size="small"
- onClick={() => handleAppTypeChange('全部')}
- >
- 全部
- </Button>
- {/* 动态应用类型按钮 */}
- {appTypeList.map(item => {
- // 根据label匹配对应的图标
- let icon = null;
- const isSelected = selectedType === item.value;
- if (item.label === '专业知识') {
- icon = <BookOutlined style={{ fontSize: '14px', marginRight: '0' }} />;
- } else if (item.label === '职能管理') {
- icon = <TeamOutlined style={{ fontSize: '14px', marginRight: '0' }} />;
- } else if (item.label === '项目级应用') {
- icon = <AppstoreOutlined style={{ fontSize: '14px', marginRight: '0' }} />;
- }
- return (
- <Button
- key={item.value}
- type={isSelected ? 'primary' : 'default'}
- size="small"
- onClick={() => handleAppTypeChange(item.value)}
- >
- {icon}
- {item.label}
- </Button>
- );
- })}
- </div>
- </FormItem>
- {/* 子选项面板 */}
- {showSubPanel && selectedType === '41' && (
- <FormItem
- label='类型'
- name='proTypeId'
- rules={[{ required: true, message: '类型不能为空' }]}
- >
- <Select
- placeholder='请选择'
- allowClear
- // style={ { width: 200 } }
- onChange={(value) => {
- // 项目类型选择器自动提交逻辑
- const currentProjectId = form.getFieldValue('projectId');
- appApi.fetchList(value, currentProjectId);
- indexApi.fetchIndex(value, currentProjectId);
- }}
- >
- {
- appProjectList.map((item, index) => {
- return <Option value={item.value} key={index}>
- {item.label}
- </Option>
- })
- }
- </Select>
- </FormItem>
- )}
- </div>
- {/* {
- appProjectList.map((subItem, index) => (
- <div key={index}>
- {subItem.label}
- </div>
- ))
- } */ }
- <FormItem name='projectId'>
- <Cascader
- options={appProjectList}
- placeholder="请选择项目"
- showSearch
- />
- {/*<Select*/}
- {/* placeholder='请选择项目'*/}
- {/* allowClear*/}
- {/* onChange={(value) => {*/}
- {/* // 项目选择器自动提交逻辑*/}
- {/* const currentTypeId = form.getFieldValue('typeId');*/}
- {/* const typeId = currentTypeId === '全部' ? null : currentTypeId;*/}
- {/* appApi.fetchList(typeId, value);*/}
- {/* indexApi.fetchIndex(typeId, value);*/}
- {/* }}*/}
- {/*>*/}
- {/* {*/}
- {/* projectList.map((item, index) => {*/}
- {/* return <Option value={item.value} key={index}>*/}
- {/* {item.label}*/}
- {/* </Option>*/}
- {/* })*/}
- {/* }*/}
- {/*</Select>*/}
- </FormItem>
- {/*<FormItem name='keyword'>*/}
- {/* <Input placeholder='请输入关键字' allowClear />*/}
- {/*</FormItem>*/}
- <FormItem>
- <Space size={12}>
- <Tooltip title="重置">
- <Button
- shape="circle"
- icon={<ReloadOutlined />}
- onClick={handleClickReset}
- />
- </Tooltip>
- <Tooltip title="查询">
- <Button
- type='primary'
- shape="circle"
- onClick={handleClickSearch}
- icon={<SearchOutlined />}
- />
- </Tooltip>
- </Space>
- </FormItem>
- {/* {
- createFlag && (
- <div style={ { marginLeft: 'auto' } }>
- <Button type='primary'
- icon={ <PlusOutlined /> }
- onClick={ () => {
- router.navigate( { pathname: '/deepseek/questionAnswer/create' } );
- } }>创建问答应用</Button>
- </div>
- )
- }
- */}
- {/* 创建按钮已移至面包屑组件 */}
- </Form>
- </div>
-
- {/* 新手使用提示区块 */}
- {showGuide && (
- <div style={{ padding: '12px 20px 12px 20px' }}>
- <div style={{ display: 'flex', alignItems: 'center', justifyContent: 'space-between', marginBottom: 8 }}>
- <div style={{ fontSize: 13, color: '#333', display: 'flex', alignItems: 'center', gap: 6 }}>
- <BulbOutlined style={{ color: '#faad14' }} />
- 提示:如何创建并发布自己的RAG(增强检索生成)应用?
- </div>
- <CloseOutlined onClick={hideGuide} style={{ color: '#999', cursor: 'pointer' }} />
- </div>
- <Row gutter={12}>
- <Col xs={24} sm={24} md={12} lg={8}>
- <Card
- size="small"
- bordered={false}
- style={{
- background: 'linear-gradient(90deg, #e6f4ff 0%, #f0f7ff 100%)',
- boxShadow: '0 1px 2px rgba(0,0,0,0.04)',
- borderRadius: 8,
- height: '100%'
- }}
- bodyStyle={{ display: 'flex', flexDirection: 'column', justifyContent: 'space-between', minHeight: 80 }}
- title={<span style={{ fontWeight: 600 }}>创建或选用公共知识库</span>}
- >
- <div style={{ color: '#666', fontSize: 12 }}>选择公共知识库,或点击知识库菜单栏,创建自己的知识库。</div>
- <div style={{ textAlign: 'right', color: '#1677ff', fontWeight: 600 }}>step 1</div>
- </Card>
- </Col>
- <Col xs={24} sm={24} md={12} lg={8}>
- <Card
- size="small"
- bordered={false}
- style={{
- background: 'linear-gradient(90deg, #e6fffb 0%, #f0fffe 100%)',
- boxShadow: '0 1px 2px rgba(0,0,0,0.04)',
- borderRadius: 8,
- height: '100%'
- }}
- bodyStyle={{ display: 'flex', flexDirection: 'column', justifyContent: 'space-between', minHeight: 80 }}
- title={<span style={{ fontWeight: 600 }}>参数配置</span>}
- >
- <div style={{ color: '#666', fontSize: 12 }}>点击右上角,创建应用,选择模型与知识范围,配置Prompt、检索策略并调试。</div>
- <div style={{ textAlign: 'right', color: '#1677ff', fontWeight: 600 }}>step 2</div>
- </Card>
- </Col>
- <Col xs={24} sm={24} md={12} lg={8}>
- <Card
- size="small"
- bordered={false}
- style={{
- background: 'linear-gradient(90deg, #fff7e6 0%, #fffaf0 100%)',
- boxShadow: '0 1px 2px rgba(0,0,0,0.04)',
- borderRadius: 8,
- height: '100%'
- }}
- bodyStyle={{ display: 'flex', flexDirection: 'column', justifyContent: 'space-between', minHeight: 80 }}
- title={<span style={{ fontWeight: 600 }}>发布应用</span>}
- >
- <div style={{ color: '#666', fontSize: 12 }}>发布后可在相应的项目内使用。</div>
- <div style={{ textAlign: 'right', color: '#1677ff', fontWeight: 600 }}>step 3</div>
- </Card>
- </Col>
- </Row>
- </div>
- )}
- {
- list.length
- ?
- <div className='questionAnswerList'>
- {/*<div style={ { overflow: 'auto' } }>*/}
- {/* <Flex gap="middle" wrap>*/}
- {/* <Layout style={ layoutStyle }>*/}
- {/* <Sider width="25%" style={ siderStyle }>*/}
- {/* <FileOutlined />*/}
- {/* </Sider>*/}
- {/* <Layout>*/}
- {/* <Header style={ headerStyle }>问答应用总数</Header>*/}
- {/* <Content style={ contentStyle }>{ appCount }个</Content>*/}
- {/* </Layout>*/}
- {/* </Layout>*/}
- {/* <Layout style={ layoutStyle }>*/}
- {/* <Sider width="25%" style={ siderStyle }>*/}
- {/* <FileOutlined />*/}
- {/* </Sider>*/}
- {/* <Layout>*/}
- {/* <Header style={ headerStyle }>知识库总数</Header>*/}
- {/* <Content style={ contentStyle }>{ knowCount } 个</Content>*/}
- {/* </Layout>*/}
- {/* </Layout>*/}
- {/* </Flex>*/}
- {/*</div>*/}
- {/*<div style={ { display: 'flex', justifyContent: 'space-between', padding: '16px 20px' } }>*/}
- {/* <div>所有问答应用</div>*/}
- {/* /!*{*!/*/}
- {/* /!* createFlag &&*!/*/}
- {/* /!* <Button type='primary'*!/*/}
- {/* /!* icon={ <PlusOutlined /> }*!/*/}
- {/* /!* onClick={ () => {*!/*/}
- {/* /!* router.navigate( { pathname: '/deepseek/questionAnswer/create' } );*!/*/}
- {/* /!* } }>创建问答应用</Button>*!/*/}
- {/* /!*}*!/*/}
- {/*</div>*/}
- <div className='applicationList'>
- <List grid={{
- gutter: 16,
- xs: 1,
- sm: 1,
- md: 2,
- lg: 2,
- xl: 3,
- xxl: 4, // 展示的列数
- }}
- dataSource={list}
- renderItem={(item) => (
- <List.Item>
- <div className='card'>
- <div style={{
- display: 'flex',
- justifyContent: 'space-between',
- alignItems: 'center',
- overflow: 'hidden',
- }}>
- <div style={{ display: 'flex', alignItems: 'center', overflow: 'auto' }}>
- <div style={{ marginRight: 10, overflow: 'auto' }}>
- <Image
- width={32}
- height={32}
- src={IconSvg}
- preview={false}
- />
- </div>
- {/*<div style={ { overflow: 'auto' } }>*/}
- {/* { item.name }*/}
- {/*</div>*/}
- <div style={{
- display: 'flex',
- flexDirection: 'column',
- justifyContent: 'center',
- overflow: 'hidden',
- maxWidth: '85%',
- height: '100%'
- }}>
- <Tooltip title={item.name} placement="top">
- <div style={{
- lineHeight: '18px',
- fontSize: 14,
- fontWeight: 500,
- overflow: 'hidden',
- textOverflow: 'ellipsis',
- whiteSpace: 'nowrap',
- // maxWidth: '200px', // 可以根据需要调整宽度
- cursor: 'pointer'
- }}>
- {item.name.length > 20 ? `${item.name.substring(0, 30)}...` : item.name}
- </div>
- </Tooltip>
- <Space size={4} style={{ lineHeight: '18px' }}>
- <span style={{
- color: '#999',
- fontSize: 12,
- margin: 0
- }}>ID:{item.appId}</span>
- <Divider type="vertical" style={{ color: '999', margin: 0, height: 12 }} />
- <span
- style={ {
- color: '#999',
- fontSize: 12,
- display: 'inline-block',
- maxWidth: '100%', // 限制最大宽度
- flex: 1, // 使span占据剩余空间
- whiteSpace: 'nowrap', // 禁止换行
- overflow: 'hidden', // 隐藏溢出内容
- textOverflow: 'ellipsis', // 显示省略号
- verticalAlign: 'middle' // 垂直居中
- } }
- title={ item.projectName } // 鼠标悬停时显示完整名称
- >
- {item.projectName}
- </span>
- {/*<span style={{ color: '#999', fontSize: 12 }}>*/}
- {/* {*/}
- {/* item.projectName && item.projectName.length > 8 ?*/}
- {/* `${item.projectName.substring(0, 8)}...` :*/}
- {/* item.projectName*/}
- {/* }*/}
- {/*</span>*/}
- </Space>
- </div>
- </div>
- <div>
- <>
- {/*{ item.projectName } 移动599 line*/}
- {
- (item.status !== null && item.status !== '3') &&
- < Tag style={{
- // marginLeft: 16,
- width: 65,
- color: '#fff',
- height: 24,
- backgroundColor: item.status === '1' ? '#D26900' : item.status === '2' ? '#408080' : item.auditStatus === '4' ? '#CE0000' : item.status === '5' ? '#5151A2' : ''
- }}>
- {item.status === '1' ? '待审核' : item.status === '2' ? '审核中' : item.auditStatus === '4' ? '审核拒绝' : item.status === '5' ? '待提交' : '未知'}
- </Tag>
- }
- {
- (item.auditStatus === '4') &&
- <Tooltip title={item.comment}>
- {
- item.comment !== '' && item.comment !== null && item.comment.length > 10 ?
- item.comment.substring(0, 10) + '......' :
- item.comment
- }
- </Tooltip>
- }
- </>
- </div>
- </div>
- <Divider plain style={{ margin: '16px 0' }}></Divider>
- <div className='desc'>
- {
- item.desc !== '' && item.desc !== null && item.desc.length > 40 ? item.desc.substring(0, 40) + '......' : item.desc
- }
- </div>
- <div style={{
- display: 'flex',
- justifyContent: 'space-between',
- alignItems: 'center'
- }}>
- <span style={{
- color: '#999',
- fontSize: 12,
- margin: 0
- }}>更新时间: {dayjs(item.updateTime).format("YYYY-MM-DD HH:mm:ss")}</span>
- </div>
- <div style={{
- display: 'flex',
- justifyContent: 'space-between',
- alignItems: 'flex-end',
- paddingTop: 3,
- // overflow: 'auto',
- // paddingTop: 16,
- // height: '100%'
- }}>
- <div style={{
- overflow: 'auto'
- }}>
- {
- (item.status === '5' || item.status === '4' || item.status === '3' || item.status === '' || item.status === null) &&
- <>
- {
- (updateFlag || userInfoAll.id === item.createBy) &&
- <a
- className="action-button"
- style={{ marginRight: 16 }}
- onClick={() => {
- router.navigate({ pathname: '/deepseek/questionAnswer/modify' }, { state: { id: item.appId } });
- }}>
- <EditOutlined /> 编辑
- </a>
- }
- {
- (deleteFlag || userInfoAll.id === item.createBy) &&
- <a className='delete-button' onClick={() => {
- Modal.confirm({
- title: '删除',
- content: `确定删除应用: ` + item.name + ` 吗?`,
- okType: 'danger',
- onOk: async () => {
- await delApplication(item.appId.toString());
- }
- });
- }}>
- <DeleteOutlined /> 删除
- </a>
- }
- </>
- }
- {
- createFlag && item.status === '5' &&
- <a className="action-button" style={{ marginLeft: 16 }} onClick={() => {
- Modal.confirm({
- title: '提交审核',
- content: `确认提交审核应用: ` + item.name + `吗?`,
- okType: 'danger',
- onOk: async () => {
- const userInfo = LocalStorage.getUserInfo();
- const userId = (userInfo?.id ?? '').toString();
- appApi.auditApplication(item.appId.toString(), userId);
- }
- });
- }}>
- <StepForwardOutlined /> 提交审核
- </a>
- }
- <Button size='small' style={{
- background: 'transparent',
- border: '1px solid #1677ff',
- color: '#1677ff',
- marginTop: '2px',
- marginLeft: createFlag && item.status === '5' || (item.status === '5' || item.status === '4' || item.status === '3' || item.status === '' || item.status === null) && updateFlag||userInfoAll.id === item.createBy ? '10px' : 0,
- fontSize: 12,
- }} type="primary" variant="outlined" onClick={() => { useNowAppLication(item.appId) }}>立即使用</Button>
- </div>
- <div>
- <Tag
- style={{
- // padding: '4px 8px',
- marginRight: 0,
- fontSize: 12,
- fontWeight: 600,
- background: '#f8f8f8',
- // border: '1px solid #d9d9d9'
- }}
- >
- {
- appTypeList
- .find(item1 => item1.value.toString() === item.typeId)?.label || levelTypeList.find(item2 => item2.value.toString() === item.typeId)?.label || '未分类'
- }
- </Tag>
- </div>
- </div>
- </div>
- </List.Item>
- )}
- pagination={paginationConfig} // 分页
- />
- </div>
- </div>
- :
- <div>
- {/* {
- createFlag &&
- <Button type='primary'
- icon={ <PlusOutlined /> }
- onClick={ () => {
- router.navigate( { pathname: '/deepseek/questionAnswer/create' } );
- } }>创建问答应用</Button>
- } */}
- <Empty image={Empty.PRESENTED_IMAGE_SIMPLE} />
- </div>
- }
- </div>
- )
- };
- export default observer(QuestionAnswerList);
|