## 修改为POST方式;

This commit is contained in:
cabbage 2025-07-29 15:22:01 +08:00
parent 1cf709ee61
commit 2ecc56f64e
1 changed files with 2 additions and 2 deletions

View File

@ -209,8 +209,8 @@ public class ApiOthSaOrderController extends ParentOrderController {
* @param param
* @return
*/
@GetMapping("/check-before-confirm")
public AjaxResult checkBeforeConfirm(CarWaresInfoParam param) {
@PostMapping("/check-before-confirm")
public AjaxResult checkBeforeConfirm(@RequestBody CarWaresInfoParam param) {
if (null == param.getSpecialArea() || CollectionUtil.isEmpty(param.getShoppingIds())) {
return AjaxResult.error("参数不能为空");
}