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:
@@ -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');
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user