This commit is contained in:
ivamp 2023-12-07 18:50:15 +08:00
parent 20f9024a47
commit 56cb3c5197
2 changed files with 123 additions and 82 deletions

View File

@ -1,9 +1,10 @@
<template>
<div>{{ documents }}</div>
<div v-if="loading">
<v-row justify="center">
<v-col cols="12" md="4" xl="2" v-for="n in 3" :key="n">
<v-skeleton-loader v-for="n in 2" :key="n"
<v-skeleton-loader
v-for="n in 2"
:key="n"
class="mx-auto border mt-3"
max-width="300"
type="image, article"
@ -11,12 +12,50 @@
</v-col>
</v-row>
</div>
<div v-else>
<v-row>
<v-col cols="12" md="4" xl="2" v-for="document in documents.Data" :key="document.id">
<v-card class="mt-3">
<v-card-title>{{ document.Title }}</v-card-title>
<v-card-subtitle>{{
document.Chunked ? "分块的文档" : "还没有处理"
}}</v-card-subtitle>
<v-card-subtitle>
{{ new Date(document.CreatedAt).toLocaleString() }}
</v-card-subtitle>
<v-card-text>{{ document.content }}</v-card-text>
<v-card-actions>
<v-btn text color="primary">详情</v-btn>
<v-btn text color="secondary">编辑</v-btn>
</v-card-actions>
</v-card>
</v-col>
</v-row>
</div>
<div v-if="documents.Total == 0">
<v-alert text="看样子你还没有创建任何文档。"></v-alert>
</div>
<v-btn class="mt-3" @click="goto_create_document">创建</v-btn>
<div class="text-center">
<v-container>
<v-row justify="center">
<v-col cols="8">
<v-container class="max-width">
<v-pagination
v-model="page"
class="my-4"
:length="documents.Total"
:disabled="loading"
@update:model-value="load"
></v-pagination>
</v-container>
</v-col>
</v-row>
</v-container>
</div>
<v-btn class="mt-3" @click="goto_create_document">创建</v-btn>
</template>
<script setup>
@ -45,14 +84,12 @@ function load() {
load();
console.log(libraryId);
function goto_create_document() {
router.push({
name: "library.documents.create",
params: {
LibraryId: libraryId
LibraryId: libraryId,
},
});
}
})
}
</script>

View File

@ -8,7 +8,9 @@
{{ selected_ids }}
</div> -->
<v-btn @click="selectAll" :color="selected_ids.length > 0 ? 'primary' : ''"
<v-btn
@click="selectAll"
:color="selected_ids.length > 0 ? 'primary' : ''"
>全选</v-btn
>
@ -20,7 +22,9 @@
<v-dialog v-model="show_dialog" activator="parent" width="auto">
<v-card>
<v-card-text v-text="is_deleting ? '正在为你准备新项目。' : '确认删除所选项?'"></v-card-text>
<v-card-text
v-text="is_deleting ? '正在为你准备新项目。' : '确认删除所选项?'"
></v-card-text>
<v-card-actions>
<v-btn
color="primary"
@ -123,9 +127,9 @@ const goto = (libraryId) => {
router.push({
name: "library.documents",
params: {
LibraryId: libraryId
}
})
LibraryId: libraryId,
},
});
};
function isSelected(id) {
@ -179,7 +183,7 @@ function deleteSelected() {
page.value = page.value - 1;
}
if (page.value == 0) {
page.value = 1
page.value = 1;
}
load(false);