1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
| -- save basStationArea record
| -- mysql
| insert into `sys_menu` ( `name`, `parent_id`, `route`, `component`, `type`, `sort`, `tenant_id`, `status`) values ( 'menu.basStationArea', '0', '/manager/basStationArea', 'basStationArea', '0' , '0', '1' , '1');
|
| insert into `sys_menu` ( `name`, `parent_id`, `type`, `authority`, `sort`, `tenant_id`, `status`) values ( 'Query 物料权限', '', '1', 'manager:basStationArea:list', '0', '1', '1');
| insert into `sys_menu` ( `name`, `parent_id`, `type`, `authority`, `sort`, `tenant_id`, `status`) values ( 'Create 物料权限', '', '1', 'manager:basStationArea:save', '1', '1', '1');
| insert into `sys_menu` ( `name`, `parent_id`, `type`, `authority`, `sort`, `tenant_id`, `status`) values ( 'Update 物料权限', '', '1', 'manager:basStationArea:update', '2', '1', '1');
| insert into `sys_menu` ( `name`, `parent_id`, `type`, `authority`, `sort`, `tenant_id`, `status`) values ( 'Delete 物料权限', '', '1', 'manager:basStationArea:remove', '3', '1', '1');
|
| -- locale menu name
| basStationArea: 'BasStationArea',
|
| -- locale field
| basStationArea: {
| type: "type",
| stationAreaName: "stationAreaName",
| inAble: "inAble",
| outAble: "outAble",
| useStatus: "useStatus",
| area: "area",
| isCrossZone: "isCrossZone",
| crossZoneArea: "crossZoneArea",
| isWcs: "isWcs",
| wcsData: "wcsData",
| containerType: "containerType",
| barcode: "barcode",
| autoTransfer: "autoTransfer",
| stationAreaId: "stationAreaId",
| stationAlias: "stationAlias",
| },
|
| -- ResourceContent
| import basStationArea from './basStationArea';
|
| case 'basStationArea':
| return basStationArea;
|
|