feat: layout the knowledge list page and modify the page switching button in the header (#48)

* feat: remove unnecessary 'loading' fields from other files

* feat: layout the knowledge list page

* feat: modify the page switching button in the header
This commit is contained in:
balibabu
2024-01-31 19:29:57 +08:00
committed by GitHub
parent 362ec6c364
commit af3ef26977
29 changed files with 940 additions and 786 deletions

View File

@@ -1,14 +1,8 @@
let api_host = `http://54.80.112.79:9380/v1`;
let api_host = `http://223.111.148.200:9380/v1`;
export { api_host };
export default {
// 用户
login: `${api_host}/user/login`,
register: `${api_host}/user/register`,
@@ -23,8 +17,6 @@ export default {
my_llm: `${api_host}/llm/my_llms`,
set_api_key: `${api_host}/llm/set_api_key`,
//知识库管理
kb_list: `${api_host}/kb/list`,
create_kb: `${api_host}/kb/create`,
@@ -41,9 +33,6 @@ export default {
rm_chunk: `${api_host}/chunk/rm`,
retrieval_test: `${api_host}/chunk/retrieval_test`,
// 上传
upload: `${api_host}/document/upload`,
get_document_list: `${api_host}/document/list`,
@@ -51,5 +40,4 @@ export default {
document_rm: `${api_host}/document/rm`,
document_create: `${api_host}/document/create`,
document_change_parser: `${api_host}/document/change_parser`,
};

View File

@@ -12,9 +12,9 @@ export function lastWeek() {
return formatDate(moment().subtract(1, 'weeks'));
}
export function formatDate(date) {
export function formatDate(date: any) {
if (!date) {
return '';
}
return moment(date).format('YYYY-MM-DD');
return moment(date).format('DD/MM/YYYY');
}

View File

@@ -83,7 +83,7 @@ const errorHandler = (error: {
*/
const request: RequestMethod = extend({
errorHandler, // 默认错误处理
timeout: 3000000,
timeout: 300000,
getResponse: true,
});