智慧教务系统 PHP-NiuCloud框架开发
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

234 lines
8.9 KiB

<template>
<div class="main-container">
<el-card class="box-card !border-none" shadow="never">
<div class="flex justify-between items-center">
<span class="text-lg">{{pageName}}</span>
<el-button type="primary" @click="addEvent">
{{ t('addArticles') }}
</el-button>
</div>
<el-card class="box-card !border-none my-[10px] table-search-wrap" shadow="never">
<el-form :inline="true" :model="articlesTable.searchParam" ref="searchFormRef">
<el-form-item :label="t('title')" prop="title">
<el-input v-model="articlesTable.searchParam.title" :placeholder="t('titlePlaceholder')" />
</el-form-item>
<el-form-item :label="t('content')" prop="content">
<el-input v-model="articlesTable.searchParam.content" :placeholder="t('contentPlaceholder')" />
</el-form-item>
<el-form-item :label="t('category')" prop="category">
<el-select class="w-[280px]" v-model="articlesTable.searchParam.category" clearable :placeholder="t('categoryPlaceholder')">
<el-option label="全部" value=""></el-option>
<el-option
v-for="(item, index) in categoryList"
:key="index"
:label="item.name"
:value="item.value"
/>
</el-select>
</el-form-item>
<el-form-item :label="t('publisherId')" prop="publisher_id">
<el-select class="w-[280px]" v-model="articlesTable.searchParam.publisher_id" clearable :placeholder="t('publisherIdPlaceholder')">
<el-option
v-for="(item, index) in publisherIdList"
:key="index"
:label="item['uid']"
:value="item['real_name']"
/>
</el-select>
</el-form-item>
<el-form-item :label="t('status')" prop="status">
<el-select class="w-[280px]" v-model="articlesTable.searchParam.status" clearable :placeholder="t('statusPlaceholder')">
<el-option label="全部" value=""></el-option>
<el-option
v-for="(item, index) in statusList"
:key="index"
:label="item.name"
:value="item.value"
/>
</el-select>
</el-form-item>
<el-form-item>
<el-button type="primary" @click="loadArticlesList()">{{ t('search') }}</el-button>
<el-button @click="resetForm(searchFormRef)">{{ t('reset') }}</el-button>
</el-form-item>
</el-form>
</el-card>
<div class="mt-[10px]">
<el-table :data="articlesTable.data" size="large" v-loading="articlesTable.loading">
<template #empty>
<span>{{ !articlesTable.loading ? t('emptyData') : '' }}</span>
</template>
<el-table-column prop="title" :label="t('title')" min-width="120" :show-overflow-tooltip="true"/>
<el-table-column :label="t('category')" min-width="180" align="center" :show-overflow-tooltip="true">
<template #default="{ row }">
<div v-for="(item, index) in categoryList">
<div v-if="item.value == row.category">{{ item.name }}</div>
</div>
</template>
</el-table-column>
<el-table-column prop="publisher_id_name" :label="t('publisherId')" min-width="120" :show-overflow-tooltip="true"/>
<el-table-column :label="t('status')" min-width="180" align="center" :show-overflow-tooltip="true">
<template #default="{ row }">
<div v-for="(item, index) in statusList">
<div v-if="item.value == row.status">{{ item.name }}</div>
</div>
</template>
</el-table-column>
<el-table-column :label="t('operation')" fixed="right" min-width="120">
<template #default="{ row }">
<el-button type="primary" link @click="editEvent(row)">{{ t('edit') }}</el-button>
<el-button type="primary" link @click="deleteEvent(row.id)">{{ t('delete') }}</el-button>
</template>
</el-table-column>
</el-table>
<div class="mt-[16px] flex justify-end">
<el-pagination v-model:current-page="articlesTable.page" v-model:page-size="articlesTable.limit"
layout="total, sizes, prev, pager, next, jumper" :total="articlesTable.total"
@size-change="loadArticlesList()" @current-change="loadArticlesList" />
</div>
</div>
</el-card>
</div>
</template>
<script lang="ts" setup>
import { reactive, ref, watch } from 'vue'
import { t } from '@/lang'
import { useDictionary } from '@/app/api/dict'
import { getArticlesList, deleteArticles, getWithSysUserList } from '@/addon/zhjw/api/articles'
import { img } from '@/utils/common'
import { ElMessageBox,FormInstance } from 'element-plus'
import { useRouter } from 'vue-router'
import { useRoute } from 'vue-router'
const route = useRoute()
const pageName = route.meta.title;
let articlesTable = reactive({
page: 1,
limit: 10,
total: 0,
loading: true,
data: [],
searchParam:{
"title":"",
"content":"",
"category":"",
"publisher_id":"",
"status":""
}
})
const searchFormRef = ref<FormInstance>()
// 选中数据
const selectData = ref<any[]>([])
// 字典数据
const categoryList = ref([] as any[])
const categoryDictList = async () => {
categoryList.value = await (await useDictionary('zhjw_article_category')).data.dictionary
}
categoryDictList();
const statusList = ref([] as any[])
const statusDictList = async () => {
statusList.value = await (await useDictionary('is_radio')).data.dictionary
}
statusDictList();
/**
* 获取文章管理列表
*/
const loadArticlesList = (page: number = 1) => {
articlesTable.loading = true
articlesTable.page = page
getArticlesList({
page: articlesTable.page,
limit: articlesTable.limit,
...articlesTable.searchParam
}).then(res => {
articlesTable.loading = false
articlesTable.data = res.data.data
articlesTable.total = res.data.total
}).catch(() => {
articlesTable.loading = false
})
}
loadArticlesList()
const router = useRouter()
/**
* 添加文章管理
*/
const addEvent = () => {
router.push('/articles/articles_edit')
}
/**
* 编辑文章管理
* @param data
*/
const editEvent = (data: any) => {
router.push('/articles/articles_edit?id='+data.id)
}
/**
* 删除文章管理
*/
const deleteEvent = (id: number) => {
ElMessageBox.confirm(t('articlesDeleteTips'), t('warning'),
{
confirmButtonText: t('confirm'),
cancelButtonText: t('cancel'),
type: 'warning',
}
).then(() => {
deleteArticles(id).then(() => {
loadArticlesList()
}).catch(() => {
})
})
}
const publisherIdList = ref([])
const setPublisherIdList = async () => {
publisherIdList.value = await (await getWithSysUserList({})).data
}
setPublisherIdList()
const resetForm = (formEl: FormInstance | undefined) => {
if (!formEl) return
formEl.resetFields()
loadArticlesList()
}
</script>
<style lang="scss" scoped>
/* 多行超出隐藏 */
.multi-hidden {
word-break: break-all;
text-overflow: ellipsis;
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 2; -webkit-box-orient: vertical; } </style>