From 11111c61a80e83438778d3eac41ef094d680c9ac Mon Sep 17 00:00:00 2001 From: 马宇豪 <978517621@qq.com> Date: 星期二, 06 二月 2024 11:02:19 +0800 Subject: [PATCH] 修改平级 --- src/api/user.js | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 45 insertions(+), 0 deletions(-) diff --git a/src/api/user.js b/src/api/user.js index 819c7de..c2fedaf 100644 --- a/src/api/user.js +++ b/src/api/user.js @@ -213,3 +213,48 @@ data: data }) } + +//评级接收人分组 + +//分页查询 +export function getSameLevelGroup(data){ + return request({ + url: '/mesmanager/recipientGroup/page', + method: 'post', + data: data + }) +} + +//新增 +export function addSameLevelGroup(data){ + return request({ + url: '/mesmanager/recipientGroup/add ', + method: 'post', + data:data + }) +} + +//修改 +export function updateSameLevelGroup(data){ + return request({ + url: '/mesmanager/recipientGroup/update', + method: 'post', + data:data + }) +} +//删除 +export function delSameLevelGroup(id){ + return request({ + url:'/mesmanager/recipientGroup/delete?id=' + id, + method: 'get' + }) +} + +//列表 +export function getSameLevelGroupList(data){ + return request({ + url: '/mesmanager/recipientGroup/list', + method: 'post', + data: data + }) +} -- Gitblit v1.9.2