index.js 347 B

12345678910111213141516
  1. import module from '../../module';
  2. import group from '../group';
  3. export default {
  4. path: '/setting/contract/detail',
  5. matchPath: '/setting/contract/detail/:key?',
  6. key: 'setting-contract-detail',
  7. title: '合同详情',
  8. needLogin: true,
  9. module,
  10. group,
  11. showKey: 'setting-contract',
  12. component() {
  13. return import('./page');
  14. },
  15. };