Compare commits

...

2 Commits

Author SHA1 Message Date
zhouxain01 a493718dbd Merge remote-tracking branch 'origin/dev' into dev 2023-12-20 20:13:43 +08:00
zhouxain01 5d1c802cb6 提交新增接口base 2023-12-20 20:13:27 +08:00
1 changed files with 16 additions and 0 deletions

View File

@ -154,6 +154,22 @@ export function unitTypeList(query) {
params: query
})
}
// 标签编号-列表
export function getMaMachineLabelApi(query) {
return request({
url: '/base/maMachineLabel/list',
method: 'get',
params: query
})
}
//单位类型--新增
export function addMaMachineLabelApi(data) {
return request({
url: '/base/maMachineLabel',
method: 'post',
data: data
})
}
// 单位类型-详情
export function unitTypeDetail(query) {
return request({