会议参会人报名
This commit is contained in:
+2
-2
@@ -109,9 +109,9 @@ export const transitRESTful = {
|
||||
}
|
||||
|
||||
// 通过企业名称获取该企业下的联系人
|
||||
const getContactsByCompany = (params) => getAction('/company/payContactsManagement/queryByCompany', params)
|
||||
const getContactsByCompany = (params) => getAction('/company/payContactsManagement/queryByCompanyMeeting', params)
|
||||
// 通过联系人id获取联系人信息
|
||||
const getContactsById = (param) => getAction('/company/payContactsManagement/queryById', param)
|
||||
const getContactsById = (param) => getAction('/company/payContactsManagement/queryByIdMeeting', param)
|
||||
|
||||
export {
|
||||
addRole,
|
||||
|
||||
@@ -72,7 +72,7 @@ export default {
|
||||
visible: false,
|
||||
confirmLoading: false,
|
||||
url: {
|
||||
list: '/company/payCompanyManagement/list'
|
||||
list: '/company/payCompanyManagement/listMeeting'
|
||||
},
|
||||
selectedCompany: {},
|
||||
selectedRowKeys: [],
|
||||
|
||||
@@ -106,7 +106,7 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { postcode, phoneReg, isPhone, taxNo, number } from '@/utils/validate'
|
||||
import { postcode, phoneReg, isPhone, number } from '@/utils/validate'
|
||||
import pick from 'lodash.pick'
|
||||
import { httpAction } from '@api/manage'
|
||||
import { duplicateCheck } from '@api/api'
|
||||
@@ -186,7 +186,7 @@ export default {
|
||||
}
|
||||
},
|
||||
url: {
|
||||
add: '/company/payCompanyManagement/add',
|
||||
add: '/company/payCompanyManagement/addMeeting',
|
||||
edit: '/company/payCompanyManagement/edit'
|
||||
}
|
||||
}
|
||||
|
||||
@@ -167,7 +167,7 @@ export default {
|
||||
sm: { span: 21 }
|
||||
},
|
||||
url: {
|
||||
add: '/company/payContactsManagement/add',
|
||||
add: '/company/payContactsManagement/addMeeting',
|
||||
edit: '/company/payContactsManagement/edit'
|
||||
},
|
||||
validatorRules: {
|
||||
|
||||
@@ -55,7 +55,7 @@
|
||||
<a-form-item label="邮编" :labelCol="labelCol" :wrapperCol="wrapperCol">
|
||||
<a-input placeholder="请输入邮编"
|
||||
@change="(e) => {e.target.value = e.target.value.replace(/[^0-9]/g,'')}" :maxLength="50"
|
||||
v-decorator="[ 'postContacCode']"></a-input>
|
||||
v-decorator="[ 'postCode']"></a-input>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
</a-row>
|
||||
@@ -96,7 +96,7 @@
|
||||
<a-input placeholder="请输入订单号后四位"
|
||||
:maxLength='4'
|
||||
@change="(e) => {e.target.value = e.target.value.replace(/[^0-9]/g,'')}"
|
||||
v-decorator="[ 'housiwei',validatorRules.housiwei]"></a-input>
|
||||
v-decorator="[ 'orderCode',validatorRules.orderCode]"></a-input>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
</a-row>
|
||||
@@ -186,7 +186,7 @@ export default {
|
||||
rules: [{required: true, message: '请选择发票类型'}],
|
||||
validateTrigger: 'change'
|
||||
},
|
||||
housiwei:{
|
||||
orderCode:{
|
||||
rules: [{required: true, message: '请输入订单号后四位'}],
|
||||
validateTrigger: 'blur'
|
||||
}
|
||||
@@ -246,6 +246,8 @@ export default {
|
||||
// 缴费方式为线上 要输入订单后四位
|
||||
if(e.target.value === 2){
|
||||
this.onlinePayModeBool = true
|
||||
}else {
|
||||
this.onlinePayModeBool = false
|
||||
}
|
||||
},
|
||||
/*
|
||||
|
||||
@@ -304,7 +304,7 @@ export default {
|
||||
// 会议费用是否为0
|
||||
meetingCostBool:false,
|
||||
url:{
|
||||
add:''
|
||||
add:'/meeting/payMeetingSituation/signUp'
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -402,8 +402,8 @@ export default {
|
||||
* @param name要获取的参数名
|
||||
* */
|
||||
GetQueryString(name) {
|
||||
var reg = new RegExp('(^|&)' + name + '=([^&]*)(&|$)')
|
||||
var r = window.location.search.substr(1).match(reg)
|
||||
let reg = new RegExp('(^|&)' + name + '=([^&]*)(&|$)')
|
||||
let r = window.location.search.substr(1).match(reg)
|
||||
if (r != null) return unescape(r[2])
|
||||
return null
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user