1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| //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'
| })
| }
|
|