diff --git a/public/development_address_config.js b/public/development_address_config.js index 6425b04..7ab924c 100644 --- a/public/development_address_config.js +++ b/public/development_address_config.js @@ -13,7 +13,7 @@ window._CONFIG["casPrefixUrl"] = "http://cas.example.org:8443/cas"; window._CONFIG["onlinePreviewDomainURL"] = "http://localhost:8012/onlinePreview"; // 会议管理报名二维码地址 -window._CONFIG['singUpQRCodeURL'] = 'http://localhost:3000/signUpEntrance' +window._CONFIG['singUpQRCodeURL'] = 'http://localhost:3000/signupentrance' // 签到二维码url window._CONFIG['signInUrl'] = '/meeting/payMeetingSituation/getSignInPage' diff --git a/public/production_address_config.js b/public/production_address_config.js index 297de6b..8749c66 100644 --- a/public/production_address_config.js +++ b/public/production_address_config.js @@ -12,5 +12,5 @@ window._CONFIG["casPrefixUrl"] = "http://cas.example.org:8443/cas"; window._CONFIG["onlinePreviewDomainURL"] = "http://10.10.10.46:8012/onlinePreview"; // 会议管理报名二维码地址 -window._CONFIG['singUpQRCodeURL'] = 'http://10.10.10.46:8055/signUpEntrance' +window._CONFIG['singUpQRCodeURL'] = 'http://10.10.10.46:8055/signupentrance' diff --git a/src/api/incomeMeetingApi.js b/src/api/incomeMeetingApi.js index d546f17..af2702b 100644 --- a/src/api/incomeMeetingApi.js +++ b/src/api/incomeMeetingApi.js @@ -14,11 +14,15 @@ const createQcCode = (params) => getAction('/meeting/payMeeting/createBase64',pa // 收入合同的新增会员项目的查询 const queryContractMemberProject = (params) => getAction('/jero/memberProject/queryListByNotCompany',params) +// 通过单位名称校验是否标协会员 +const validateStandard = (params) => getAction('/meeting/internalMeetingSituation/checkMember',params) + export { getUserInfo, getMeetInfoById, getAllWorkProjects, getSingUpUserInfo, createQcCode, - queryContractMemberProject + queryContractMemberProject, + validateStandard } diff --git a/src/components/ProjectDetailModal.vue b/src/components/ProjectDetailModal.vue index eef544e..6fc16fc 100644 --- a/src/components/ProjectDetailModal.vue +++ b/src/components/ProjectDetailModal.vue @@ -16,7 +16,7 @@ - + @@ -26,7 +26,7 @@ - + {{ basicInfo.chargeWay_dictText }} @@ -356,8 +356,6 @@ export default { } else { return '缴费方式' } - - } } } diff --git a/src/components/layouts/TabLayout.vue b/src/components/layouts/TabLayout.vue index 7be1037..e9c3b2e 100644 --- a/src/components/layouts/TabLayout.vue +++ b/src/components/layouts/TabLayout.vue @@ -4,6 +4,7 @@ state.user.system + }), + showMenu() { + return this.system !== 'member' } }, created() { diff --git a/src/components/page/GlobalLayout.vue b/src/components/page/GlobalLayout.vue index 7be2bc2..dfec8f8 100644 --- a/src/components/page/GlobalLayout.vue +++ b/src/components/page/GlobalLayout.vue @@ -1,6 +1,5 @@