update 区域管理

This commit is contained in:
2021-04-29 15:55:23 +08:00
parent ebd7d303dd
commit 4ff305ebf2
7 changed files with 509 additions and 1 deletions

View File

@@ -12,7 +12,9 @@
*/
import sys from './sys'
import business from './business'
export default {
...sys
...sys,
...business
}

View File

@@ -0,0 +1,7 @@
export default {
getAreaTree: ['/sysArea/tree', 'get'],
sysAreaPage: ['/sysArea/page', 'get'],
sysAreaAdd: ['/sysArea/add', 'post'],
sysAreaEdit: ['/sysArea/edit', 'post'],
sysAreaDelete:[ '/sysArea/delete','post'],
}

View File

@@ -17,6 +17,7 @@ import smsManage from './smsManage'
import tenantManage from './tenantManage'
import timersManage from './timersManage'
import userManage from './userManage'
import areaManage from './areaManage'
export default {
...appManage,
@@ -38,4 +39,5 @@ export default {
...tenantManage,
...timersManage,
...userManage,
...areaManage,
}