heli-mes/mes-ui/mes-ui-admin-vue3/src/api/heli/saleordercost/index.ts
2025-01-09 18:29:48 +08:00

26 lines
569 B
TypeScript

import request from '@/config/axios'
export interface TaskVO {
id: number,
code: string,
projectCode: string,
projectName: string,
customerName: string,
projectSubName: string,
projectSubId: number,
}
// 查询生产计划分页
export const getPlanBb = async (params) => {
return await request.get({ url: `/heli/project-order/pageCost`, params })
}
// 查询生产计划
export const getPlanCost = async (id: number,projectSubId: number) => {
return await request.get({ url: `/heli/project-order/getCost?id=`+id+`&projectSubId=`+projectSubId })
}