diff --git a/src/views/Logistics/UserManagement/index.vue b/src/views/Logistics/UserManagement/index.vue index ab75c8f..6e10a16 100644 --- a/src/views/Logistics/UserManagement/index.vue +++ b/src/views/Logistics/UserManagement/index.vue @@ -129,6 +129,7 @@ const statusMap = { '0': '已生效', '1': '已停用', '2': '待审核', + '3': '已驳回', } const dialogShow = ref(false); // 新增账户弹窗显示状态 @@ -293,6 +294,7 @@ const getStatusTagType = (status) => { if (status === '0') return 'success' if (status === '1') return 'info' if (status === '2') return 'primary' + if (status === '3') return 'danger' return 'info' } diff --git a/src/views/Logistics/UserReview/index.vue b/src/views/Logistics/UserReview/index.vue index 7c51433..fc499d1 100644 --- a/src/views/Logistics/UserReview/index.vue +++ b/src/views/Logistics/UserReview/index.vue @@ -3,11 +3,11 @@
- - + + - @@ -38,7 +38,7 @@ @@ -50,22 +50,42 @@ @current-change="handleCurrentChange" />
+ + + + + + 通过 + 驳回 + + + + + + + + diff --git a/src/views/Proprietor/TicketIssueAudit/index.vue b/src/views/Proprietor/TicketIssueAudit/index.vue index 70b21c8..8ae3aad 100644 --- a/src/views/Proprietor/TicketIssueAudit/index.vue +++ b/src/views/Proprietor/TicketIssueAudit/index.vue @@ -110,7 +110,7 @@ const dialogShow = ref(false); // 弹窗显示状态 // 表格数据 const tableData = ref([]); const pageNum = ref(1); // 当前页码 -const pageSize = ref(5); // 每页显示条数 +const pageSize = ref(10); // 每页显示条数 const total = ref(20); // 总记录数