Skip to content

Commit

Permalink
feat(frontend): 权限查询页 #6905
Browse files Browse the repository at this point in the history
  • Loading branch information
3octaves authored and jinquantianxia committed Oct 25, 2024
1 parent 6044b9d commit d406190
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@
}
interface Emits {
(e: 'page-limit-change'): void;
(e: 'page-value-change'): void;
(e: 'page-limit-change', value: number): void;
(e: 'page-value-change', value: number): void;
}
const props = defineProps<Props>();
Expand Down Expand Up @@ -194,11 +194,11 @@
return [];
});
const handleTableLimitChange = () => {
emits('page-limit-change')
const handleTableLimitChange = (value: number) => {
emits('page-limit-change', value)
}
const handleTableValueChange = () => {
emits('page-value-change')
const handleTableValueChange = (value: number) => {
emits('page-value-change', value)
}
</script>

0 comments on commit d406190

Please sign in to comment.