feat: add material search filters to semi, product, service modules

Co-authored-by: aider (openai/DeepSeek-V3.2-Thinking) <aider@aider.chat>
This commit is contained in:
dxc
2026-02-11 14:42:16 +08:00
parent b3fdc65d33
commit 9f0134b2e4
10 changed files with 195 additions and 14 deletions

View File

@ -49,3 +49,11 @@ export function getUserSuggestions(params: any) {
params
})
}
// 筛选选项
export function getFilterOptions() {
return request({
url: '/inbound/product/options',
method: 'get'
})
}

View File

@ -52,3 +52,11 @@ export function getUserSuggestions(params: any) {
params
})
}
// 筛选选项
export function getFilterOptions() {
return request({
url: '/inbound/semi/options',
method: 'get'
})
}

View File

@ -122,6 +122,14 @@ export function getUserSuggestions(params: any) {
})
}
// 筛选选项
export function getFilterOptions() {
return request({
url: '/v1/inbound/service/options',
method: 'get'
})
}
// 删除服务权益
export function deleteService(id: number) {
return request({