|
|
@@ -2,9 +2,9 @@
|
|
|
<template>
|
|
|
<app-view>
|
|
|
<template #header>
|
|
|
- <app-filter v-bind="{ selectList, buttonList }" :loading="loading" />
|
|
|
+ <app-filter v-bind="{ selectList, buttonList }" />
|
|
|
</template>
|
|
|
- <app-table :data="dataList" v-model:columns="columns" :loading="loading">
|
|
|
+ <app-table :data="dataList" v-model:columns="columns">
|
|
|
<!-- 操作 -->
|
|
|
<template #operate="{ row }">
|
|
|
<app-auth-operation :options="{ selectedRow: row }" @closed="getFavoriteList" />
|
|
|
@@ -23,5 +23,5 @@ import AppTable from '@pc/components/base/table/index.vue'
|
|
|
import AppPagination from '@pc/components/base/pagination/index.vue'
|
|
|
import AppFilter from '@pc/components/base/table-filter/index.vue'
|
|
|
|
|
|
-const { loading, dataList, columns, total, pageIndex, pageSize, selectList, buttonList, getFavoriteList } = useFavorite()
|
|
|
+const { dataList, columns, total, pageIndex, pageSize, selectList, buttonList, getFavoriteList } = useFavorite()
|
|
|
</script>
|