From dc081ce01206e891366bd5533f093e9cd0eb436d Mon Sep 17 00:00:00 2001 From: 18631081161 <2088094923@qq.com> Date: Thu, 29 Jan 2026 17:00:01 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=A1=E6=A0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- admin/src/components/StatusTag/index.vue | 5 +++-- admin/src/views/profile/audit.vue | 14 +++++++------- miniapp/config/index.js | 2 +- 3 files changed, 11 insertions(+), 10 deletions(-) diff --git a/admin/src/components/StatusTag/index.vue b/admin/src/components/StatusTag/index.vue index 7daa655..25142ab 100644 --- a/admin/src/components/StatusTag/index.vue +++ b/admin/src/components/StatusTag/index.vue @@ -69,9 +69,10 @@ const presetOptions: Record = { ], // 审核状态 audit: [ - { value: 0, label: '待审核', type: 'warning' }, + { value: 0, label: '未提交', type: 'info' }, { value: 1, label: '已通过', type: 'success' }, - { value: 2, label: '已拒绝', type: 'danger' } + { value: 2, label: '审核中', type: 'warning' }, + { value: 3, label: '已拒绝', type: 'danger' } ], // 举报状态 report: [ diff --git a/admin/src/views/profile/audit.vue b/admin/src/views/profile/audit.vue index 1e18ab4..7802cd2 100644 --- a/admin/src/views/profile/audit.vue +++ b/admin/src/views/profile/audit.vue @@ -29,7 +29,7 @@ const detailLoading = ref(false) // 搜索表单数据 const searchForm = reactive>({ keyword: '', - auditStatus: 0, // 默认查询待审核 + auditStatus: 2, // 默认查询审核中 gender: undefined, submitStartTime: undefined, submitEndTime: undefined @@ -59,9 +59,9 @@ const rejectFormRef = ref() // 审核状态选项 const auditStatusOptions = [ - { label: '待审核', value: 0 }, + { label: '审核中', value: 2 }, { label: '已通过', value: 1 }, - { label: '已拒绝', value: 2 } + { label: '已拒绝', value: 3 } ] // 性别选项 @@ -369,7 +369,7 @@ onMounted(() => { > 详情 -