demo-web-ui

This commit is contained in:
liupopo
2023-04-24 09:29:28 +08:00
parent c190807b10
commit 8730220d6a
342 changed files with 33994 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
import request from '@/utils/request'
// 查看待阅和已阅列表
export function pagerList(data) {
return request({
url: '/message/v1/messagelist/todoAllReadList',
method: 'post',
data: data,
headers: {
'Content-Type': 'application/json'
}
})
}
// 待阅列表--修改为已阅
export function changeRead(data) {
return request({
url: '/message/v1/messagelist/changeRead?sids=' + data,
method: 'get'
})
}
// 待阅列表--修改为已阅
export function getToBeReadNum(data) {
return request({
url: '/message/v1/messagelist/getTodoNum/' + data,
method: 'get'
})
}
// 待办已办待阅已阅获取人员
export function sysstaffinfo() {
return request({
url: '/portal/v1/sysstaffinfo/v1/sysstaffinfo/selectStaffLists',
method: 'get'
})
}