|
@@ -77,7 +77,6 @@
|
|
</template>
|
|
</template>
|
|
<template v-else-if="column.key === 'action'">
|
|
<template v-else-if="column.key === 'action'">
|
|
<span v-if="record.useType !== 'animation'">
|
|
<span v-if="record.useType !== 'animation'">
|
|
-
|
|
|
|
<a @click="delHandler(record.id)">删除</a>
|
|
<a @click="delHandler(record.id)">删除</a>
|
|
</span>
|
|
</span>
|
|
</template>
|
|
</template>
|
|
@@ -276,7 +275,7 @@ const okHandler = () => {
|
|
const handleTableChange: TableProps["onChange"] = (pag, filters) => {
|
|
const handleTableChange: TableProps["onChange"] = (pag, filters) => {
|
|
params.pageSize = pag.pageSize!;
|
|
params.pageSize = pag.pageSize!;
|
|
params.pageNum = pag.current!;
|
|
params.pageNum = pag.current!;
|
|
- params.groupIds = filters.group as number[];
|
|
|
|
|
|
+ params.groupIds = (filters.group || props.groupIds) as number[];
|
|
};
|
|
};
|
|
</script>
|
|
</script>
|
|
|
|
|