mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-01-31 14:08:06 +08:00
feat: 应用商店增加分页 (#1447)
This commit is contained in:
parent
c76cc07c1c
commit
67221e7f70
@ -99,6 +99,15 @@
|
|||||||
</div>
|
</div>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
|
<div class="page-button">
|
||||||
|
<fu-table-pagination
|
||||||
|
v-model:current-page="paginationConfig.currentPage"
|
||||||
|
v-model:page-size="paginationConfig.pageSize"
|
||||||
|
v-bind="paginationConfig"
|
||||||
|
@change="search(req)"
|
||||||
|
:layout="'total, sizes, prev, pager, next, jumper'"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</LayoutContent>
|
</LayoutContent>
|
||||||
<Detail v-if="showDetail" :id="appId"></Detail>
|
<Detail v-if="showDetail" :id="appId"></Detail>
|
||||||
@ -116,6 +125,12 @@ import { useI18n } from 'vue-i18n';
|
|||||||
|
|
||||||
const language = useI18n().locale.value;
|
const language = useI18n().locale.value;
|
||||||
|
|
||||||
|
const paginationConfig = reactive({
|
||||||
|
currentPage: 1,
|
||||||
|
pageSize: 50,
|
||||||
|
total: 0,
|
||||||
|
});
|
||||||
|
|
||||||
const req = reactive({
|
const req = reactive({
|
||||||
name: '',
|
name: '',
|
||||||
tags: [],
|
tags: [],
|
||||||
@ -138,9 +153,12 @@ const getColor = (index: number) => {
|
|||||||
|
|
||||||
const search = async (req: App.AppReq) => {
|
const search = async (req: App.AppReq) => {
|
||||||
loading.value = true;
|
loading.value = true;
|
||||||
|
req.pageSize = paginationConfig.pageSize;
|
||||||
|
req.page = paginationConfig.currentPage;
|
||||||
await SearchApp(req)
|
await SearchApp(req)
|
||||||
.then((res) => {
|
.then((res) => {
|
||||||
apps.value = res.data.items;
|
apps.value = res.data.items;
|
||||||
|
paginationConfig.total = res.data.total;
|
||||||
})
|
})
|
||||||
.finally(() => {
|
.finally(() => {
|
||||||
loading.value = false;
|
loading.value = false;
|
||||||
@ -260,4 +278,10 @@ onMounted(() => {
|
|||||||
border: none;
|
border: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.page-button {
|
||||||
|
float: right;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user