参会情况表格结构调整

This commit is contained in:
fengachen
2021-09-13 09:41:58 +08:00
parent 6aeafc0812
commit 9f0d5f2c8c
2 changed files with 10 additions and 11 deletions
@@ -250,7 +250,6 @@ export default {
data() { data() {
return { return {
description: '参会情况', description: '参会情况',
columns: [ columns: [
{ {
title: '序号', title: '序号',
@@ -273,7 +272,7 @@ export default {
title: '参会人员', title: '参会人员',
align: 'center', align: 'center',
dataIndex: 'companyContactName', dataIndex: 'companyContactName',
width: 80, width: 100,
}, },
{ {
title: '应收金额', title: '应收金额',
@@ -285,13 +284,13 @@ export default {
title: '实收金额', title: '实收金额',
align: 'center', align: 'center',
dataIndex: 'paidAmount', dataIndex: 'paidAmount',
width: 100, width: 120,
}, },
{ {
title: '缴费方式', title: '缴费方式',
align: 'center', align: 'center',
dataIndex: 'payMode_dictText', dataIndex: 'payMode_dictText',
width: 100, width: 120,
}, },
{ {
title: '是否签到', title: '是否签到',
@@ -303,47 +302,47 @@ export default {
title: '打包', title: '打包',
align: 'center', align: 'center',
dataIndex: 'pack', dataIndex: 'pack',
width: 80, width: 100,
scopedSlots: {customRender: 'status-pack'} scopedSlots: {customRender: 'status-pack'}
}, },
{ {
title: '需要发票', title: '需要发票',
align: 'center', align: 'center',
dataIndex: 'needInvoice', dataIndex: 'needInvoice',
width: 80, width: 100,
scopedSlots: {customRender: 'status-pack'} scopedSlots: {customRender: 'status-pack'}
}, },
{ {
title: '到账', title: '到账',
align: 'center', align: 'center',
width: 80, width: 100,
dataIndex: 'inAccount', dataIndex: 'inAccount',
scopedSlots: {customRender: 'status'} scopedSlots: {customRender: 'status'}
}, },
{ {
title: '开票', title: '开票',
align: 'center', align: 'center',
width: 80, width: 100,
dataIndex: 'makeInvoice', dataIndex: 'makeInvoice',
scopedSlots: {customRender: 'status'} scopedSlots: {customRender: 'status'}
}, },
{ {
title: '邮寄', title: '邮寄',
align: 'center', align: 'center',
width: 80, width: 100,
dataIndex: 'mail', dataIndex: 'mail',
scopedSlots: {customRender: 'status'} scopedSlots: {customRender: 'status'}
}, },
{ {
title: '对接人', title: '对接人',
align: 'center', align: 'center',
width: 100,
dataIndex: 'dockName' dataIndex: 'dockName'
}, },
{ {
title: '操作', title: '操作',
align: 'center', align: 'center',
fixed:'right', fixed:'right',
width: 160,
scopedSlots: {customRender: 'action'} scopedSlots: {customRender: 'action'}
}, },
], ],
@@ -12,7 +12,7 @@
<a-row> <a-row>
<a-col :span="12"> <a-col :span="12">
<a-form-item label="会议文件" :labelCol="labelCol" :wrapperCol="wrapperCol"> <a-form-item label="会议文件" :labelCol="labelCol" :wrapperCol="wrapperCol">
<j-upload file-type="pdf" file-type-error-message="请上传会议文件" :multiple="false" :number="1" <j-upload file-type-error-message="请上传会议文件" :multiple="false" :number="1"
:return-id="true" :return-id="true"
v-decorator="['chargeNoticeFileId']" v-decorator="['chargeNoticeFileId']"
:trigger-change="true"></j-upload> :trigger-change="true"></j-upload>