1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
| import request from "@/utils/request";
|
| // 登录方法
| export function loginCheckFactory(username, password, factoryId) {
| const data = {
| username,
| password,
| factoryId,
| };
| return request({
| url: "/loginCheckFactory",
| headers: {
| isToken: false,
| repeatSubmit: false,
| },
| method: "post",
| data: data,
| });
| }
|
| // 获取用户详细信息
| export function getInfo() {
| return request({
| url: "/getInfo",
| method: "get",
| });
| }
|
| // 退出方法
| export function logout() {
| return request({
| url: "/logout",
| method: "post",
| });
| }
|
| // 获取公司列表
| export function userLoginFacotryList(params) {
| return request({
| url: "/userLoginFacotryList",
| method: "get",
| params: params,
| });
| }
|
| // 获取未过期公告数量
| export function noticesList(params) {
| return request({
| url: "/collaborativeApproval/notice/page",
| method: "get",
| params: params,
| });
| }
|
| // 发送客户端推送标识到服务器
| export function updateClientId(data) {
| return request({
| url: "/system/client/addOrUpdateClientId",
| method: "post",
| data: data,
| });
| }
|
| // 查询公告列表
| export function listNotice(query) {
| return request({
| url: "/system/notice/list",
| method: "get",
| params: query,
| });
| }
|
| // 获取未读消息数量
| export function getNoticeCount(consigneeId) {
| return request({
| url: "/system/notice/getCount",
| method: "get",
| params: { consigneeId },
| });
| }
|
| // 标记消息为已读
| export function markAsRead(noticeId, status) {
| return request({
| url: "/system/notice",
| method: "put",
| data: { noticeId, status },
| });
| }
|
| // 一键标记所有消息为已读
| export function markAllAsRead() {
| return request({
| url: "/system/notice/readAll",
| method: "post",
| });
| }
|
| // 确认消息
| export function confirmMessage(noticeId, status) {
| return request({
| url: "/system/notice",
| method: "put",
| data: { noticeId, status },
| });
| }
|
|