gaoluyang
10 小时以前 411f08ca0285953d9ec3f7d493bdc696ac46de2e
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
import request from '@/utils/request'
 
// 登录方法
export function loginCheckFactory(username, password, factoryId) {
  const data = {
    username,
    password,
    factoryId
  }
  return request({
    url: '/loginCheckFactory',
    headers: {
      isToken: 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
  })
}