You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
731 B
52 lines
731 B
import request from '@/utils/request'
|
|
|
|
/**
|
|
* 各垮计划完成情况
|
|
*/
|
|
export const getGkjhwcqk=function(){
|
|
return request({
|
|
url: '/kban/gxjhwcqk',
|
|
method: 'get',
|
|
})
|
|
}
|
|
|
|
/**
|
|
* 各月份产量(吨)
|
|
*/
|
|
export const getQyfcl=function(){
|
|
return request({
|
|
url: '/kban/gyfcl',
|
|
method: 'get',
|
|
})
|
|
}
|
|
|
|
/**
|
|
* 计划完成情况(吨)
|
|
*/
|
|
export const getJhwcqk=function(){
|
|
return request({
|
|
url: '/kban/jhwcqk',
|
|
method: 'get',
|
|
})
|
|
}
|
|
|
|
/**
|
|
* 各垮产量
|
|
*/
|
|
export const getGekuachaliang=function(){
|
|
return request({
|
|
url: '/kban/gekuachaliang',
|
|
method: 'get',
|
|
})
|
|
}
|
|
|
|
/**
|
|
* 考勤情况
|
|
*/
|
|
export const getKqData=function(){
|
|
return request({
|
|
url: '/kban/kq',
|
|
method: 'get',
|
|
})
|
|
}
|