From dbd9a06ee1c6bda4161dc5772a56d28f805c638e Mon Sep 17 00:00:00 2001 From: qiuyuan Date: Wed, 6 Aug 2025 19:57:26 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pages/mettingMgt/mettingYuYue/index.vue | 42 +++++++++++++++---- 1 file changed, 34 insertions(+), 8 deletions(-) diff --git a/src/views/pages/mettingMgt/mettingYuYue/index.vue b/src/views/pages/mettingMgt/mettingYuYue/index.vue index 0cf7324..ae05606 100644 --- a/src/views/pages/mettingMgt/mettingYuYue/index.vue +++ b/src/views/pages/mettingMgt/mettingYuYue/index.vue @@ -9,11 +9,24 @@ {{ dayjs(record.startAt).format('YYYY-MM-DD HH:mm:ss') + ' - ' + dayjs(record.endAt).format('YYYY-MM-DD HH:mm:ss')}} + + + @@ -43,7 +56,7 @@ import apis from '@/apis' import { config } from '@/config' import { usePagination } from '@/hooks' import EditDialog from './components/EditDialog.vue' -import { PlusOutlined, EditOutlined, DeleteOutlined } from '@ant-design/icons-vue' +import { PlusOutlined, EditOutlined, DownloadOutlined } from '@ant-design/icons-vue' import { useI18n } from 'vue-i18n' import { orderStatus } from '@/enums/index.js' import { status } from 'nprogress' @@ -53,12 +66,25 @@ defineOptions({ }) const { t } = useI18n() // 解构出t方法 const columns = [ - { title: '用户', dataIndex: 'concatName' }, - { title: '手机号', dataIndex: 'concatPhone' }, - { title: '会客厅', dataIndex: 'roomName' }, - { title: '时间段', dataIndex: 'startAt', width: 300, align: 'center' }, + { title: '负责人', dataIndex: 'concatName' }, + { title: '负责人手机号', dataIndex: 'concatPhone' }, + { title: '申请类型', dataIndex: 'roomType' }, + { title: '申请主题', dataIndex: 'applyTheme' }, + { title: '申请人', dataIndex: 'userName' }, + { title: '申请人手机号', dataIndex: 'userPhone' }, + { title: '申请人身份证', dataIndex: 'userCardId', width: 120 }, + { title: '申请人地址', dataIndex: 'userAddress' }, + { title: '公司名字', dataIndex: 'companyName' }, + { title: '申请理由', dataIndex: 'reason' }, + { title: '场次', dataIndex: 'counter' }, + { title: '人数', dataIndex: 'num' }, + { title: '开始时间', dataIndex: 'startTime' }, + { title: '结束时间', dataIndex: 'endTime' }, + { title: '申请签名', dataIndex: 'applySign' }, { title: '备注', dataIndex: 'remark' }, - { title: t('button.action'), key: 'action', fixed: 'right', width: 100, align: 'center' }, + { title: '回执申请报表', dataIndex: 'rebackApplyPdf' }, + { title: '回执承诺报表', dataIndex: 'rebackCovenantPdf' }, + // { title: t('button.action'), key: 'action', fixed: 'right', width: 100, align: 'center' }, ] const { listData, loading, showLoading, hideLoading, paginationState, resetPagination, searchFormData } = usePagination() const remark = ref('')