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.
22 lines
576 B
22 lines
576 B
import request from '@/config/axios'
|
|
|
|
// 供应商首页
|
|
export const getSupplierData = async () => {
|
|
return await request.get({ url: `/wms/index/indexSupplier` })
|
|
}
|
|
|
|
// 原料管理员首页
|
|
export const getMaterialData = async () => {
|
|
return await request.get({ url: `/wms/index/indexMaterial` })
|
|
}
|
|
|
|
// 生产管理员首页
|
|
export const getProduceData = async () => {
|
|
return await request.get({ url: `/wms/index/indexProduce` })
|
|
}
|
|
|
|
// 成品管理员首页
|
|
export const getProductData = async () => {
|
|
return await request.get({ url: `/wms/index/indexProduct` })
|
|
}
|
|
|
|
|