This commit is contained in:
lixin
2018-12-14 17:21:41 +08:00
parent 2d6d5b382d
commit 971c658d97
14 changed files with 2074 additions and 9 deletions

View File

@@ -0,0 +1,25 @@
import request from '@/utils/request'
// 初始化日历
export function initClendar(year, month) {
return request({
url: '',
method: 'post',
data: {
type: '1',
name: '车间生产管理工艺_基础表_工作日历_获得状态',
param: '工作年=' + year + '&工作月=' + month
}
})
}
// 修改工作状态
export function changeState(time, code) {
return request({
url: '',
method: 'post',
data: {
type: '2',
name: '车间生产管理工艺_基础表_工作日历_设置状态',
param: '工作日期=' + time + '&工作日状态=' + code
}
})
}