This commit is contained in:
bryan sun
2019-10-24 15:45:13 +08:00
parent a6fee1fea0
commit f65eb643fb
20 changed files with 520 additions and 532 deletions

View File

@@ -1,14 +1,13 @@
import request from '@/utils/request'
export function getData(num, num1, pageCurrent, pageSize) {
export function getData(num, num1) {
return request({
url: '',
method: 'post',
data: {
type: '1',
name: '车间生产管理_设备运行情况_查询数据',
param: '工位号=' + num + '&日期=' + num1,
pagination: pageCurrent + '&' + pageSize
param: '工位号=' + num + '&日期=' + num1
}
})
}