index.js 257 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 const routers = [ // 买家订单 // owner: {sell, buy} 订单来源 // status: 订单状态 { name: 'BuyerOrderList', path: '/xianyu/:owner/order/list/:status?', component: () => import('./order-list'), }, ]; export default routers;