//ifs零件属性接口 import request from '@/utils/request' // 新增或保存零件属性 export function saveOrUpdateProps(data) { return request({ url: '/ifsPartProps/saveOrUpdateProps', method: 'post', data: data }) } // 查询ifs订单的零件属性记录 export function getOneByIfsId(ifsId) { return request({ url: '/ifsPartProps/getOneByIfsId/' + ifsId, method: 'get' }) }