1
0
mirror of https://github.com/zclzone/vue-naive-admin.git synced 2025-05-02 23:29:00 +08:00

Compare commits

..

No commits in common. "c98e489063edcc7696b75928046517ce09743686" and "e30e1fa27ff9c2599ac5e1a6391c7774b3705bca" have entirely different histories.

View File

@ -95,13 +95,7 @@ const emit = defineEmits(['update:queryItems', 'onChecked', 'onDataChange'])
const loading = ref(false)
const initQuery = { ...props.queryItems }
const tableData = ref([])
const pagination = reactive({
page: 1,
pageSize: 10,
prefix({ itemCount }) {
return `${itemCount} 条数据`
},
})
const pagination = reactive({ page: 1, pageSize: 10 })
async function handleQuery() {
try {