新增会议管理

This commit is contained in:
2025-09-15 16:31:06 +08:00
parent bea7d8f079
commit b22ec4cf4d
8 changed files with 566 additions and 459 deletions

File diff suppressed because it is too large Load Diff

View File

View File

@@ -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;

View File

@@ -80,12 +80,12 @@
// url:'/pages/sys/workbench/monitor/monitors'
// },
// {
// icon: '/static/aaaa_bsbx.png',
// text: '报事报修',
// url:'/pages/sys/user/myRepair/myRepair'
// icon: '/static/aaa_hy.png',
// text: '会议管理',
// url:'/pages/sys/workbench/meet/meet'
// },
{
icon: '/static/ic_unit.png',
icon: '/static/aaa_dw.png',
text: '单位管理',
url:'/pages/sys/workbench/unitManagement/unitManagement'
},