admin模块接入数据库

This commit is contained in:
comlibmb
2026-02-13 17:29:50 +08:00
parent 56209b7a75
commit ec636dc703
58 changed files with 5586 additions and 1394 deletions

View File

@@ -3,20 +3,16 @@
<view class="content-body">
<!-- 顶部过滤栏 -->
<view class="filter-card border-shadow">
<view class="filter-item">
<text class="label-txt">是否显示:</text>
<view class="select-mock">
<text class="select-val">请选择</text>
<text class="arrow-down">▼</text>
</view>
</view>
<view class="filter-item">
<text class="label-txt">分类名称:</text>
<input class="search-input" placeholder="请输入分类名称" v-model="filterKeyword" />
<input class="search-input" placeholder="请输入分类名称" v-model="filterKeyword" @confirm="handleQuery" />
</view>
<view class="btn-query" @click="handleQuery">
<text class="query-txt">查询</text>
</view>
<view class="btn-reset" @click="handleReset">
<text class="reset-txt">重置</text>
</view>
</view>
<!-- 主要内容区域 -->
@@ -29,22 +25,31 @@
<!-- 数据表格 -->
<view class="table-header">
<view class="th col-id"><text class="th-txt">ID</text></view>
<view class="th col-id"><text class="th-txt">序号</text></view>
<view class="th col-name"><text class="th-txt">分类名称</text></view>
<view class="th col-img"><text class="th-txt">分类图</text></view>
<view class="th col-img"><text class="th-txt">分类图</text></view>
<view class="th col-sort"><text class="th-txt">排序</text></view>
<view class="th col-status"><text class="th-txt">状态</text></view>
<view class="th col-op"><text class="th-txt">操作</text></view>
</view>
<view class="table-body">
<view class="table-row" v-for="item in categoryList" :key="item.id">
<view class="td col-id"><text class="td-txt">{{ item.id }}</text></view>
<view v-if="loading" class="table-loading" style="padding: 40px; text-align: center;">
<text>加载中...</text>
</view>
<view v-else-if="categoryList.length === 0" class="table-empty" style="padding: 40px; text-align: center;">
<text>暂无分类数据</text>
</view>
<view v-else v-for="(item, index) in categoryList" :key="item.id" class="table-row">
<view class="td col-id"><text class="td-txt">{{ (page - 1) * pageSize + index + 1 }}</text></view>
<view class="td col-name"><text class="td-txt">{{ item.name }}</text></view>
<view class="td col-img">
<view class="img-box-placeholder"></view>
<image v-if="item.icon" :src="item.icon" mode="aspectFit" class="cate-icon"></image>
<view v-else class="img-placeholder"></view>
</view>
<view class="td col-sort"><text class="td-txt">{{ item.sort }}</text></view>
<view class="td col-status">
<view :class="['switch-mock', item.status ? 'active' : '']" @click="toggleStatus(item)">
<view :class="['switch-mock', item.status === 1 ? 'active' : '']" @click="toggleStatus(item)">
<view class="switch-handle"></view>
</view>
</view>
@@ -52,13 +57,21 @@
<view class="op-links">
<text class="link-txt" @click="handleEdit(item)">编辑</text>
<view class="divider"></view>
<text class="link-txt danger">删除</text>
<view class="divider"></view>
<text class="link-txt">查看文章</text>
<text class="link-txt danger" @click="handleDelete(item)">删除</text>
</view>
</view>
</view>
</view>
<!-- 分页 -->
<view class="pagination-bar">
<text class="page-total">共 {{ total }} 条</text>
<view class="page-nav">
<view class="nav-btn" :class="{ disabled: page <= 1 }" @click="prevPage"><text class="nav-icon"> < </text></view>
<view class="nav-item active"><text class="nav-num">{{ page }}</text></view>
<view class="nav-btn" :class="{ disabled: page >= totalPages }" @click="nextPage"><text class="nav-icon"> > </text></view>
</view>
</view>
</view>
</view>
@@ -66,21 +79,11 @@
<view v-if="showDrawer" :class="['drawer-mask', isClosing ? 'mask-fade-out' : '']" @click="closeDrawer">
<view :class="['drawer-content', isClosing ? 'slide-out' : '']" @click.stop="">
<view class="drawer-header">
<text class="drawer-title">添加分类</text>
<text class="drawer-title">{{ isEdit ? '编辑分类' : '添加分类' }}</text>
<text class="close-btn" @click="closeDrawer">×</text>
</view>
<scroll-view class="drawer-body" :scroll-y="true">
<view class="form-item row">
<view class="label-box"><text class="label-txt">上级分类:</text></view>
<view class="input-box">
<view class="select-mock">
<text class="select-val">顶级分类</text>
<text class="arrow-down">▼</text>
</view>
</view>
</view>
<view class="form-item row">
<view class="label-box"><text class="required">*</text><text class="label-txt">分类名称:</text></view>
<view class="input-box">
@@ -88,22 +91,6 @@
</view>
</view>
<view class="form-item row align-start">
<view class="label-box pt-10"><text class="required">*</text><text class="label-txt">分类简介:</text></view>
<view class="input-box">
<textarea class="textarea-mini" v-model="formDesc" placeholder="请输入分类简介" />
</view>
</view>
<view class="form-item row">
<view class="label-box"><text class="label-txt">分类图片:</text></view>
<view class="input-box">
<view class="upload-btn">
<view class="img-icon">🖼️</view>
</view>
</view>
</view>
<view class="form-item row">
<view class="label-box"><text class="label-txt">排序:</text></view>
<view class="input-box">
@@ -136,131 +123,253 @@
</template>
<script setup lang="uts">
import { ref } from 'vue'
import { ref, onMounted, computed } from 'vue'
import {
fetchArticleCategoryPage,
saveArticleCategory,
deleteArticleCategory,
setArticleCategoryStatus,
type ArticleCategory
} from '@/services/admin/cmsService.uts'
const filterKeyword = ref('')
const categoryList = ref([
{ id: '181', name: '购物心得', status: true },
{ id: '180', name: '消费文化', status: true },
{ id: '179', name: '品牌资讯', status: true }
])
const categoryList = ref<ArticleCategory[]>([])
const total = ref(0)
const page = ref(1)
const pageSize = ref(15)
const loading = ref(false)
const jumpPage = ref('')
const totalPages = computed((): number => {
if (pageSize.value <= 0) return 1
return Math.ceil(total.value / pageSize.value)
})
const showDrawer = ref(false)
const isClosing = ref(false)
const isEdit = ref(false)
const editingId = ref<string | null>(null)
const formName = ref('')
const formDesc = ref('')
const formSort = ref(0)
const formStatus = ref(true)
const formIcon = ref<string | null>(null)
const handleAdd = () => {
onMounted(() => {
loadData()
})
async function loadData() {
loading.value = true
try {
const res = await fetchArticleCategoryPage(page.value, pageSize.value, filterKeyword.value || null)
categoryList.value = res.items
total.value = res.total
} catch (e) {
uni.showToast({ title: '加载分类失败', icon: 'none' })
} finally {
loading.value = false
}
}
function handleQuery() {
page.value = 1
loadData()
}
function handleReset() {
filterKeyword.value = ''
page.value = 1
loadData()
}
function handleAdd() {
isEdit.value = false
editingId.value = null
formName.value = ''
formDesc.value = ''
formSort.value = 0
formStatus.value = true
formIcon.value = null
isClosing.value = false
showDrawer.value = true
}
const handleEdit = (item: any) => {
function handleEdit(item: ArticleCategory) {
isEdit.value = true
editingId.value = item.id
formName.value = item.name
// 模拟填充其他字段
formDesc.value = ''
formSort.value = 0
formStatus.value = item.status
formSort.value = item.sort
formStatus.value = item.status === 1
formIcon.value = item.icon
isClosing.value = false
showDrawer.value = true
}
const toggleStatus = (item: any) => {
item.status = !item.status
async function toggleStatus(item: ArticleCategory) {
const targetStatus = item.status === 1 ? 0 : 1
const ok = await setArticleCategoryStatus(item.id, targetStatus)
if (ok) {
item.status = targetStatus
uni.showToast({ title: '状态已更新' })
} else {
uni.showToast({ title: '操作失败', icon: 'none' })
}
}
const closeDrawer = () => {
async function handleDelete(item: ArticleCategory) {
uni.showModal({
title: '提示',
content: `确定要删除分类 "${item.name}" 吗?`,
success: async (res) => {
if (res.confirm) {
const ok = await deleteArticleCategory(item.id)
if (ok) {
uni.showToast({ title: '删除成功' })
loadData()
} else {
uni.showToast({ title: '删除失败', icon: 'none' })
}
}
}
})
}
function closeDrawer() {
isClosing.value = true
setTimeout(() => {
showDrawer.value = false
isClosing.value = false
}, 300)
}
const handleConfirm = () => { closeDrawer() }
const handleQuery = () => { console.log('Querying...') }
async function handleConfirm() {
if (!formName.value) {
uni.showToast({ title: '请输入分类名称', icon: 'none' })
return
}
try {
const resId = await saveArticleCategory(
editingId.value,
formName.value,
formIcon.value,
formSort.value,
formStatus.value ? 1 : 0
)
if (resId != null) {
uni.showToast({ title: '保存成功' })
closeDrawer()
loadData()
}
} catch (e) {
uni.showToast({ title: '保存失败', icon: 'none' })
}
}
function prevPage() {
if (page.value > 1) {
page.value--
loadData()
}
}
function nextPage() {
if (page.value < totalPages.value) {
page.value++
loadData()
}
}
function goToJumpPage() {
const target = parseInt(jumpPage.value)
if (!isNaN(target) && target >= 1 && target <= totalPages.value) {
page.value = target
loadData()
jumpPage.value = ''
} else {
uni.showToast({ title: '页码无效', icon: 'none' })
}
}
</script>
<style scoped lang="scss">
.admin-cms-category { padding: 20px; background-color: #f5f7fa; min-height: 100vh; }
.border-shadow { background-color: #fff; border-radius: 4px; box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.05); }
.filter-card { padding: 20px; display: flex; flex-direction: row; align-items: center; gap: 30px; margin-bottom: 20px; }
.filter-card { padding: 20px; display: flex; flex-direction: row; align-items: center; gap: 15px; margin-bottom: 20px; }
.filter-item { display: flex; flex-direction: row; align-items: center; }
.label-txt { font-size: 14px; color: #606266; margin-right: 12px; }
.select-mock { width: 220px; height: 38px; border: 1px solid #dcdfe6; border-radius: 4px; display: flex; flex-direction: row; align-items: center; justify-content: space-between; padding: 0 15px; }
.select-val { font-size: 13px; color: #c0c4cc; }
.arrow-down { font-size: 10px; color: #999; }
.search-input { width: 220px; height: 38px; border: 1px solid #dcdfe6; border-radius: 4px; padding: 0 15px; font-size: 13px; }
.btn-query { width: 76px; height: 34px; background-color: #2d8cf0; border-radius: 4px; display: flex; align-items: center; justify-content: center; }
.btn-query { padding: 0 20px; height: 34px; background-color: #2d8cf0; border-radius: 4px; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.btn-reset { padding: 0 20px; height: 34px; background-color: #fff; border: 1px solid #dcdfe6; border-radius: 4px; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.query-txt { color: #fff; font-size: 14px; }
.reset-txt { color: #606266; font-size: 14px; }
.table-card { display: flex; flex-direction: column; }
.card-header { padding: 20px; }
.btn-primary { width: 140px; height: 36px; background-color: #2d8cf0; border-radius: 4px; display: flex; align-items: center; justify-content: center; }
.btn-primary { width: 140px; height: 36px; background-color: #2d8cf0; border-radius: 4px; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.btn-txt { color: #fff; font-size: 13px; }
.table-header { height: 50px; background-color: #eaf2ff; display: flex; flex-direction: row; align-items: center; }
.th { padding: 0 15px; }
.th-txt { font-size: 13px; color: #606266; font-weight: bold; }
.table-row { height: 60px; display: flex; flex-direction: row; align-items: center; border-bottom: 1px solid #f0f0f0; }
.td { padding: 0 15px; }
.td-txt { font-size: 13px; color: #606266; }
.col-id { width: 80px; justify-content: center; }
.col-name { flex: 1; justify-content: flex-start; }
.col-img { flex: 1; justify-content: center; }
.col-img { width: 120px; justify-content: center; }
.col-sort { width: 100px; justify-content: center; }
.col-status { width: 120px; justify-content: center; }
.col-op { width: 220px; justify-content: center; }
.img-box-placeholder { width: 40px; height: 40px; background-color: #f5f7fa; border-radius: 4px; }
.switch-mock { width: 40px; height: 20px; background-color: #dcdfe6; border-radius: 10px; position: relative; transition: all 0.3s; }
.col-op { width: 180px; justify-content: center; }
.cate-icon { width: 40px; height: 40px; border-radius: 4px; background-color: #f5f7fa; }
.img-placeholder { width: 40px; height: 40px; background-color: #f5f7fa; border-radius: 4px; }
.switch-mock { width: 40px; height: 20px; background-color: #dcdfe6; border-radius: 10px; position: relative; transition: all 0.3s; cursor: pointer; }
.switch-mock.active { background-color: #2d8cf0; }
.switch-handle { width: 16px; height: 16px; background-color: #fff; border-radius: 8px; position: absolute; top: 2px; left: 2px; transition: all 0.3s; }
.active .switch-handle { left: 22px; }
.op-links { display: flex; flex-direction: row; align-items: center; }
.link-txt { font-size: 13px; color: #2d8cf0; cursor: pointer; }
.danger { color: #ed4014; }
.divider { width: 1px; height: 12px; background-color: #e8eaec; margin: 0 10px; }
.drawer-mask { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background-color: rgba(0, 0, 0, 0.4); z-index: 2000; transition: opacity 0.3s; }
.mask-fade-out { opacity: 0; }
.drawer-content { position: absolute; top: 0; right: 0; width: 50%; height: 100%; background-color: #fff; display: flex; flex-direction: column; box-shadow: -2px 0 12px rgba(0, 0, 0, 0.2); animation: slideIn 0.3s ease; }
.slide-out { animation: slideOut 0.3s ease forwards; }
.pagination-bar { padding: 20px; display: flex; flex-direction: row; align-items: center; justify-content: flex-end; }
.page-total { font-size: 13px; color: #606266; margin-right: 15px; }
.page-nav { display: flex; flex-direction: row; align-items: center; }
.nav-btn { width: 30px; height: 30px; border: 1px solid #dcdee2; display: flex; align-items: center; justify-content: center; border-radius: 4px; margin: 0 4px; cursor: pointer; }
.nav-item { width: 30px; height: 30px; border: 1px solid #dcdee2; display: flex; align-items: center; justify-content: center; border-radius: 4px; margin: 0 4px; }
.nav-item.active { background-color: #2d8cf0; border-color: #2d8cf0; }
.nav-item.active .nav-num { color: #fff; }
.nav-num, .nav-icon { font-size: 13px; color: #606266; }
.disabled { opacity: 0.5; cursor: not-allowed; }
.drawer-mask { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background-color: rgba(0, 0, 0, 0.4); z-index: 2000; }
.drawer-content { position: absolute; top: 0; right: 0; width: 450px; height: 100%; background-color: #fff; display: flex; flex-direction: column; box-shadow: -2px 0 12px rgba(0, 0, 0, 0.2); animation: slideIn 0.3s ease; }
@keyframes slideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }
.slide-out { animation: slideOut 0.3s ease forwards; }
@keyframes slideOut { from { transform: translateX(0); } to { transform: translateX(100%); } }
.drawer-header { height: 60px; padding: 0 24px; border-bottom: 1px solid #f0f0f0; display: flex; flex-direction: row; justify-content: space-between; align-items: center; }
.drawer-title { font-size: 16px; font-weight: bold; color: #333; }
.close-btn { font-size: 24px; color: #999; cursor: pointer; padding: 5px; }
.close-btn { font-size: 24px; color: #999; cursor: pointer; }
.drawer-body { flex: 1; padding: 24px 30px; }
.form-item { margin-bottom: 24px; display: flex; flex-direction: row; align-items: center; }
.label-box { width: 120px; display: flex; justify-content: flex-end; align-items: center; margin-right: 20px; flex-shrink: 0; }
.label-box { width: 100px; display: flex; justify-content: flex-end; align-items: center; margin-right: 20px; flex-shrink: 0; }
.required { color: #ed4014; margin-right: 4px; }
.label-txt { font-size: 14px; color: #606266; text-align: right; }
.label-txt { font-size: 14px; color: #606266; }
.input-box { flex: 1; }
.input-base { width: 100%; height: 38px; border: 1px solid #dcdee2; border-radius: 4px; padding: 0 12px; font-size: 14px; }
.textarea-mini { width: 100%; height: 80px; border: 1px solid #dcdee2; border-radius: 4px; padding: 10px 12px; font-size: 14px; }
.upload-btn {
width: 70px;
height: 70px;
border: 1px solid #dcdee2;
border-radius: 4px;
display: flex;
align-items: center;
justify-content: center;
}
.img-icon { font-size: 30px; color: #ccc; }
.radio-group { display: flex; flex-direction: row; gap: 30px; }
.radio-item { display: flex; flex-direction: row; align-items: center; cursor: pointer; }
.radio-circle { width: 16px; height: 16px; border: 1px solid #dcdee2; border-radius: 50%; margin-right: 8px; display: flex; align-items: center; justify-content: center; }
.radio-circle.checked { border-color: #2d8cf0; }
.radio-in { width: 8px; height: 8px; background-color: #2d8cf0; border-radius: 50%; }
.radio-la { font-size: 14px; color: #606266; }
.drawer-footer { height: 60px; border-top: 1px solid #f0f0f0; display: flex; flex-direction: row; justify-content: flex-end; align-items: center; padding: 0 24px; }
.btn-cancel { padding: 8px 20px; border: 1px solid #dcdee2; border-radius: 4px; margin-right: 15px; }
.btn-confirm { padding: 8px 20px; background-color: #2d8cf0; border-radius: 4px; }
.btn-cancel { padding: 8px 20px; border: 1px solid #dcdee2; border-radius: 4px; margin-right: 15px; cursor: pointer; }
.btn-confirm { padding: 8px 20px; background-color: #2d8cf0; border-radius: 4px; cursor: pointer; }
.cancel-txt { font-size: 14px; color: #606266; }
.confirm-txt { font-size: 14px; color: #fff; }
</style>