添加参会人修改传参
This commit is contained in:
@@ -242,13 +242,13 @@ export default {
|
||||
{
|
||||
title: '参会单位',
|
||||
align: 'center',
|
||||
dataIndex: '',
|
||||
dataIndex: 'companyName',
|
||||
scopedSlots: {customRender: 'htmlSlot'}
|
||||
},
|
||||
{
|
||||
title: '参会人员',
|
||||
align: 'center',
|
||||
dataIndex: '',
|
||||
dataIndex: 'companyContactName',
|
||||
},
|
||||
{
|
||||
title: '应收金额',
|
||||
@@ -273,22 +273,22 @@ export default {
|
||||
{
|
||||
title: '打包',
|
||||
align: 'center',
|
||||
dataIndex: ''
|
||||
dataIndex: 'pack'
|
||||
},
|
||||
{
|
||||
title: '需要发票',
|
||||
align: 'center',
|
||||
dataIndex: ''
|
||||
dataIndex: 'needInvoice'
|
||||
},
|
||||
{
|
||||
title: '到账',
|
||||
align: 'center',
|
||||
dataIndex: ''
|
||||
dataIndex: 'inAccount'
|
||||
},
|
||||
{
|
||||
title: '开票',
|
||||
align: 'center',
|
||||
dataIndex: ''
|
||||
dataIndex: 'makeInvoice'
|
||||
},
|
||||
{
|
||||
title: '邮寄',
|
||||
@@ -298,7 +298,7 @@ export default {
|
||||
{
|
||||
title: '对接人',
|
||||
align: 'center',
|
||||
dataIndex: ''
|
||||
dataIndex: 'mail'
|
||||
},
|
||||
{
|
||||
title: '操作',
|
||||
@@ -365,7 +365,8 @@ export default {
|
||||
this.$router.push({
|
||||
path: '/incomePayments/meetManage/SignUpInfoEdit',
|
||||
query:{
|
||||
meetingType:this.currentMeetingInfo.meetingType
|
||||
meetingType:this.currentMeetingInfo.meetingType,
|
||||
meetingId:this.$route.query.id
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
@@ -60,7 +60,7 @@
|
||||
|
||||
<a-col :xxl="8" :xl="12" :sm="24">
|
||||
<a-form-item label="身份" :labelCol="labelCol" :wrapperCol="wrapperCol">
|
||||
<a-radio-group v-decorator="['identify',validatorRules.identify]" @change="changeIdentify">
|
||||
<a-radio-group v-decorator="['identity',validatorRules.identify]" @change="changeIdentify">
|
||||
<a-radio :value="1">嘉宾</a-radio>
|
||||
<a-radio :value="2">参会人</a-radio>
|
||||
<a-radio :value="3">内部企业</a-radio>
|
||||
@@ -235,6 +235,10 @@ export default {
|
||||
this.confirmLoading = true
|
||||
let submitData = Object.assign({},values,this.formData)
|
||||
submitData.companyId = values.companyId.id
|
||||
// 会议id
|
||||
submitData.meetingId = this.$route.query.meetingId
|
||||
// 会议类型
|
||||
submitData.meetingType = this.$route.query.meetingType
|
||||
console.log(submitData)
|
||||
let url = ''
|
||||
if(!this.model.id){
|
||||
|
||||
@@ -166,7 +166,7 @@ export default {
|
||||
sm: {span: 18}
|
||||
},
|
||||
url: {
|
||||
list: '/jero/memberProject/page',
|
||||
list: '/meeting/payMeetingSituation/add/page',
|
||||
delete: '/jero/memberProject/delete',
|
||||
deleteBatch: '/jero/memberProject/deleteBatch',
|
||||
exportXlsUrl: '/jero/memberProject/exportXls',
|
||||
|
||||
Reference in New Issue
Block a user