This commit is contained in:
齐天大圣 2024-10-31 08:53:01 +08:00
parent 1bae1749c7
commit fa8a8181b8

View File

@ -208,4 +208,19 @@ export function getDataCount(query) {
params:query params:query
}); });
} }
// 根据字典类型查询字典数据信息
export function getDicts(dictType) {
return request({
url: '/system/dict/data/type/' + dictType,
method: 'get'
})
}
// 根据字典类型查询字典数据信息
export function getStaffByStorId() {
return request({
url: 'business/allOrderInfo/getStaffByStorId',
method: 'get'
})
}