spring
10 小时以前 d9a32749f1a80cdb57ca9ba3d37696ddaea93883
src/api/viewIndex.js
@@ -44,4 +44,31 @@
        url: '/sales/ledger/getAmountHalfYear',
        method: 'get'
    })
}
// 各生产订单的完成进度统计
// /home/progressStatistics
export const getProgressStatistics = ()=>{
    return request({
        url: '/home/progressStatistics',
        method: 'get'
    })
}
//在制品周转情况
//home/workInProcessTurnover
export const getWorkInProcessTurnover= ()=>{
    return request({
        url: '/home/workInProcessTurnover',
        method: 'get'
    })
}
// 产品大类分布
// /home/productCategoryDistribution
export const productCategoryDistribution = () => {
    return request({
        url: '/home/productCategoryDistribution',
        method: 'get'
    })
}