123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- import Layout from '@/layout/index';
- const platformauditRouter = {
- path: '/platformaudit',
- component: Layout,
- redirect: '/platformaudit',
- name: 'platformaudit',
- alwaysShow: true, // will always show the root menu
- meta: {
- title: 'platformaudit',
- module: 'audit',
- icon: '-shenhe'
- },
- children: [
- // // 粮商审核
- // {
- // path: 'grainmerchantreview',
- // component: () =>
- // import ( /* webpackChunkName: "applDetail" */ '@/views/platformaudit/grainmerchantreview'),
- // name: 'grainmerchantreview',
- // meta: {
- // title: 'grainmerchantreview',
- // shortcutEntrance: 'grainmerchantreview',
- // module: 'audit.grainMerchant.grainMerchantInfo',
- // permissicon: [],
- // keepAlive: true,
- // _title: '粮商审核'
- // },
- // },
- // //司机审核
- // {
- // path: 'driverreview',
- // component: () =>
- // import ( /* webpackChunkName: "applDetail" */ '@/views/platformaudit/driverreview'),
- // name: 'driverreview',
- // meta: {
- // title: 'driverreview',
- // shortcutEntrance: 'driverreview',
- // module: 'audit.driverMerchant.driverMerchantInfo',
- // permissicon: [],
- // keepAlive: true,
- // _title: '司机审核'
- // },
- // },
- // //采购交易信息审核
- // {
- // path: 'transactioninformationreview',
- // component: () =>
- // import ( /* webpackChunkName: "applDetail" */ '@/views/platformaudit/transactioninformationreview'),
- // name: 'transactioninformationreview',
- // meta: {
- // title: 'transactioninformationreview',
- // shortcutEntrance: 'transactioninformationreview',
- // module: 'audit.tranMerchant.tranMerchantInfo',
- // permissicon: [],
- // keepAlive: true,
- // _title: '采购信息审核'
- // },
- // },
- // //销售交易信息审核
- // {
- // path: 'saletransactioninformationreview',
- // component: () =>
- // import ( /* webpackChunkName: "applDetail" */ '@/views/platformaudit/saletransactioninformationreview'),
- // name: 'saletransactioninformationreview',
- // meta: {
- // title: 'saletransactioninformationreview',
- // shortcutEntrance: 'saletransactioninformationreview',
- // module: 'audit.tranMerchant.tranMerchantInfo',
- // permissicon: [],
- // keepAlive: true,
- // _title: '销售信息审核'
- // },
- // },
- // //粮脉企业审核
- // {
- // path: 'grainpulseenterprisereview',
- // component: () =>
- // import ( /* webpackChunkName: "applDetail" */ '@/views/platformaudit/grainpulseenterprisereview'),
- // name: 'grainpulseenterprisereview',
- // meta: {
- // title: 'grainpulseenterprisereview',
- // shortcutEntrance: 'grainpulseenterprisereview',
- // module: 'audit.tranMerchant.tranMerchantInfo',
- // permissicon: [],
- // keepAlive: true,
- // _title: '粮脉企业审核'
- // },
- // },
- // //粮脉动态审核
- // {
- // path: 'grainPulseDynamic',
- // component: () =>
- // import ( /* webpackChunkName: "applDetail" */ '@/views/platformaudit/grainPulseDynamic'),
- // name: 'grainPulseDynamic',
- // meta: {
- // title: 'grainPulseDynamic',
- // shortcutEntrance: 'grainPulseDynamic',
- // module: 'audit.grainMerchant.grainMerchantInfo.review',
- // permissicon: [],
- // keepAlive: true,
- // _title: '粮脉动态审核'
- // },
- // },
- // //交易信息审核
- // {
- // path: 'tradeInformation',
- // component: () =>
- // import ( /* webpackChunkName: "applDetail" */ '@/views/platformaudit/tradeInformation'),
- // name: 'tradeInformation',
- // meta: {
- // title: 'tradeInformation',
- // shortcutEntrance: 'tradeInformation',
- // module: 'audit.grainMerchant.grainMerchantInfo.review',
- // permissicon: [],
- // keepAlive: true,
- // _title: '交易信息审核'
- // },
- // },
- // // 客服留言
- // {
- // path: 'customerService',
- // component: () =>
- // import ( /* webpackChunkName: "applDetail" */ '@/views/platformaudit/customerService'),
- // name: 'customerService',
- // meta: {
- // title: 'customerService',
- // shortcutEntrance: 'customerService',
- // module: 'audit.grainMerchant.grainMerchantInfo',
- // permissicon: [],
- // keepAlive: true,
- // _title: '客服留言'
- // },
- // },
- ],
- };
- export default platformauditRouter;
|