新增会议管理
This commit is contained in:
@@ -104,8 +104,8 @@ export default {
|
||||
},
|
||||
showInviteDialog() {
|
||||
this.showDialog = true;
|
||||
this.$nextTick( () => {
|
||||
this.makeQRCode();
|
||||
this.$nextTick(() => {
|
||||
this.makeQRCode();
|
||||
});
|
||||
},
|
||||
hideInviteDialog() {
|
||||
@@ -116,7 +116,9 @@ export default {
|
||||
// 获取uQRCode实例
|
||||
var qr = new uQRCode();
|
||||
// 设置二维码内容
|
||||
qr.data = `http://183.230.235.66:11010/sys/workbench/unitManagement/employeeAdd?unitId=${uni.getStorageSync('lifeData').vuex_user.unitId}`;
|
||||
qr.data = `http://183.230.235.66:11010/parkH5/pages/sys/workbench/unitManagement/employeeAdd?unitId=${uni.getStorageSync('lifeData').vuex_user.unitId}
|
||||
& unitName=${uni.getStorageSync('lifeData').vuex_user.unitName}
|
||||
& tenantId=${uni.getStorageSync('lifeData').vuex_user.tenantId}`;
|
||||
// 设置二维码大小,必须与canvas设置的宽高一致
|
||||
qr.size = 200;
|
||||
// 调用制作二维码方法
|
||||
@@ -307,7 +309,7 @@ export default {
|
||||
/* 修复:统一用动态尺寸,移除固定宽高,优化居中 */
|
||||
.qr-code-container {
|
||||
/* 容器尺寸略大于二维码,留出白边 */
|
||||
width:380rpx;
|
||||
width: 380rpx;
|
||||
height: 380rpx;
|
||||
background-color: white;
|
||||
border-radius: 10rpx;
|
||||
@@ -322,7 +324,6 @@ export default {
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* 新增圆形关闭按钮样式 */
|
||||
.close-circle-btn {
|
||||
width: 80rpx;
|
||||
|
Reference in New Issue
Block a user