fix: 将商户订单菜单移到现有"订单"目录下 & 修复打印路径

- 将商户订单、商户退款、商户预约路由从独立顶级菜单移入orderRouter.children
- 移除merchantOrderRouter独立注册,改为在order.js中直接添加子路由
- 修正订单打印路径从/merchantOrder/print/改为/order/merchantPrint/
- 修正index.vue中打印跳转路径引用

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
AriadenCaseblg
2026-04-10 11:34:49 +08:00
parent 61c5d964a3
commit 051dffcb7b
3 changed files with 35 additions and 5 deletions

View File

@@ -662,7 +662,7 @@ export default {
// 订单打印(新窗口打开打印页)
handleOrderPrint(row) {
const routeData = this.$router.resolve({
path: `/merchantOrder/print/${row.orderNo}`,
path: `/order/merchantPrint/${row.orderNo}`,
});
window.open(routeData.href, '_blank');
},