From 2700ab0406da708b10127e5a146bb71faea15b11 Mon Sep 17 00:00:00 2001 From: fengchenchen Date: Sun, 9 Jul 2023 16:08:21 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90update=E3=80=91-=E9=97=AB=E5=B7=A5?= =?UTF-8?q?=E6=8F=90=E5=87=BA=E6=9C=80=E6=96=B0=E9=9C=80=E6=B1=82=E7=9A=84?= =?UTF-8?q?=E6=B5=8B=E8=AF=95=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../incomePayments/meetManage/Attendance.vue | 4 + .../modules/UploadMeetFileModal.vue | 73 +++++++++++++------ .../WorkingGroupMemberUnitMaintenance.vue | 19 +++-- 3 files changed, 66 insertions(+), 30 deletions(-) diff --git a/src/views/incomePayments/meetManage/Attendance.vue b/src/views/incomePayments/meetManage/Attendance.vue index 5091d42..8406187 100644 --- a/src/views/incomePayments/meetManage/Attendance.vue +++ b/src/views/incomePayments/meetManage/Attendance.vue @@ -236,6 +236,9 @@ 批量删除 + + 批量设置资料状态 + @@ -310,6 +313,7 @@ 编辑 删除 + 资料状态 diff --git a/src/views/incomePayments/meetManage/modules/UploadMeetFileModal.vue b/src/views/incomePayments/meetManage/modules/UploadMeetFileModal.vue index ac1be89..c20b553 100644 --- a/src/views/incomePayments/meetManage/modules/UploadMeetFileModal.vue +++ b/src/views/incomePayments/meetManage/modules/UploadMeetFileModal.vue @@ -8,26 +8,28 @@ @cancel="handleCancel" cancelText="关闭"> - - - - - - - - - - - - - - +
+ 新增 + + 批量删除 + +
+ + + 下载 + 查看 + 删除 + +
@@ -38,6 +40,28 @@ import JUpload from '@comp/jero/JUpload' import {httpAction} from '@api/manage' import EmailErrorMsgModal from '@views/projectManagement/modules/EmailErrorMsgModal' +const columns = [ + { + title: '文件名', + align: 'center', + dataIndex: 'name', + width: 200 + }, + { + title: '上传人', + align: 'center', + dataIndex: 'createTime', + width: 100 + }, + { + title: '操作', + align: 'center', + dataIndex: '', + scopedSlots: {customRender: 'action'}, + width: 100 + } +] + export default { name: 'UploadMeetFileModal', components: { @@ -47,7 +71,7 @@ export default { data() { return { title: '上传文件', - width: 400, + width: 1000, visible: false, confirmLoading: false, form: this.$form.createForm(this), @@ -66,7 +90,9 @@ export default { // 已经上传的会议文件 meetingFileIds: '', validatorRules: {}, - url: {} + url: {}, + columns, + fileList: [{}] } }, methods: { @@ -204,6 +230,7 @@ export default { } - diff --git a/src/views/projectManagement/WorkingGroupMemberUnitMaintenance.vue b/src/views/projectManagement/WorkingGroupMemberUnitMaintenance.vue index 0330323..50c1efe 100644 --- a/src/views/projectManagement/WorkingGroupMemberUnitMaintenance.vue +++ b/src/views/projectManagement/WorkingGroupMemberUnitMaintenance.vue @@ -288,13 +288,6 @@ export default { width: 120, dataIndex: 'contactsTemporaryNameOne', scopedSlots: { customRender: 'text' } - }, { - // 2021-10-22需求变更新加 - title: '收费通知号', - align: 'center', - width: 280, - dataIndex: 'chargeNoticeNo', - scopedSlots: { customRender: 'text' } }, { title: '应收金额', align: 'center', @@ -311,33 +304,45 @@ export default { customRender: (text, record) => ( ) + }, { + // 2021-10-22需求变更新加 + title: '收费通知号', + align: 'center', + width: 280, + dataIndex: 'chargeNoticeNo', + scopedSlots: { customRender: 'text' } }, { title: '打包', align: 'center', + fixed: 'right', width: 80, dataIndex: 'pack', scopedSlots: { customRender: 'status-pack' } }, { title: '需要发票', align: 'center', + fixed: 'right', width: 80, dataIndex: 'needInvoice', scopedSlots: { customRender: 'status-pack' } }, { title: '到账', align: 'center', + fixed: 'right', width: 80, dataIndex: 'inAccount', scopedSlots: { customRender: 'status' } }, { title: '开票', align: 'center', + fixed: 'right', width: 80, dataIndex: 'makeInvoice', scopedSlots: { customRender: 'status-bill' } }, { title: '邮寄', align: 'center', + fixed: 'right', width: 80, dataIndex: 'mail', scopedSlots: { customRender: 'status-mail' }