currentList接口从post改为get

This commit is contained in:
zzyuan 2025-09-02 10:41:53 +08:00
parent b233cea4ed
commit c406570d7a
1 changed files with 3 additions and 6 deletions

View File

@ -11,15 +11,12 @@ export function getDishInfoApi(data) {
export function getCurrentRecipeListApi(data) { export function getCurrentRecipeListApi(data) {
return request({ return request({
url: '/smart-canteen/cook_recipe/currentList', url: '/smart-canteen/cook_recipe/currentList',
method: 'post', method: 'get',
headers: { headers: {
//"merchant-id":"378915229716713472", //"merchant-id":"378915229716713472",
}, },
data: data, // data: data,
params:{ params:data
pageNum:data.pageNum,
pageSize:data.pageSize
}
}) })
} }
export function getCertificateListApi(data) { export function getCertificateListApi(data) {