207 lines
8.4 KiB
Plaintext
207 lines
8.4 KiB
Plaintext
<template>
|
|
<view class="admin-page">
|
|
<view class="filter-card">
|
|
<view class="filter-row">
|
|
<view class="filter-item">
|
|
<text class="label">搜索:</text>
|
|
<input class="filter-input" placeholder="请输入姓名、UID" />
|
|
</view>
|
|
<view class="filter-btns">
|
|
<button class="btn primary" @click="onSearch">查询</button>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="content-card">
|
|
<view class="tabs-row">
|
|
<view v-for="(tab, index) in tabs" :key="index" class="tab-item" :class="{ active: activeTab === index }" @click="activeTab = index">
|
|
<text>{{ tab }}</text>
|
|
</view>
|
|
</view>
|
|
<view class="table-container">
|
|
<!-- Loading 遮罩 -->
|
|
<view v-if="isLoading" class="loading-mask">
|
|
<text class="loading-text">加载中...</text>
|
|
</view>
|
|
|
|
<view class="table-header">
|
|
<view class="col col-uid"><text>用户UID</text></view>
|
|
<view class="col col-name"><text>代理商名称</text></view>
|
|
<view class="col col-phone"><text>代理商电话</text></view>
|
|
<view class="col col-dept"><text>事业部名称</text></view>
|
|
<view class="col col-img"><text>申请图片</text></view>
|
|
<view class="col col-time"><text>申请时间</text></view>
|
|
<view class="col col-status"><text>申请状态</text></view>
|
|
<view class="col col-code"><text>邀请码</text></view>
|
|
<view class="col col-ops"><text>操作</text></view>
|
|
</view>
|
|
<view class="table-body">
|
|
<view v-if="applyList.length === 0 && !isLoading" class="empty-row">
|
|
<text>暂无申请记录</text>
|
|
</view>
|
|
<view v-for="item in applyList" :key="item.id" class="table-row">
|
|
<view class="col col-uid"><text class="td-txt-small">{{ item.uid }}</text></view>
|
|
<view class="col col-name"><text>{{ item.name }}</text></view>
|
|
<view class="col col-phone"><text>{{ item.phone }}</text></view>
|
|
<view class="col col-dept"><text>{{ item.division_name || '-' }}</text></view>
|
|
<view class="col col-img">
|
|
<image class="table-img" :src="item.images[0] || '/static/logo.png'" mode="aspectFill" />
|
|
</view>
|
|
<view class="col col-time"><text class="td-txt-small">{{ formatTime(item.created_at) }}</text></view>
|
|
<view class="col col-status">
|
|
<view class="status-tag"><text>{{ getStatusLabel(item.status) }}</text></view>
|
|
</view>
|
|
<view class="col col-code"><view class="code-box"><text>{{ item.invite_code || '-' }}</text></view></view>
|
|
<view class="col col-ops">
|
|
<template v-if="item.status === 1">
|
|
<text class="op-link" @click="handleAudit(item, 2)">同意</text>
|
|
<text class="op-divider">|</text>
|
|
<text class="op-link" @click="handleAudit(item, 3)">拒绝</text>
|
|
<text class="op-divider">|</text>
|
|
</template>
|
|
<text class="op-link danger" @click="onDelete(item.id)">删除</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="pagination" style="padding: 16px 24px;">
|
|
<view class="pager-btns">
|
|
<button class="btn small" :disabled="page <= 1" @click="onPrevPage">上一页</button>
|
|
<text class="page-num">第 {{ page }} 页</text>
|
|
<button class="btn small" :disabled="applyList.length < pageSize" @click="onNextPage">下一页</button>
|
|
</view>
|
|
<text class="page-info">共 {{ total }} 条记录</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
<script setup lang="uts">
|
|
import { ref, onMounted, watch } from 'vue'
|
|
import { fetchApplications, auditApplication, DistributionApplication } from '@/services/admin/distributionService.uts'
|
|
|
|
const activeTab = ref(0)
|
|
const tabs = ['全部', '申请中', '已同意', '已拒绝']
|
|
const statusMap = [0, 1, 2, 3] // 映射到接口状态: 0:全部, 1:待审核, 2:已同意, 3:已拒绝
|
|
|
|
const applyList = ref<DistributionApplication[]>([])
|
|
const isLoading = ref(false)
|
|
const searchQuery = ref('')
|
|
const total = ref(0)
|
|
const page = ref(1)
|
|
const pageSize = 20
|
|
|
|
onMounted(() => {
|
|
loadData()
|
|
})
|
|
|
|
watch(activeTab, () => {
|
|
page.value = 1
|
|
loadData()
|
|
})
|
|
|
|
async function loadData() {
|
|
isLoading.value = true
|
|
try {
|
|
const res = await fetchApplications({
|
|
search: searchQuery.value,
|
|
status: statusMap[activeTab.value],
|
|
page: page.value,
|
|
pageSize: pageSize
|
|
})
|
|
applyList.value = res.items
|
|
total.value = res.total
|
|
} catch (e) {
|
|
uni.showToast({ title: '加载失败', icon: 'none' })
|
|
} finally {
|
|
isLoading.value = false
|
|
}
|
|
}
|
|
|
|
function onSearch() {
|
|
page.value = 1
|
|
loadData()
|
|
}
|
|
|
|
async function handleAudit(item : DistributionApplication, status : number) {
|
|
if (item.id == null) return
|
|
const actionText = status === 2 ? '同意' : '拒绝'
|
|
uni.showModal({
|
|
title: '确认操作',
|
|
content: `确定要${actionText}该申请吗?`,
|
|
success: async (res) => {
|
|
if (res.confirm) {
|
|
const success = await auditApplication(item.id!, status)
|
|
if (success) {
|
|
uni.showToast({ title: '操作成功', icon: 'success' })
|
|
loadData()
|
|
}
|
|
}
|
|
}
|
|
})
|
|
}
|
|
|
|
async function onDelete(id : string | undefined) {
|
|
if (id == null) return
|
|
uni.showModal({
|
|
title: '确认删除',
|
|
content: '确定要删除该申请记录吗?',
|
|
success: async (res) => {
|
|
if (res.confirm) {
|
|
// 暂用审核接口或补充删除接口,此处示例为提示
|
|
uni.showToast({ title: '删除功能开发中', icon: 'none' })
|
|
}
|
|
}
|
|
})
|
|
}
|
|
|
|
function onPrevPage() {
|
|
if (page.value > 1) {
|
|
page.value--
|
|
loadData()
|
|
}
|
|
}
|
|
|
|
function onNextPage() {
|
|
if (applyList.value.length >= pageSize) {
|
|
page.value++
|
|
loadData()
|
|
}
|
|
}
|
|
|
|
function formatTime(iso : string | null | undefined) : string {
|
|
if (iso == null) return '-'
|
|
return iso.substring(0, 16).replace('T', ' ')
|
|
}
|
|
|
|
function getStatusLabel(status : number) : string {
|
|
switch (status) {
|
|
case 1: return '申请中'
|
|
case 2: return '已同意'
|
|
case 3: return '已拒绝'
|
|
default: return '未知'
|
|
}
|
|
}
|
|
</script>
|
|
<style scoped lang="scss">
|
|
.admin-page { padding: 0; }
|
|
.filter-card { background: #fff; padding: 24px; margin-bottom: 16px; border-radius: 4px; }
|
|
.filter-row { display: flex; flex-direction: row; align-items: center; gap: 24px; }
|
|
.label { font-size: 14px; color: #333; }
|
|
.filter-input { border: 1px solid #d9d9d9; height: 32px; width: 220px; padding: 0 12px; font-size: 14px; }
|
|
.btn { height: 32px; padding: 0 16px; font-size: 14px; border: 1px solid #d9d9d9; background: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; }
|
|
.btn.primary { background: #1890ff; border-color: #1890ff; color: #fff; }
|
|
.content-card { background: #fff; border-radius: 4px; }
|
|
.tabs-row { display: flex; flex-direction: row; padding: 0 24px; border-bottom: 1px solid #f0f0f0; }
|
|
.tab-item { padding: 16px 20px; cursor: pointer; position: relative; text { font-size: 15px; color: #666; } &.active { text { color: #1890ff; font-weight: 500; } &::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: #1890ff; } } }
|
|
.table-container { padding: 24px; }
|
|
.table-header { display: flex; flex-direction: row; background: #f8faff; border-bottom: 1px solid #f0f0f0; padding: 12px 0; }
|
|
.table-row { display: flex; flex-direction: row; border-bottom: 1px solid #f0f0f0; padding: 12px 0; align-items: center; &:hover { background: #fafafa; } }
|
|
.col { padding: 0 8px; font-size: 14px; color: #333; display: flex; align-items: center; }
|
|
.col-uid { width: 80px; } .col-name { width: 120px; } .col-phone { width: 120px; } .col-dept { width: 120px; } .col-img { width: 80px; justify-content: center; } .col-time { width: 160px; justify-content: center; } .col-status { width: 100px; justify-content: center; } .col-code { width: 100px; justify-content: center; } .col-ops { flex: 1; justify-content: flex-end; }
|
|
.table-img { width: 32px; height: 32px; border-radius: 2px; }
|
|
.status-tag { border: 1px solid #1890ff; color: #1890ff; padding: 2px 8px; border-radius: 4px; font-size: 12px; }
|
|
.code-box { border: 1px solid #d9d9d9; padding: 2px 8px; border-radius: 4px; font-size: 12px; background: #fafafa; }
|
|
.op-link { color: #1890ff; cursor: pointer; }
|
|
.op-divider { color: #e8e8e8; margin: 0 8px; }
|
|
</style>
|
|
</style> |