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.
25 lines
803 B
25 lines
803 B
import http from '../http'
|
|
// 根据模具号查询信息
|
|
export function getToolDetailsByNumber(params) {
|
|
return http.get('/eam/tool/tool-accounts/get',{params})
|
|
}
|
|
// 根据厂区查询模具
|
|
export function getToolByFactoryAreaNumber(factoryAreaNumber) {
|
|
return http.get('/eam/tool/tool-accounts/noPage')
|
|
}
|
|
// 模具分页列表
|
|
export function toolPage(params) {
|
|
return http.get('/eam/tool/tool-accounts/page',{params})
|
|
}
|
|
// 模具列表
|
|
export function toolList(params) {
|
|
return http.get('/eam/tool/tool-accounts/noPage',{params})
|
|
}
|
|
// 模具列表不分页
|
|
export function toolNoPage(params) {
|
|
return http.get('/eam/tool/tool-accounts/noPage',{params})
|
|
}
|
|
// 新增申领备件时获取模具列表
|
|
export function getApplyToolList() {
|
|
return http.get('/eam/tool/tool-accounts/noPage')
|
|
}
|