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(() => { > 详情 -