diff --git a/public/api_address_config.js b/public/api_address_config.js
index 089904f..50c8088 100644
--- a/public/api_address_config.js
+++ b/public/api_address_config.js
@@ -10,3 +10,7 @@ window._CONFIG["pdfDomainURL"] = window._CONFIG["domianURL"] + "/sys/common/pdf/
window._CONFIG["casPrefixUrl"] = "http://cas.example.org:8443/cas";
// 预览文件地址
window._CONFIG["onlinePreviewDomainURL"] = "http://localhost:8012/onlinePreview";
+
+// 会议管理报名二维码地址
+window._CONFIG['singUpQRCodeURL'] = 'http://localhost:9000'
+
diff --git a/src/api/incomeMeetingApi.js b/src/api/incomeMeetingApi.js
index 759f848..277e304 100644
--- a/src/api/incomeMeetingApi.js
+++ b/src/api/incomeMeetingApi.js
@@ -10,11 +10,14 @@ const getAllWorkProjects = () => getAction('/project/payWorkingGroup/listAll')
const getSingUpUserInfo = (params) => getAction('/meeting/payMeetingSituation/queryById',params)
// 会议管理上传会议资料
const uploadMeetingFiles = (params) => postAction('/meeting/payMeeting/uploadFile',params)
+// 生成会议二维码
+const createQcCode = (params) => getAction('/meeting/payMeeting/createBase64',params)
export {
getUserInfo,
getMeetInfoById,
getAllWorkProjects,
getSingUpUserInfo,
- uploadMeetingFiles
+ uploadMeetingFiles,
+ createQcCode
}
diff --git a/src/views/incomePayments/meetManage/Attendance.vue b/src/views/incomePayments/meetManage/Attendance.vue
index 2a21a59..5c1fb46 100644
--- a/src/views/incomePayments/meetManage/Attendance.vue
+++ b/src/views/incomePayments/meetManage/Attendance.vue
@@ -71,13 +71,13 @@
:file-id="currentMeetingInfo.meetingFiles">
-
+ {{signUpHerfUrl}}
-
+
复制
-
+
复制
@@ -226,7 +226,7 @@
@@ -537,5 +591,12 @@ export default {
.content {
color: black;
}
-
+.qr-code {
+ width: 100px;
+ height: 100px;
+}
+.copy {
+ font-style: normal;
+ cursor: pointer;
+}