diff --git a/public/development_address_config.js b/public/development_address_config.js index f427f6d..5235604 100644 --- a/public/development_address_config.js +++ b/public/development_address_config.js @@ -14,9 +14,8 @@ window._CONFIG["onlinePreviewDomainURL"] = "http://localhost:8012/onlinePreview" // 会议管理报名二维码地址 window._CONFIG["singUpQRCodeURL"] = "http://localhost:3000/signupentrance" - -// 签到二维码url -window._CONFIG["signInUrl"] = "/meeting/payMeetingSituation/getSignInPage" +// 会议管理签到二维码地址 微信扫描二维码 跳转的 地址 要么全大写 要么全小写 +window._CONFIG["singInQRCodeURL"] = "http://10.10.10.46:8055/signinurl" // 票据打印--寄件人单位名称 window._CONFIG["sendCompanyName"] = "中汽标准所" diff --git a/public/production_address_config.js b/public/production_address_config.js index 51d82ef..a7ed54e 100644 --- a/public/production_address_config.js +++ b/public/production_address_config.js @@ -13,6 +13,8 @@ window._CONFIG["onlinePreviewDomainURL"] = "http://10.10.10.46:8012/onlinePrevie // 会议管理报名二维码地址 window._CONFIG["singUpQRCodeURL"] = "http://10.10.10.46:8055/signupentrance" +// 会议管理签到二维码地址 微信扫描二维码 跳转的 地址 要么全大写 要么全小写 +window._CONFIG["singInQRCodeURL"] = "http://10.10.10.46:8055/signinurl" // 票据打印--寄件人单位名称 window._CONFIG["sendCompanyName"] = "中汽标准所" diff --git a/src/views/incomePayments/meetManage/Attendance.vue b/src/views/incomePayments/meetManage/Attendance.vue index e5337f5..0c10704 100644 --- a/src/views/incomePayments/meetManage/Attendance.vue +++ b/src/views/incomePayments/meetManage/Attendance.vue @@ -620,8 +620,9 @@ export default { return `${ window._CONFIG['singUpQRCodeURL'] }?id=${ this.$route.query.id }` }, // 签到地址 只给一个会议id 加前缀是为了区分 小程序的扫码签到是否扫描的是签到二维码 + // 2021-11-26 客户变更 要微信扫描签到二维码跳转程序去签到 signInUrl() { - return `scanSign=${this.$route.query.id}` + return `${window._CONFIG['singInQRCodeURL']}?scansign=${this.$route.query.id}` } }, methods: {