APPbug反馈修改

This commit is contained in:
仲么了
2023-08-10 09:18:17 +08:00
parent 192bd44c7a
commit f395da8f93
48 changed files with 1420 additions and 480 deletions

View File

@@ -48,3 +48,23 @@ export function deleteEngineering(id) {
},
})
}
// 查询工程配置列表
export function queryAllEnginner(params) {
return request({
url: '/cs-device-boot/csMarketData/queryAllEnginner',
method: 'post',
})
}
// 更新工程配置
export function csMarketDataAdd(params) {
return request({
url: '/cs-device-boot/csMarketData/follow',
method: 'post',
data: params,
header: {
'Content-Type': 'application/json',
},
})
}