wlzboy
2026-04-01 c459808efab29dc1b8439fbb90556bdb16f4c88b
ruoyi-ui/src/router/index.js
@@ -145,6 +145,27 @@
    hidden: false,
    name: 'H5TaskCreate',
    meta: { title: '创建任务' }
  },
  {
    path: '/system/invoice/detail',
    component: () => import('@/views/system/invoice/detail'),
    name: 'InvoiceDetail',
    hidden: true,
    meta: { title: '发票详情', activeMenu: '/system/invoice' }
  },
  {
    path: '/system/invoice/audit',
    component: () => import('@/views/system/invoice/audit'),
    name: 'InvoiceAudit',
    hidden: true,
    meta: { title: '审核发票', activeMenu: '/system/invoice' }
  },
  {
    path: '/system/invoice/apply',
    component: () => import('@/views/system/invoice/apply'),
    name: 'InvoiceApply',
    hidden: true,
    meta: { title: '申请发票', activeMenu: '/system/invoice' }
  }
]
@@ -202,6 +223,29 @@
    ]
  },
  
  // 支付管理路由
  {
    path: "/payment",
    component: Layout,
    redirect: "/payment/order",
    name: "Payment",
    meta: {
      title: "支付管理",
      icon: "money"
    },
    children: [
      {
        path: "order",
        component: () => import("@/views/payment/order/index"),
        name: "PayOrder",
        meta: {
          title: "支付订单查询",
          icon: "el-icon-s-order"
        }
      }
    ]
  },
  {
    path: '/system/user-auth',
    component: Layout,