新增会议管理

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

View File

@@ -24,11 +24,14 @@ const config = {
} }
// 设置后台接口服务的基础地址 // 设置后台接口服务的基础地址
config.baseUrl = 'http://tc.cqsznc.com:7080/api'; //测试
// config.baseUrl = 'http://tc.cqsznc.com:7080/api';
//本地
config.baseUrl = '/js';
//正式 //正式
// config.baseUrl = '/js'; // config.baseUrl = 'http://183.230.235.66:11010/api';
// config.baseUrl = 'http://378a061a.r28.cpolar.top' // config.baseUrl = 'http://378a061a.r28.cpolar.top'
export default config; export default config;

View File

@@ -115,7 +115,7 @@ const install = (Vue, vm) => {
}, },
// 单位管理 // 单位管理
unit:{ unit:{
addEmployee:(params = {}) => vm.$u.post(config.adminPath+'/property/xcx/person', params), addEmployee:(params = {}) => vm.$u.post(config.adminPath+'/property/xcx/person/add', params),
queryEmployeeById:(params = {}) => vm.$u.get(config.adminPath+'/property/xcx/person/'+ params.id), queryEmployeeById:(params = {}) => vm.$u.get(config.adminPath+'/property/xcx/person/'+ params.id),
queryEmployee:(params = {}) => vm.$u.get(config.adminPath+'/property/xcx/person/list', params), queryEmployee:(params = {}) => vm.$u.get(config.adminPath+'/property/xcx/person/list', params),
updateEmployee:(params = {}) => vm.$u.put(config.adminPath+'/property/xcx/person', params), updateEmployee:(params = {}) => vm.$u.put(config.adminPath+'/property/xcx/person', params),

File diff suppressed because it is too large Load Diff

View File

View File

@@ -104,8 +104,8 @@ export default {
}, },
showInviteDialog() { showInviteDialog() {
this.showDialog = true; this.showDialog = true;
this.$nextTick( () => { this.$nextTick(() => {
this.makeQRCode(); this.makeQRCode();
}); });
}, },
hideInviteDialog() { hideInviteDialog() {
@@ -116,7 +116,9 @@ export default {
// 获取uQRCode实例 // 获取uQRCode实例
var qr = new 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设置的宽高一致 // 设置二维码大小必须与canvas设置的宽高一致
qr.size = 200; qr.size = 200;
// 调用制作二维码方法 // 调用制作二维码方法
@@ -307,7 +309,7 @@ export default {
/* 修复:统一用动态尺寸,移除固定宽高,优化居中 */ /* 修复:统一用动态尺寸,移除固定宽高,优化居中 */
.qr-code-container { .qr-code-container {
/* 容器尺寸略大于二维码,留出白边 */ /* 容器尺寸略大于二维码,留出白边 */
width:380rpx; width: 380rpx;
height: 380rpx; height: 380rpx;
background-color: white; background-color: white;
border-radius: 10rpx; border-radius: 10rpx;
@@ -322,7 +324,6 @@ export default {
} }
/* 新增圆形关闭按钮样式 */ /* 新增圆形关闭按钮样式 */
.close-circle-btn { .close-circle-btn {
width: 80rpx; width: 80rpx;

View File

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

View File

Before

Width:  |  Height:  |  Size: 28 KiB

After

Width:  |  Height:  |  Size: 28 KiB

BIN
static/aaa_hy.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB