新增商品列表拖拽排序

This commit is contained in:
gyq
2024-06-06 09:13:37 +08:00
parent 526aeda953
commit 192c37c946
6 changed files with 74 additions and 13 deletions

View File

@@ -443,3 +443,15 @@ export function queryAllShopUser(params) {
}
});
}
/**
* 修改商品排序
* @returns
*/
export function upProSort(data) {
return request({
url: `/api/tbProduct/upProSort`,
method: "post",
data
});
}