新增会议管理

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'
export default config;

View File

@@ -115,7 +115,7 @@ const install = (Vue, vm) => {
},
// 单位管理
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),
queryEmployee:(params = {}) => vm.$u.get(config.adminPath+'/property/xcx/person/list', params),
updateEmployee:(params = {}) => vm.$u.put(config.adminPath+'/property/xcx/person', params),