|
@@ -15,48 +15,48 @@ const UrlList = await getGroupUrl();
|
|
|
/** 获取用户管理列表 */
|
|
|
export const getUserList = (params?: object): dataResult => {
|
|
|
return http.Request({
|
|
|
- url: UrlList.telMainServer.userpage.url,
|
|
|
- method: UrlList.telMainServer.userpage.method,
|
|
|
+ url: UrlList.prizeSet.userpage.url,
|
|
|
+ method: UrlList.prizeSet.userpage.method,
|
|
|
params
|
|
|
});
|
|
|
};
|
|
|
/** 修改用户密码 */
|
|
|
export const changeUserPassword = (params?: object): dataResult => {
|
|
|
return http.Request({
|
|
|
- url: UrlList.telMainServer.userpassword.url,
|
|
|
- method: UrlList.telMainServer.userpassword.method,
|
|
|
+ url: UrlList.prizeSet.userpassword.url,
|
|
|
+ method: UrlList.prizeSet.userpassword.method,
|
|
|
params
|
|
|
});
|
|
|
};
|
|
|
/** 锁定用户 */
|
|
|
export const lockUserList = (params?: object): dataResult => {
|
|
|
return http.Request({
|
|
|
- url: UrlList.telMainServer.userlock.url,
|
|
|
- method: UrlList.telMainServer.userlock.method,
|
|
|
+ url: UrlList.prizeSet.userlock.url,
|
|
|
+ method: UrlList.prizeSet.userlock.method,
|
|
|
params
|
|
|
});
|
|
|
};
|
|
|
/** 删除用户 */
|
|
|
export const deleteUserList = (params?: object): dataResult => {
|
|
|
return http.Request({
|
|
|
- url: UrlList.telMainServer.userremoveById.url,
|
|
|
- method: UrlList.telMainServer.userremoveById.method,
|
|
|
+ url: UrlList.prizeSet.userremoveById.url,
|
|
|
+ method: UrlList.prizeSet.userremoveById.method,
|
|
|
params
|
|
|
});
|
|
|
};
|
|
|
/** 新增用户 */
|
|
|
export const AddUserList = (params?: object): dataResult => {
|
|
|
return http.Request({
|
|
|
- url: UrlList.telMainServer.useradd.url,
|
|
|
- method: UrlList.telMainServer.useradd.method,
|
|
|
+ url: UrlList.prizeSet.useradd.url,
|
|
|
+ method: UrlList.prizeSet.useradd.method,
|
|
|
params
|
|
|
});
|
|
|
};
|
|
|
/** 编辑用户 */
|
|
|
export const editUserList = (params?: object): dataResult => {
|
|
|
return http.Request({
|
|
|
- url: UrlList.telMainServer.userupdate.url,
|
|
|
- method: UrlList.telMainServer.userupdate.method,
|
|
|
+ url: UrlList.prizeSet.userupdate.url,
|
|
|
+ method: UrlList.prizeSet.userupdate.method,
|
|
|
params
|
|
|
});
|
|
|
};
|
|
@@ -66,56 +66,56 @@ export const editUserList = (params?: object): dataResult => {
|
|
|
/** 获取全部角色管理列表 */
|
|
|
export const getAllRoleList = (params?: object): dataResult => {
|
|
|
return http.Request({
|
|
|
- url: UrlList.telMainServer.rolelist.url,
|
|
|
- method: UrlList.telMainServer.rolelist.method,
|
|
|
+ url: UrlList.prizeSet.rolelist.url,
|
|
|
+ method: UrlList.prizeSet.rolelist.method,
|
|
|
params
|
|
|
});
|
|
|
};
|
|
|
/** 获取角色管理列表 */
|
|
|
export const getRoleList = (params?: object): dataResult => {
|
|
|
return http.Request({
|
|
|
- url: UrlList.telMainServer.rolepage.url,
|
|
|
- method: UrlList.telMainServer.rolepage.method,
|
|
|
+ url: UrlList.prizeSet.rolepage.url,
|
|
|
+ method: UrlList.prizeSet.rolepage.method,
|
|
|
params
|
|
|
});
|
|
|
};
|
|
|
/** 获取当前角色权限列表 */
|
|
|
export const getRoleRightList = (params?: object): dataResult => {
|
|
|
return http.Request({
|
|
|
- url: UrlList.telMainServer.menugetRoleTree.url,
|
|
|
- method: UrlList.telMainServer.menugetRoleTree.method,
|
|
|
+ url: UrlList.prizeSet.menugetRoleTree.url,
|
|
|
+ method: UrlList.prizeSet.menugetRoleTree.method,
|
|
|
params
|
|
|
});
|
|
|
};
|
|
|
/** 添加系统角色 */
|
|
|
export const postRoleList = (params?: object): dataResult => {
|
|
|
return http.Request({
|
|
|
- url: UrlList.telMainServer.roleadd.url,
|
|
|
- method: UrlList.telMainServer.roleadd.method,
|
|
|
+ url: UrlList.prizeSet.roleadd.url,
|
|
|
+ method: UrlList.prizeSet.roleadd.method,
|
|
|
params
|
|
|
});
|
|
|
};
|
|
|
/** 编辑系统角色 */
|
|
|
export const putRoleList = (params?: object): dataResult => {
|
|
|
return http.Request({
|
|
|
- url: UrlList.telMainServer.roleupdate.url,
|
|
|
- method: UrlList.telMainServer.roleupdate.method,
|
|
|
+ url: UrlList.prizeSet.roleupdate.url,
|
|
|
+ method: UrlList.prizeSet.roleupdate.method,
|
|
|
params
|
|
|
});
|
|
|
};
|
|
|
/** 删除系统角色 */
|
|
|
export const deleteRoleList = (params?: object): dataResult => {
|
|
|
return http.Request({
|
|
|
- url: UrlList.telMainServer.roleremoveById.url,
|
|
|
- method: UrlList.telMainServer.roleremoveById.method,
|
|
|
+ url: UrlList.prizeSet.roleremoveById.url,
|
|
|
+ method: UrlList.prizeSet.roleremoveById.method,
|
|
|
params
|
|
|
});
|
|
|
};
|
|
|
/** 获取所有角色权限列表 */
|
|
|
export const getRoleTreeList = (params?: object): dataResult => {
|
|
|
return http.Request({
|
|
|
- url: UrlList.telMainServer.menugetRoleTree.url,
|
|
|
- method: UrlList.telMainServer.menugetRoleTree.method,
|
|
|
+ url: UrlList.prizeSet.menugetRoleTree.url,
|
|
|
+ method: UrlList.prizeSet.menugetRoleTree.method,
|
|
|
params
|
|
|
});
|
|
|
};
|
|
@@ -125,16 +125,16 @@ export const getRoleTreeList = (params?: object): dataResult => {
|
|
|
/** 获取菜单列表 */
|
|
|
export const getMenuList = (params?: object): dataResult => {
|
|
|
return http.Request({
|
|
|
- url: UrlList.telMainServer.menutree.url,
|
|
|
- method: UrlList.telMainServer.menutree.method,
|
|
|
+ url: UrlList.prizeSet.menutree.url,
|
|
|
+ method: UrlList.prizeSet.menutree.method,
|
|
|
params
|
|
|
});
|
|
|
};
|
|
|
/** 获取菜单列表 */
|
|
|
export const putRoleMenuList = (params?: object): dataResult => {
|
|
|
return http.Request({
|
|
|
- url: UrlList.telMainServer.rolemenu.url,
|
|
|
- method: UrlList.telMainServer.rolemenu.method,
|
|
|
+ url: UrlList.prizeSet.rolemenu.url,
|
|
|
+ method: UrlList.prizeSet.rolemenu.method,
|
|
|
params
|
|
|
});
|
|
|
};
|
|
@@ -142,8 +142,8 @@ export const putRoleMenuList = (params?: object): dataResult => {
|
|
|
export const postMenuList = (params?: object): dataResult => {
|
|
|
console.log(params);
|
|
|
return http.Request({
|
|
|
- url: UrlList.telMainServer.menuadd.url,
|
|
|
- method: UrlList.telMainServer.menuadd.method,
|
|
|
+ url: UrlList.prizeSet.menuadd.url,
|
|
|
+ method: UrlList.prizeSet.menuadd.method,
|
|
|
params
|
|
|
});
|
|
|
};
|
|
@@ -151,16 +151,16 @@ export const postMenuList = (params?: object): dataResult => {
|
|
|
export const putMenuList = (params?: object): dataResult => {
|
|
|
console.log(params);
|
|
|
return http.Request({
|
|
|
- url: UrlList.telMainServer.menuupdate.url,
|
|
|
- method: UrlList.telMainServer.menuupdate.method,
|
|
|
+ url: UrlList.prizeSet.menuupdate.url,
|
|
|
+ method: UrlList.prizeSet.menuupdate.method,
|
|
|
params
|
|
|
});
|
|
|
};
|
|
|
/** 删除菜单 */
|
|
|
export const deleteMenuList = (params?: object): dataResult => {
|
|
|
return http.Request({
|
|
|
- url: UrlList.telMainServer.menuremoveById.url,
|
|
|
- method: UrlList.telMainServer.menuremoveById.method,
|
|
|
+ url: UrlList.prizeSet.menuremoveById.url,
|
|
|
+ method: UrlList.prizeSet.menuremoveById.method,
|
|
|
params
|
|
|
});
|
|
|
};
|
|
@@ -170,40 +170,40 @@ export const deleteMenuList = (params?: object): dataResult => {
|
|
|
/** 获取全部部门列表 */
|
|
|
export const getAllDeptList = (params?: object): dataResult => {
|
|
|
return http.Request({
|
|
|
- url: UrlList.telMainServer.deptlist.url,
|
|
|
- method: UrlList.telMainServer.deptlist.method,
|
|
|
+ url: UrlList.prizeSet.deptlist.url,
|
|
|
+ method: UrlList.prizeSet.deptlist.method,
|
|
|
params
|
|
|
});
|
|
|
};
|
|
|
/** 获取部门列表 */
|
|
|
export const getDeptList = (params?: object): dataResult => {
|
|
|
return http.Request({
|
|
|
- url: UrlList.telMainServer.depttree.url,
|
|
|
- method: UrlList.telMainServer.depttree.method,
|
|
|
+ url: UrlList.prizeSet.depttree.url,
|
|
|
+ method: UrlList.prizeSet.depttree.method,
|
|
|
params
|
|
|
});
|
|
|
};
|
|
|
/** 删除部门列表 */
|
|
|
export const deleteDeptList = (params?: object): dataResult => {
|
|
|
return http.Request({
|
|
|
- url: UrlList.telMainServer.deptremoveById.url,
|
|
|
- method: UrlList.telMainServer.deptremoveById.method,
|
|
|
+ url: UrlList.prizeSet.deptremoveById.url,
|
|
|
+ method: UrlList.prizeSet.deptremoveById.method,
|
|
|
params
|
|
|
});
|
|
|
};
|
|
|
/** 编辑部门 */
|
|
|
export const putDeptList = (params?: object): dataResult => {
|
|
|
return http.Request({
|
|
|
- url: UrlList.telMainServer.deptupdate.url,
|
|
|
- method: UrlList.telMainServer.deptupdate.method,
|
|
|
+ url: UrlList.prizeSet.deptupdate.url,
|
|
|
+ method: UrlList.prizeSet.deptupdate.method,
|
|
|
params
|
|
|
});
|
|
|
};
|
|
|
/** 添加部门 */
|
|
|
export const postDeptList = (params?: object): dataResult => {
|
|
|
return http.Request({
|
|
|
- url: UrlList.telMainServer.deptadd.url,
|
|
|
- method: UrlList.telMainServer.deptadd.method,
|
|
|
+ url: UrlList.prizeSet.deptadd.url,
|
|
|
+ method: UrlList.prizeSet.deptadd.method,
|
|
|
params
|
|
|
});
|
|
|
};
|
|
@@ -212,40 +212,40 @@ export const postDeptList = (params?: object): dataResult => {
|
|
|
/** 获取全部列表 */
|
|
|
export const getAllPostList = (params?: object): dataResult => {
|
|
|
return http.Request({
|
|
|
- url: UrlList.telMainServer.postlist.url,
|
|
|
- method: UrlList.telMainServer.postlist.method,
|
|
|
+ url: UrlList.prizeSet.postlist.url,
|
|
|
+ method: UrlList.prizeSet.postlist.method,
|
|
|
params
|
|
|
});
|
|
|
};
|
|
|
/** 获取分页岗位列表 */
|
|
|
export const getPostList = (params?: object): dataResult => {
|
|
|
return http.Request({
|
|
|
- url: UrlList.telMainServer.postpage.url,
|
|
|
- method: UrlList.telMainServer.postpage.method,
|
|
|
+ url: UrlList.prizeSet.postpage.url,
|
|
|
+ method: UrlList.prizeSet.postpage.method,
|
|
|
params
|
|
|
});
|
|
|
};
|
|
|
/** 删除岗位列表 */
|
|
|
export const deletePostList = (params?: object): dataResult => {
|
|
|
return http.Request({
|
|
|
- url: UrlList.telMainServer.postremoveById.url,
|
|
|
- method: UrlList.telMainServer.postremoveById.method,
|
|
|
+ url: UrlList.prizeSet.postremoveById.url,
|
|
|
+ method: UrlList.prizeSet.postremoveById.method,
|
|
|
params
|
|
|
});
|
|
|
};
|
|
|
/** 编辑岗位 */
|
|
|
export const putPostList = (params?: object): dataResult => {
|
|
|
return http.Request({
|
|
|
- url: UrlList.telMainServer.postupdate.url,
|
|
|
- method: UrlList.telMainServer.postupdate.method,
|
|
|
+ url: UrlList.prizeSet.postupdate.url,
|
|
|
+ method: UrlList.prizeSet.postupdate.method,
|
|
|
params
|
|
|
});
|
|
|
};
|
|
|
/** 添加岗位 */
|
|
|
export const postPostList = (params?: object): dataResult => {
|
|
|
return http.Request({
|
|
|
- url: UrlList.telMainServer.postadd.url,
|
|
|
- method: UrlList.telMainServer.postadd.method,
|
|
|
+ url: UrlList.prizeSet.postadd.url,
|
|
|
+ method: UrlList.prizeSet.postadd.method,
|
|
|
params
|
|
|
});
|
|
|
};
|
|
@@ -254,8 +254,8 @@ export const postPostList = (params?: object): dataResult => {
|
|
|
/** 修改公共参数 */
|
|
|
export const paramUpdate = (params?: object): dataResult => {
|
|
|
return http.Request({
|
|
|
- url: UrlList.telMainServer.paramupdate.url,
|
|
|
- method: UrlList.telMainServer.paramupdate.method,
|
|
|
+ url: UrlList.prizeSet.paramupdate.url,
|
|
|
+ method: UrlList.prizeSet.paramupdate.method,
|
|
|
params
|
|
|
});
|
|
|
};
|
|
@@ -266,8 +266,8 @@ export const paramUpdate = (params?: object): dataResult => {
|
|
|
/** 获取市场列表 */
|
|
|
export const getRelationList = (params?: object): dataResult => {
|
|
|
return http.Request({
|
|
|
- url: UrlList.telMainServer.relationtree.url,
|
|
|
- method: UrlList.telMainServer.relationtree.method,
|
|
|
+ url: UrlList.prizeSet.relationtree.url,
|
|
|
+ method: UrlList.prizeSet.relationtree.method,
|
|
|
params
|
|
|
});
|
|
|
};
|
|
@@ -275,8 +275,8 @@ export const getRelationList = (params?: object): dataResult => {
|
|
|
export const postRelationList = (params?: object): dataResult => {
|
|
|
console.log(params);
|
|
|
return http.Request({
|
|
|
- url: UrlList.telMainServer.relationadd.url,
|
|
|
- method: UrlList.telMainServer.relationadd.method,
|
|
|
+ url: UrlList.prizeSet.relationadd.url,
|
|
|
+ method: UrlList.prizeSet.relationadd.method,
|
|
|
params
|
|
|
});
|
|
|
};
|
|
@@ -284,16 +284,16 @@ export const postRelationList = (params?: object): dataResult => {
|
|
|
export const putRelationList = (params?: object): dataResult => {
|
|
|
console.log(params);
|
|
|
return http.Request({
|
|
|
- url: UrlList.telMainServer.relationupdate.url,
|
|
|
- method: UrlList.telMainServer.relationupdate.method,
|
|
|
+ url: UrlList.prizeSet.relationupdate.url,
|
|
|
+ method: UrlList.prizeSet.relationupdate.method,
|
|
|
params
|
|
|
});
|
|
|
};
|
|
|
/** 删除市场 */
|
|
|
export const deleteRelationList = (params?: object): dataResult => {
|
|
|
return http.Request({
|
|
|
- url: UrlList.telMainServer.relationremoveById.url,
|
|
|
- method: UrlList.telMainServer.relationremoveById.method,
|
|
|
+ url: UrlList.prizeSet.relationremoveById.url,
|
|
|
+ method: UrlList.prizeSet.relationremoveById.method,
|
|
|
params
|
|
|
});
|
|
|
};
|