## 修改为POST方式;

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

View File

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