xiaoyong931011
2022-12-23 78bbc1dae1bb20acb51fd454adf53b3ab5ae97b3
src/main/java/cc/mrbird/febs/mall/controller/ViewMallOrderController.java
@@ -28,6 +28,8 @@
    public static long idFromRefund;
    public static long seeOrderFlowByOrderId;
    /**
     * 订单列表
     * @return
@@ -36,6 +38,16 @@
    @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 +207,17 @@
        return FebsUtil.view("modules/order/refundPayInfo");
    }
    /**
     * 订单-流水详情
     * @param id
     * @param model
     * @return
     */
    @GetMapping("seeOrderFlow/{id}")
    @RequiresPermissions("seeOrderFlow:view")
    public String seeOrderFlow(@PathVariable long id, Model model) {
        seeOrderFlowByOrderId = id;
        return FebsUtil.view("modules/order/orderMoneyFlow");
    }
}