xiaoyong931011
2022-11-28 f214dd3e6828de72ee615097a65a1f2df88e047a
src/main/java/cc/mrbird/febs/mall/controller/ViewMallOrderController.java
@@ -32,10 +32,30 @@
     * 订单列表
     * @return
     */
    @GetMapping("orderRefundList")
    @RequiresPermissions("orderRefundList:view")
    public String orderRefundList() {
        return FebsUtil.view("modules/order/orderRefundList");
    }
    /**
     * 订单列表
     * @return
     */
    @GetMapping("orderList")
    @RequiresPermissions("orderList:view")
    public String orderList() {
        return FebsUtil.view("modules/order/orderList");
    }
    /**
     * 评论列表
     * @return
     */
    @GetMapping("commentList")
    @RequiresPermissions("commentList:view")
    public String commentList() {
        return FebsUtil.view("modules/order/commentList");
    }
    /**
@@ -195,4 +215,16 @@
        return FebsUtil.view("modules/order/refundPayInfo");
    }
    /**
     * 订单列表-统计商品份数
     * @return
     */
    public static String orderIdsStr;
    @GetMapping("/goodsStatistics/{statistics}")
    @RequiresPermissions("goodsStatistics:update")
    public String goodsStatistics(@PathVariable String statistics, Model model) {
        orderIdsStr = statistics;
        return FebsUtil.view("modules/order/goodsStatistics");
    }
}