更新图片解析

This commit is contained in:
2025-07-17 17:29:41 +08:00
parent 6367754737
commit b470f5946b
7 changed files with 507 additions and 172 deletions

View File

@ -58,11 +58,11 @@
<div class="fenye" :style="{ top: tableHeight + 'px' }">
<el-pagination
class="pagination"
@size-change="handleSizeChange"
@pageSize-change="handleSizeChange"
@current-change="handleCurrentChange"
:current-page="listQuery.pages"
:current-page="listQuery.pageCurrent"
:page-sizes="[10, 20, 50, 100]"
:page-size="listQuery.size"
:page-pageSize="listQuery.pageSize"
layout="total, sizes, prev, pager, next, jumper"
:total="total"
></el-pagination>
@ -108,8 +108,8 @@ const props = defineProps({
const loading = ref(false);
const total = ref(0);
const listQuery = ref({
pages: 1,
size: 20
pageCurrent: 1,
pageSize: 20
});
const keyVal = ref();
@ -125,7 +125,7 @@ const closed = () => {
emits("update:modelValue", false);
};
const reset = () => {
listQuery.value = { pages: 1, size: 20 };
listQuery.value = { pageCurrent: 1, pageSize: 20 };
getListData();
};
@ -144,17 +144,17 @@ const onComfirm = () => {
closed();
};
/**
* size 改变触发
* pageSize 改变触发
*/
const handleSizeChange = (currentSize) => {
listQuery.value.size = currentSize;
listQuery.value.pageSize = currentSize;
getListData();
};
/**
* 页码改变触发
*/
const handleCurrentChange = (currentPage) => {
listQuery.value.pages = currentPage;
listQuery.value.pageCurrent = currentPage;
getListData();
};
const getListData = () => {
@ -184,7 +184,7 @@ function multipleUser() {
}
const handleFilter = () => {
listQuery.value.pages = 1;
listQuery.value.pageCurrent = 1;
getListData();
};