111 lines
3.8 KiB
Vue
111 lines
3.8 KiB
Vue
|
|
<template>
|
||
|
|
<div>
|
||
|
|
<el-card class="!border-none" shadow="never">
|
||
|
|
<el-alert
|
||
|
|
type="warning"
|
||
|
|
title="温馨提示:用于管理网站的分类,只可添加到一级"
|
||
|
|
:closable="false"
|
||
|
|
show-icon
|
||
|
|
/>
|
||
|
|
</el-card>
|
||
|
|
<el-card class="!border-none mt-4" shadow="never" v-loading="pager.loading">
|
||
|
|
<div>
|
||
|
|
<el-button
|
||
|
|
class="mb-4"
|
||
|
|
v-perms="['article:cate:add']"
|
||
|
|
type="primary"
|
||
|
|
@click="handleAdd()"
|
||
|
|
>
|
||
|
|
<template #icon>
|
||
|
|
<icon name="el-icon-Plus" />
|
||
|
|
</template>
|
||
|
|
新增
|
||
|
|
</el-button>
|
||
|
|
</div>
|
||
|
|
<el-table size="large" :data="pager.lists">
|
||
|
|
<el-table-column label="栏目名称" prop="name" min-width="120" />
|
||
|
|
<el-table-column label="文章数" prop="number" min-width="120" />
|
||
|
|
<el-table-column label="状态" min-width="120">
|
||
|
|
<template #default="{ row }">
|
||
|
|
<el-switch
|
||
|
|
v-perms="['article:cate:change']"
|
||
|
|
v-model="row.isShow"
|
||
|
|
:active-value="0"
|
||
|
|
:inactive-value="1"
|
||
|
|
@change="changeStatus(row.id)"
|
||
|
|
/>
|
||
|
|
</template>
|
||
|
|
</el-table-column>
|
||
|
|
<el-table-column label="排序" prop="sort" min-width="120" />
|
||
|
|
<el-table-column label="操作" width="120" fixed="right">
|
||
|
|
<template #default="{ row }">
|
||
|
|
<el-button
|
||
|
|
v-perms="['article:cate:edit']"
|
||
|
|
type="primary"
|
||
|
|
link
|
||
|
|
@click="handleEdit(row)"
|
||
|
|
>
|
||
|
|
编辑
|
||
|
|
</el-button>
|
||
|
|
<el-button
|
||
|
|
v-perms="['article:cate:del']"
|
||
|
|
type="danger"
|
||
|
|
link
|
||
|
|
@click="handleDelete(row.id)"
|
||
|
|
>
|
||
|
|
删除
|
||
|
|
</el-button>
|
||
|
|
</template>
|
||
|
|
</el-table-column>
|
||
|
|
</el-table>
|
||
|
|
<div class="flex justify-end mt-4">
|
||
|
|
<pagination v-model="pager" @change="getLists" />
|
||
|
|
</div>
|
||
|
|
</el-card>
|
||
|
|
<edit-popup v-if="showEdit" ref="editRef" @success="getLists" @close="showEdit = false" />
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
<script lang="ts" setup>
|
||
|
|
import { articleCateDelete, articleCateLists, articleCateStatus } from '@/api/article'
|
||
|
|
import { usePaging } from '@/hooks/usePaging'
|
||
|
|
import feedback from '@/utils/feedback'
|
||
|
|
import EditPopup from './edit.vue'
|
||
|
|
const editRef = shallowRef<InstanceType<typeof EditPopup>>()
|
||
|
|
const showEdit = ref(false)
|
||
|
|
|
||
|
|
const { pager, getLists } = usePaging({
|
||
|
|
fetchFun: articleCateLists
|
||
|
|
})
|
||
|
|
const handleAdd = async () => {
|
||
|
|
showEdit.value = true
|
||
|
|
await nextTick()
|
||
|
|
editRef.value?.open('add')
|
||
|
|
}
|
||
|
|
|
||
|
|
const handleEdit = async (data: any) => {
|
||
|
|
showEdit.value = true
|
||
|
|
await nextTick()
|
||
|
|
editRef.value?.open('edit')
|
||
|
|
editRef.value?.getDetail(data)
|
||
|
|
}
|
||
|
|
|
||
|
|
const handleDelete = async (id: number) => {
|
||
|
|
await feedback.confirm('确定要删除?')
|
||
|
|
await articleCateDelete({ id })
|
||
|
|
feedback.msgSuccess('删除成功')
|
||
|
|
getLists()
|
||
|
|
}
|
||
|
|
|
||
|
|
const changeStatus = async (id: number) => {
|
||
|
|
try {
|
||
|
|
await articleCateStatus({ id })
|
||
|
|
feedback.msgSuccess('修改成功')
|
||
|
|
getLists()
|
||
|
|
} catch (error) {
|
||
|
|
getLists()
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
getLists()
|
||
|
|
</script>
|