|
@@ -1,9 +1,9 @@
|
|
|
'use strict';
|
|
|
// 路由配置
|
|
|
const routes = [
|
|
|
- { method: 'get', path: '/updateapply', controller: 'achievementSetting.index', name: 'updateapplyQuery', zh: '绩效修改申请列表查询' },
|
|
|
- { method: 'post', path: '/updateapply', controller: 'achievementSetting.create', name: 'updateapplyCreate', zh: '创建绩效修改申请设置' },
|
|
|
- { method: 'post', path: '/updateapply/:id', controller: 'achievementSetting.update', name: 'updateapplyUpdate', zh: '修改绩效修改申请设置' },
|
|
|
+ { method: 'get', path: '/updateapply', controller: 'updateapply.index', name: 'updateapplyQuery', zh: '绩效修改申请列表查询' },
|
|
|
+ { method: 'post', path: '/updateapply', controller: 'updateapply.create', name: 'updateapplyCreate', zh: '创建绩效修改申请设置' },
|
|
|
+ { method: 'post', path: '/updateapply/:id', controller: 'updateapply.update', name: 'updateapplyUpdate', zh: '修改绩效修改申请设置' },
|
|
|
// { method: 'delete', path: '/updateapply/:id', controller: 'achievementSetting.destroy', name: 'settingDelete', zh: '删除绩效设置' },
|
|
|
];
|
|
|
|