diff --git a/src/views/system/user/pending/index.vue b/src/views/system/user/pending/index.vue index 27f43b1..c58392c 100644 --- a/src/views/system/user/pending/index.vue +++ b/src/views/system/user/pending/index.vue @@ -25,18 +25,18 @@ 批量审核 - - - 批量删除 - + + + + + + + + + + + + {{ record.nickname }} - @@ -150,7 +139,7 @@ style="margin-bottom: 16px; padding: 12px; background: #f5f5f5; border-radius: 4px;" >

- 店名:{{ currentAuditUser.storeName || '-' }} + 店名:{{ currentAuditUser.shopName || '-' }}

姓名:{{ currentAuditUser.realName || currentAuditUser.nickname || '-' }} @@ -336,19 +325,6 @@ const columns = ref([ key: 'region', showSorterTooltip: false }, - { - title: '邮箱', - dataIndex: 'email', - align: 'center', - hideInTable: true, - showSorterTooltip: false - }, - { - title: '证件号码', - dataIndex: 'idCard', - align: 'center', - hideInTable: true - }, { title: '出生日期', dataIndex: 'birthday', @@ -373,15 +349,11 @@ const columns = ref([ title: '审核状态', dataIndex: 'auditStatus', key: 'auditStatus', - align: 'center', width: 100 }, { title: '注册时间', dataIndex: 'createTime', - sorter: true, - showSorterTooltip: false, - ellipsis: true, customRender: ({ text }) => toDateString(text, 'yyyy-MM-dd HH:mm:ss') }, { @@ -403,8 +375,7 @@ const defaultWhere = reactive({ const datasource: DatasourceFunction = ({ page, limit, where, orders }) => { const params = { ...where, - keywords: searchText.value, - auditPending: true + keywords: searchText.value }; return pageUsers({ page, limit, ...params, ...orders }); };