From 2741faa785e7b7fbc42951d467d655f9490266e5 Mon Sep 17 00:00:00 2001 From: zhouwenxuan <1175765986@qq.com> Date: 星期五, 01 三月 2024 08:56:13 +0800 Subject: [PATCH] bug修改 --- 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