2
schangxiang@126.com
2024-06-13 1fe3373ea42cad2c262211adc76314081a7d92e6
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
/**
 * 系统应用
 *
 * @author yhh
 */
import { axios } from '@/utils/request'
 
/**
 * 获取库位数据
 *
 * @author yhh
 */
export function GetPalceNumbers () {
  return axios({
    url: '/locationview/GetPalceDetail',
    method: 'get'
  })
}
 
/**
 * 获取出入库统计数据
 *
 * @author yhh
 */
export function GeInOutTaskNumber (params) {
  return axios({
    url: '/locationview/task-detail',
    method: 'get',
    params: params
  })
}
 
/**
 * 获取出入库总数
 *
 * @author yhh
 */
export function GeInOutTotalNumber () {
  return axios({
    url: '/locationview/GetTaskCount',
    method: 'get'
  })
}
 
// 获取设备状态
export function GetEquipmentCurrentState() {
    return axios({
        url: `/AccessInterface/GetEquipmentCurrentState `,
        method: 'get'
    })
}
 
/**
 * 获取质量数据
 */
 export function getQualityData(params) {
    return axios({
      url: '/accessinterface/GetQualityData',
      method: 'get',
      params
    })
  }
 
// 获取定时器时间
export function getLargeScreenFrequency() {
    return axios({
      url: '/accessinterface/GetLargeScreenFrequency',
      method: 'get'
    })
  }
 
//   获取生产完成趋势数据
export function getProduceCompletionStatus() {
    return axios({
      url: '/accessinterface/GetProduceCompletionStatus',
      method: 'get'
    })
  }
 
  //   获取产量统计数据 
export function getCurrentProduceInfo() {
    return axios({
      url: '/accessinterface/GetCurrentProduceInfo',
      method: 'get'
    })
  }