remark:'commit'

This commit is contained in:
fks-xuxinyue
2024-07-31 15:52:08 +08:00
parent 75df2dfb11
commit 55051da8a5
13 changed files with 724 additions and 133 deletions

View File

@@ -25,7 +25,7 @@
</div>
</template>
<script lang="ts" setup>
import { ref } from 'vue';
import { ref, defineExpose } from 'vue';
import { http } from '/nerv-lib/util/http';
import { Pagination } from 'ant-design-vue';
import dayjs, { Dayjs } from 'dayjs';
@@ -172,7 +172,9 @@
total.value = res.data.length;
});
};
getTableList();
defineExpose({
getTableList,
});
// 分页器
const onChange = (pageNumber: number, size: number) => {
queryParams.value.pageNum = pageNumber;