@ -1,531 +0,0 @@ |
|||||
# 诺力三期WMS |
|
||||
|
|
||||
```java |
|
||||
├── cockpit |
|
||||
│ ├── controller |
|
||||
│ │ └── CockPitController.java |
|
||||
│ └── service |
|
||||
│ ├── CockpitService.java |
|
||||
│ ├── dao |
|
||||
│ │ ├── PersonnelMonthlyProductionVo.java |
|
||||
│ │ ├── PressProductHeaderVo.java |
|
||||
│ │ ├── ProductTaskVo.java |
|
||||
│ │ └── ShiftProductionVo.java |
|
||||
│ ├── impl |
|
||||
│ │ └── CockpitServiceImpl.java |
|
||||
│ └── mapper |
|
||||
│ ├── CockPitMapper.java |
|
||||
│ └── CockPitMapper.xml |
|
||||
├── das |
|
||||
│ ├── device |
|
||||
│ │ ├── check |
|
||||
│ │ │ ├── controller |
|
||||
│ │ │ │ └── DasDeviceCheckRecordController.java |
|
||||
│ │ │ └── service |
|
||||
│ │ │ ├── dao |
|
||||
│ │ │ │ ├── DasDeviceCheckRecord.java |
|
||||
│ │ │ │ └── mapper |
|
||||
│ │ │ │ ├── DasDeviceCheckRecordMapper.java |
|
||||
│ │ │ │ └── DasDeviceCheckRecordMapper.xml |
|
||||
│ │ │ ├── dto |
|
||||
│ │ │ │ ├── DasDeviceCheckRecordDto.java |
|
||||
│ │ │ │ └── DasDeviceCheckRecordQuery.java |
|
||||
│ │ │ ├── IDasDeviceCheckRecordService.java |
|
||||
│ │ │ └── impl |
|
||||
│ │ │ └── DasDeviceCheckRecordServiceImpl.java |
|
||||
│ │ └── operation |
|
||||
│ │ ├── controller |
|
||||
│ │ │ └── DasDeviceOperationRecordController.java |
|
||||
│ │ └── service |
|
||||
│ │ ├── dao |
|
||||
│ │ │ ├── DasDeviceOperationRecord.java |
|
||||
│ │ │ └── mapper |
|
||||
│ │ │ ├── DasDeviceOperationRecordMapper.java |
|
||||
│ │ │ └── DasDeviceOperationRecordMapper.xml |
|
||||
│ │ ├── dto |
|
||||
│ │ │ ├── DasDeviceOperationRecordDto.java |
|
||||
│ │ │ └── DasDeviceOperationRecordQuery.java |
|
||||
│ │ ├── IDasDeviceOperationRecordService.java |
|
||||
│ │ └── impl |
|
||||
│ │ └── DasDeviceOperationRecordServiceImpl.java |
|
||||
│ └── inspection |
|
||||
│ ├── controller |
|
||||
│ │ └── DasQualityInspectionController.java |
|
||||
│ └── service |
|
||||
│ ├── dao |
|
||||
│ │ ├── DasQualityInspection.java |
|
||||
│ │ └── mapper |
|
||||
│ │ ├── DasQualityInspectionMapper.java |
|
||||
│ │ └── DasQualityInspectionMapper.xml |
|
||||
│ ├── dto |
|
||||
│ │ ├── DasQualityInspectionDto.java |
|
||||
│ │ └── DasQualityInspectionQuery.java |
|
||||
│ ├── IDasQualityInspectionService.java |
|
||||
│ └── impl |
|
||||
│ └── DasQualityInspectionServiceImpl.java |
|
||||
├── database |
|
||||
│ ├── brick |
|
||||
│ │ ├── controller |
|
||||
│ │ │ └── MdBaseBrickInfoController.java |
|
||||
│ │ └── service |
|
||||
│ │ ├── dao |
|
||||
│ │ │ ├── mapper |
|
||||
│ │ │ │ ├── MdBaseBrickInfoMapper.java |
|
||||
│ │ │ │ └── MdBaseBrickInfoMapper.xml |
|
||||
│ │ │ └── MdBaseBrickInfo.java |
|
||||
│ │ ├── dto |
|
||||
│ │ │ ├── MdBaseBrickInfoDto.java |
|
||||
│ │ │ └── MdBaseBrickInfoQuery.java |
|
||||
│ │ ├── IMdBaseBrickInfoService.java |
|
||||
│ │ └── impl |
|
||||
│ │ └── MdBaseBrickInfoServiceImpl.java |
|
||||
│ ├── classification |
|
||||
│ │ ├── controller |
|
||||
│ │ │ └── MdBaseClassstandardController.java |
|
||||
│ │ └── service |
|
||||
│ │ ├── dao |
|
||||
│ │ │ ├── mapper |
|
||||
│ │ │ │ ├── MdBaseClassstandardMapper.java |
|
||||
│ │ │ │ └── MdBaseClassstandardMapper.xml |
|
||||
│ │ │ └── MdBaseClassstandard.java |
|
||||
│ │ ├── dto |
|
||||
│ │ │ ├── MdBaseClassstandardDto.java |
|
||||
│ │ │ ├── MdBaseClassstandardQuery.java |
|
||||
│ │ │ └── MdBaseClassstandardTrees.java |
|
||||
│ │ ├── IMdBaseClassstandardService.java |
|
||||
│ │ └── impl |
|
||||
│ │ └── MdBaseClassstandardServiceImpl.java |
|
||||
│ ├── material |
|
||||
│ │ ├── controller |
|
||||
│ │ │ └── MdBaseMaterialController.java |
|
||||
│ │ └── service |
|
||||
│ │ ├── dao |
|
||||
│ │ │ ├── mapper |
|
||||
│ │ │ │ ├── MdBaseMaterialMapper.java |
|
||||
│ │ │ │ └── MdBaseMaterialMapper.xml |
|
||||
│ │ │ └── MdBaseMaterial.java |
|
||||
│ │ ├── dto |
|
||||
│ │ │ ├── MdBaseMaterialDto.java |
|
||||
│ │ │ └── MdBaseMaterialQuery.java |
|
||||
│ │ ├── IMdBaseMaterialService.java |
|
||||
│ │ └── impl |
|
||||
│ │ └── MdBaseMaterialServiceImpl.java |
|
||||
│ ├── vehicle |
|
||||
│ │ ├── controller |
|
||||
│ │ │ └── MdBaseVehicleController.java |
|
||||
│ │ └── service |
|
||||
│ │ ├── dao |
|
||||
│ │ │ ├── mapper |
|
||||
│ │ │ │ ├── MdBaseVehicleMapper.java |
|
||||
│ │ │ │ └── MdBaseVehicleMapper.xml |
|
||||
│ │ │ └── MdBaseVehicle.java |
|
||||
│ │ ├── dto |
|
||||
│ │ │ ├── MdBaseVehicleDto.java |
|
||||
│ │ │ └── MdBaseVehicleQuery.java |
|
||||
│ │ ├── IMdBaseVehicleService.java |
|
||||
│ │ └── impl |
|
||||
│ │ └── MdBaseVehicleServiceImpl.java |
|
||||
│ └── workshop |
|
||||
│ ├── controller |
|
||||
│ │ └── MdBaseWorkshopController.java |
|
||||
│ └── service |
|
||||
│ ├── dao |
|
||||
│ │ ├── mapper |
|
||||
│ │ │ ├── MdBaseWorkshopMapper.java |
|
||||
│ │ │ └── MdBaseWorkshopMapper.xml |
|
||||
│ │ └── MdBaseWorkshop.java |
|
||||
│ ├── dto |
|
||||
│ │ ├── MdBaseWorkshopDto.java |
|
||||
│ │ └── MdBaseWorkshopQuery.java |
|
||||
│ ├── IMdBaseWorkshopService.java |
|
||||
│ └── impl |
|
||||
│ └── MdBaseWorkshopServiceImpl.java |
|
||||
├── ext |
|
||||
│ ├── acs |
|
||||
│ │ ├── controller |
|
||||
│ │ │ └── AcsToWmsController.java |
|
||||
│ │ └── service |
|
||||
│ │ ├── AcsToWmsService.java |
|
||||
│ │ ├── dto |
|
||||
│ │ │ ├── BrickInfoDto.java |
|
||||
│ │ │ ├── PalletizeDto.java |
|
||||
│ │ │ ├── Resp.java |
|
||||
│ │ │ ├── ResultForAcs.java |
|
||||
│ │ │ ├── SignalData.java |
|
||||
│ │ │ └── to |
|
||||
│ │ │ ├── acs |
|
||||
│ │ │ │ ├── ApplyTaskResponse.java |
|
||||
│ │ │ │ ├── CancelTaskRequest.java |
|
||||
│ │ │ │ ├── DeviceInfoDto.java |
|
||||
│ │ │ │ ├── FeedBackTaskStatusResponse.java |
|
||||
│ │ │ │ ├── GetPalletizeResponse.java |
|
||||
│ │ │ │ ├── GrabResponse.java |
|
||||
│ │ │ │ ├── IssueAcsRequest.java |
|
||||
│ │ │ │ └── PutActionRequest.java |
|
||||
│ │ │ ├── BaseRequest.java |
|
||||
│ │ │ ├── BaseResponse.java |
|
||||
│ │ │ └── wms |
|
||||
│ │ │ ├── AcsResponse.java |
|
||||
│ │ │ ├── ApplyDeviceDto.java |
|
||||
│ │ │ ├── ApplySignalStatusRequest.java |
|
||||
│ │ │ ├── ApplyTaskRequest.java |
|
||||
│ │ │ ├── CancelTaskResponse.java |
|
||||
│ │ │ ├── FeedBackSplitPalletStationRequest.java |
|
||||
│ │ │ ├── FeedBackTaskStatusRequest.java |
|
||||
│ │ │ ├── GetPalletizeRequest.java |
|
||||
│ │ │ ├── GrabRequest.java |
|
||||
│ │ │ └── PutActionResponse.java |
|
||||
│ │ ├── impl |
|
||||
│ │ │ ├── AcsToWmsServiceImpl.java |
|
||||
│ │ │ └── WmsToAcsServiceImpl.java |
|
||||
│ │ └── WmsToAcsService.java |
|
||||
│ ├── mes |
|
||||
│ │ ├── autotask |
|
||||
│ │ │ ├── AutoSaveGdyInfo.java |
|
||||
│ │ │ ├── AutoSaveProductionInfo.java |
|
||||
│ │ │ └── AutoSaveWaitGdyInfo.java |
|
||||
│ │ ├── controller |
|
||||
│ │ │ └── MesToWmsController.java |
|
||||
│ │ └── service |
|
||||
│ │ ├── dao |
|
||||
│ │ │ └── mapper |
|
||||
│ │ │ ├── MesRequestMapper.java |
|
||||
│ │ │ └── MesRequestMapper.xml |
|
||||
│ │ ├── dto |
|
||||
│ │ │ ├── MesGdyInfoDto.java |
|
||||
│ │ │ ├── MesGdyInfoWaitDto.java |
|
||||
│ │ │ ├── MesGdyMaterialInDto.java |
|
||||
│ │ │ ├── MesGdyMaterialOutDto.java |
|
||||
│ │ │ ├── MesMudConsumptionDto.java |
|
||||
│ │ │ ├── MesProductDataDto.java |
|
||||
│ │ │ ├── MesSemiProductionInfo.java |
|
||||
│ │ │ ├── MesSemiProductionInfoInDto.java |
|
||||
│ │ │ ├── MesSemiProductionInfoOutDto.java |
|
||||
│ │ │ ├── MesUnusedDto.java |
|
||||
│ │ │ ├── MesWorkOrderDto.java |
|
||||
│ │ │ └── ResultForMes.java |
|
||||
│ │ ├── impl |
|
||||
│ │ │ ├── MesToWmsServiceImpl.java |
|
||||
│ │ │ └── WmsToMesServiceImpl.java |
|
||||
│ │ ├── MesToWmsService.java |
|
||||
│ │ └── WmsToMesService.java |
|
||||
│ ├── mms |
|
||||
│ │ └── service |
|
||||
│ │ ├── dao |
|
||||
│ │ │ ├── dto |
|
||||
│ │ │ │ └── RequestMaterialDto.java |
|
||||
│ │ │ └── mapper |
|
||||
│ │ │ ├── MmsRequestMapper.java |
|
||||
│ │ │ └── MmsRequestMapper.xml |
|
||||
│ │ ├── impl |
|
||||
│ │ │ └── WmsToMmsServiceImpl.java |
|
||||
│ │ └── WmsToMmsService.java |
|
||||
│ └── record |
|
||||
│ ├── controller |
|
||||
│ │ └── SysInteractRecordController.java |
|
||||
│ └── service |
|
||||
│ ├── dao |
|
||||
│ │ ├── mapper |
|
||||
│ │ │ ├── SysInteractRecordMapper.java |
|
||||
│ │ │ └── SysInteractRecordMapper.xml |
|
||||
│ │ └── SysInteractRecord.java |
|
||||
│ ├── dto |
|
||||
│ │ ├── SysInteractRecordDto.java |
|
||||
│ │ └── SysInteractRecordQuery.java |
|
||||
│ ├── impl |
|
||||
│ │ └── SysInteractRecordServiceImpl.java |
|
||||
│ └── ISysInteractRecordService.java |
|
||||
├── pda |
|
||||
│ ├── controller |
|
||||
│ │ └── PdaController.java |
|
||||
│ └── service |
|
||||
│ ├── dao |
|
||||
│ │ ├── dto |
|
||||
│ │ │ ├── BlendingMoveDto.java |
|
||||
│ │ │ ├── ForcedRestingDto.java |
|
||||
│ │ │ ├── ManualGroupDto.java |
|
||||
│ │ │ ├── ManualResidueInDto.java |
|
||||
│ │ │ ├── ManualSortingDto.java |
|
||||
│ │ │ └── VehicleBindingDto.java |
|
||||
│ │ ├── mapper |
|
||||
│ │ │ ├── PdaMapper.java |
|
||||
│ │ │ └── PdaMapper.xml |
|
||||
│ │ └── vo |
|
||||
│ │ ├── DropdownListVo.java |
|
||||
│ │ ├── ManualWorkOrderVo.java |
|
||||
│ │ ├── PdaResponseVo.java |
|
||||
│ │ ├── StandTimeShowVo.java |
|
||||
│ │ └── TaskShowVo.java |
|
||||
│ ├── impl |
|
||||
│ │ ├── backup |
|
||||
│ │ └── PdaServiceImpl.java |
|
||||
│ └── PdaService.java |
|
||||
├── pdm |
|
||||
│ ├── consumption |
|
||||
│ │ ├── controller |
|
||||
│ │ │ └── PdmBdMudConsumptionController.java |
|
||||
│ │ └── service |
|
||||
│ │ ├── dao |
|
||||
│ │ │ ├── mapper |
|
||||
│ │ │ │ ├── PdmBdMudConsumptionMapper.java |
|
||||
│ │ │ │ └── PdmBdMudConsumptionMapper.xml |
|
||||
│ │ │ └── PdmBdMudConsumption.java |
|
||||
│ │ ├── dto |
|
||||
│ │ │ ├── PdmBdMudConsumptionDto.java |
|
||||
│ │ │ └── PdmBdMudConsumptionQuery.java |
|
||||
│ │ ├── impl |
|
||||
│ │ │ └── PdmBdMudConsumptionServiceImpl.java |
|
||||
│ │ └── IPdmBdMudConsumptionService.java |
|
||||
│ ├── record |
|
||||
│ │ ├── controller |
|
||||
│ │ │ └── PdmBdRequestMaterialRecordController.java |
|
||||
│ │ └── service |
|
||||
│ │ ├── dao |
|
||||
│ │ │ ├── mapper |
|
||||
│ │ │ │ ├── PdmBdRequestMaterialRecordMapper.java |
|
||||
│ │ │ │ └── PdmBdRequestMaterialRecordMapper.xml |
|
||||
│ │ │ └── PdmBdRequestMaterialRecord.java |
|
||||
│ │ ├── dto |
|
||||
│ │ │ ├── PdmBdRequestMaterialRecordDto.java |
|
||||
│ │ │ └── PdmBdRequestMaterialRecordQuery.java |
|
||||
│ │ ├── impl |
|
||||
│ │ │ └── PdmBdRequestMaterialRecordServiceImpl.java |
|
||||
│ │ └── IPdmBdRequestMaterialRecordService.java |
|
||||
│ ├── residue |
|
||||
│ │ ├── controller |
|
||||
│ │ │ └── PdmBdMaterialResidueController.java |
|
||||
│ │ └── service |
|
||||
│ │ ├── dao |
|
||||
│ │ │ ├── mapper |
|
||||
│ │ │ │ ├── PdmBdMaterialResidueMapper.java |
|
||||
│ │ │ │ └── PdmBdMaterialResidueMapper.xml |
|
||||
│ │ │ └── PdmBdMaterialResidue.java |
|
||||
│ │ ├── dto |
|
||||
│ │ │ ├── PdmBdMaterialResidueDto.java |
|
||||
│ │ │ └── PdmBdMaterialResidueQuery.java |
|
||||
│ │ ├── impl |
|
||||
│ │ │ └── PdmBdMaterialResidueServiceImpl.java |
|
||||
│ │ └── IPdmBdMaterialResidueService.java |
|
||||
│ ├── track |
|
||||
│ │ ├── controller |
|
||||
│ │ │ └── PdmBdProductionProcessTrackingController.java |
|
||||
│ │ └── service |
|
||||
│ │ ├── dao |
|
||||
│ │ │ ├── mapper |
|
||||
│ │ │ │ ├── PdmBdProductionProcessTrackingMapper.java |
|
||||
│ │ │ │ └── PdmBdProductionProcessTrackingMapper.xml |
|
||||
│ │ │ └── PdmBdProductionProcessTracking.java |
|
||||
│ │ ├── dto |
|
||||
│ │ │ ├── PdmBdProductionProcessTrackingDto.java |
|
||||
│ │ │ └── PdmBdProductionProcessTrackingQuery.java |
|
||||
│ │ ├── impl |
|
||||
│ │ │ └── PdmBdProductionProcessTrackingServiceImpl.java |
|
||||
│ │ └── IPdmBdProductionProcessTrackingService.java |
|
||||
│ ├── vehiclebiding |
|
||||
│ │ ├── controller |
|
||||
│ │ │ └── PdmBdVehicleBindingController.java |
|
||||
│ │ └── service |
|
||||
│ │ ├── dao |
|
||||
│ │ │ ├── mapper |
|
||||
│ │ │ │ ├── PdmBdVehicleBindingMapper.java |
|
||||
│ │ │ │ └── PdmBdVehicleBindingMapper.xml |
|
||||
│ │ │ └── PdmBdVehicleBinding.java |
|
||||
│ │ ├── dto |
|
||||
│ │ │ ├── PdmBdVehicleBindingDto.java |
|
||||
│ │ │ └── PdmBdVehicleBindingQuery.java |
|
||||
│ │ ├── impl |
|
||||
│ │ │ └── PdmBdVehicleBindingServiceImpl.java |
|
||||
│ │ └── IPdmBdVehicleBindingService.java |
|
||||
│ └── workorder |
|
||||
│ ├── controller |
|
||||
│ │ └── PdmBdWorkorderController.java |
|
||||
│ └── service |
|
||||
│ ├── dao |
|
||||
│ │ ├── mapper |
|
||||
│ │ │ ├── PdmBdWorkorderMapper.java |
|
||||
│ │ │ └── PdmBdWorkorderMapper.xml |
|
||||
│ │ ├── PdmBdWorkorder.java |
|
||||
│ │ └── vo |
|
||||
│ │ └── AcsWorkOrderVo.java |
|
||||
│ ├── dto |
|
||||
│ │ ├── PdmBdWorkorderDto.java |
|
||||
│ │ └── PdmBdWorkorderQuery.java |
|
||||
│ ├── impl |
|
||||
│ │ └── PdmBdWorkorderServiceImpl.java |
|
||||
│ └── IPdmBdWorkorderService.java |
|
||||
├── report |
|
||||
│ ├── controller |
|
||||
│ │ └── ReportController.java |
|
||||
│ └── service |
|
||||
│ ├── dao |
|
||||
│ │ ├── mapper |
|
||||
│ │ │ ├── ReportMapper.java |
|
||||
│ │ │ └── ReportMapper.xml |
|
||||
│ │ └── vo |
|
||||
│ │ ├── IOKilnReportVo.java |
|
||||
│ │ └── MaterialTimeoutVo.java |
|
||||
│ ├── impl |
|
||||
│ │ └── ReportServiceImpl.java |
|
||||
│ └── ReportService.java |
|
||||
├── sch |
|
||||
│ ├── group |
|
||||
│ │ ├── controller |
|
||||
│ │ │ └── SchBaseVehiclematerialgroupController.java |
|
||||
│ │ └── service |
|
||||
│ │ ├── dao |
|
||||
│ │ │ ├── mapper |
|
||||
│ │ │ │ ├── SchBaseVehiclematerialgroupMapper.java |
|
||||
│ │ │ │ └── SchBaseVehiclematerialgroupMapper.xml |
|
||||
│ │ │ └── SchBaseVehiclematerialgroup.java |
|
||||
│ │ ├── dto |
|
||||
│ │ │ ├── SchBaseVehiclematerialgroupDto.java |
|
||||
│ │ │ └── SchBaseVehiclematerialgroupQuery.java |
|
||||
│ │ ├── impl |
|
||||
│ │ │ └── SchBaseVehiclematerialgroupServiceImpl.java |
|
||||
│ │ └── ISchBaseVehiclematerialgroupService.java |
|
||||
│ ├── interactivelog |
|
||||
│ │ ├── controller |
|
||||
│ │ │ └── SchBaseAcsandlmsinteractivelogController.java |
|
||||
│ │ └── service |
|
||||
│ │ ├── dao |
|
||||
│ │ │ ├── mapper |
|
||||
│ │ │ │ ├── SchBaseAcsandlmsinteractivelogMapper.java |
|
||||
│ │ │ │ └── SchBaseAcsandlmsinteractivelogMapper.xml |
|
||||
│ │ │ └── SchBaseAcsandlmsinteractivelog.java |
|
||||
│ │ ├── dto |
|
||||
│ │ │ ├── SchBaseAcsandlmsinteractivelogDto.java |
|
||||
│ │ │ └── SchBaseAcsandlmsinteractivelogQuery.java |
|
||||
│ │ ├── impl |
|
||||
│ │ │ └── SchBaseAcsandlmsinteractivelogServiceImpl.java |
|
||||
│ │ └── ISchBaseAcsandlmsinteractivelogService.java |
|
||||
│ ├── point |
|
||||
│ │ ├── controller |
|
||||
│ │ │ └── SchBasePointController.java |
|
||||
│ │ └── service |
|
||||
│ │ ├── dao |
|
||||
│ │ │ ├── mapper |
|
||||
│ │ │ │ ├── SchBasePointMapper.java |
|
||||
│ │ │ │ └── SchBasePointMapper.xml |
|
||||
│ │ │ └── SchBasePoint.java |
|
||||
│ │ ├── dto |
|
||||
│ │ │ ├── SchBasePointDto.java |
|
||||
│ │ │ └── SchBasePointQuery.java |
|
||||
│ │ ├── impl |
|
||||
│ │ │ └── SchBasePointServiceImpl.java |
|
||||
│ │ └── ISchBasePointService.java |
|
||||
│ ├── region |
|
||||
│ │ ├── controller |
|
||||
│ │ │ └── SchBaseRegionController.java |
|
||||
│ │ └── service |
|
||||
│ │ ├── dao |
|
||||
│ │ │ ├── mapper |
|
||||
│ │ │ │ ├── SchBaseRegionMapper.java |
|
||||
│ │ │ │ └── SchBaseRegionMapper.xml |
|
||||
│ │ │ └── SchBaseRegion.java |
|
||||
│ │ ├── dto |
|
||||
│ │ │ ├── SchBaseRegionDto.java |
|
||||
│ │ │ └── SchBaseRegionQuery.java |
|
||||
│ │ ├── impl |
|
||||
│ │ │ └── SchBaseRegionServiceImpl.java |
|
||||
│ │ └── ISchBaseRegionService.java |
|
||||
│ ├── task |
|
||||
│ │ ├── controller |
|
||||
│ │ │ ├── SchBaseTaskconfigController.java |
|
||||
│ │ │ └── SchBaseTaskController.java |
|
||||
│ │ └── service |
|
||||
│ │ ├── dao |
|
||||
│ │ │ ├── mapper |
|
||||
│ │ │ │ ├── SchBaseTaskconfigMapper.java |
|
||||
│ │ │ │ ├── SchBaseTaskconfigMapper.xml |
|
||||
│ │ │ │ ├── SchBaseTaskMapper.java |
|
||||
│ │ │ │ └── SchBaseTaskMapper.xml |
|
||||
│ │ │ ├── SchBaseTask.java |
|
||||
│ │ │ └── SchBaseTaskconfig.java |
|
||||
│ │ ├── dto |
|
||||
│ │ │ ├── SchBaseTaskconfigDto.java |
|
||||
│ │ │ ├── SchBaseTaskconfigQuery.java |
|
||||
│ │ │ ├── SchBaseTaskDto.java |
|
||||
│ │ │ └── SchBaseTaskQuery.java |
|
||||
│ │ ├── impl |
|
||||
│ │ │ ├── SchBaseTaskconfigServiceImpl.java |
|
||||
│ │ │ └── SchBaseTaskServiceImpl.java |
|
||||
│ │ ├── ISchBaseTaskconfigService.java |
|
||||
│ │ └── ISchBaseTaskService.java |
|
||||
│ └── task_manage |
|
||||
│ ├── AbstractTask.java |
|
||||
│ ├── AcsTaskDto.java |
|
||||
│ ├── AutoCreateTask.java |
|
||||
│ ├── enums |
|
||||
│ │ ├── GroupBindMaterialStatusEnum.java |
|
||||
│ │ ├── GroupStatusEnum.java |
|
||||
│ │ ├── NoticeTypeEnum.java |
|
||||
│ │ ├── PointStatusEnum.java |
|
||||
│ │ ├── TaskDirectionEnum.java |
|
||||
│ │ ├── TaskFinishedTypeEnum.java |
|
||||
│ │ └── WorkOrderStatusEnum.java |
|
||||
│ ├── GeneralDefinition.java |
|
||||
│ └── task |
|
||||
│ ├── AcsUtil.java |
|
||||
│ ├── core |
|
||||
│ │ ├── TaskApplyDto.java |
|
||||
│ │ ├── TaskApplyType.java |
|
||||
│ │ ├── TaskDto.java |
|
||||
│ │ ├── TaskOperateType.java |
|
||||
│ │ └── TaskStatus.java |
|
||||
│ ├── TaskFactory.java |
|
||||
│ ├── TaskListType.java |
|
||||
│ ├── tasks |
|
||||
│ │ ├── auto |
|
||||
│ │ │ └── RYKQLTask.java |
|
||||
│ │ ├── dtk |
|
||||
│ │ │ ├── CTQKTask.java |
|
||||
│ │ │ ├── DTSKTask.java |
|
||||
│ │ │ └── mapper |
|
||||
│ │ │ ├── DTKMapper.java |
|
||||
│ │ │ └── DTKMapper.xml |
|
||||
│ │ ├── fj |
|
||||
│ │ │ ├── FJMKTask.java |
|
||||
│ │ │ ├── FJQKTask.java |
|
||||
│ │ │ ├── FJQLTask.java |
|
||||
│ │ │ ├── FJRKTask.java |
|
||||
│ │ │ ├── FJSKTask.java |
|
||||
│ │ │ ├── FJSLTask.java |
|
||||
│ │ │ └── mapper |
|
||||
│ │ │ ├── FJMapper.java |
|
||||
│ │ │ └── FJMapper.xml |
|
||||
│ │ ├── hn |
|
||||
│ │ │ ├── HNMLTask.java |
|
||||
│ │ │ ├── HNQKTask.java |
|
||||
│ │ │ └── mapper |
|
||||
│ │ │ ├── HNMapper.java |
|
||||
│ │ │ └── HNMapper.xml |
|
||||
│ │ ├── yao |
|
||||
│ │ │ ├── CYZCTask.java |
|
||||
│ │ │ └── GZYQLTask.java |
|
||||
│ │ └── yz |
|
||||
│ │ ├── backup.txt |
|
||||
│ │ ├── mapper |
|
||||
│ │ │ ├── YZMapper.java |
|
||||
│ │ │ └── YZMapper.xml |
|
||||
│ │ ├── YZQKTask.java |
|
||||
│ │ ├── YZQLTask.java |
|
||||
│ │ ├── YZSKTask.java |
|
||||
│ │ └── YZSLTask.java |
|
||||
│ ├── TaskServiceImpl.java |
|
||||
│ └── TaskType.java |
|
||||
└── util |
|
||||
├── CommonUtils.java |
|
||||
├── DatabaseBackup.java |
|
||||
├── MainConfig.java |
|
||||
├── MesUtils.java |
|
||||
├── MyEventListener.java |
|
||||
├── MyListener.java |
|
||||
├── OracleJDBCExample.java |
|
||||
├── PointUtils.java |
|
||||
├── TaskUtils.java |
|
||||
├── test |
|
||||
│ └── mapper |
|
||||
│ ├── TestMapper.java |
|
||||
│ └── TestMapper.xml |
|
||||
├── TreePrinter.java |
|
||||
└── XmlFormatter.java |
|
@ -1,29 +0,0 @@ |
|||||
<?xml version="1.0" encoding="UTF-8"?> |
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" |
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
|
||||
<parent> |
|
||||
<groupId>org.springframework.boot</groupId> |
|
||||
<artifactId>spring-boot-starter-parent</artifactId> |
|
||||
<version>2.2.10.RELEASE</version> |
|
||||
</parent> |
|
||||
<modelVersion>4.0.0</modelVersion> |
|
||||
|
|
||||
<modules> |
|
||||
<module>nlsso-server</module> |
|
||||
</modules> |
|
||||
<packaging>pom</packaging> |
|
||||
<groupId>org.nl</groupId> |
|
||||
<artifactId>nladmin-system</artifactId> |
|
||||
<version>0.0.1-SNAPSHOT</version> |
|
||||
<name>核心模块</name> |
|
||||
<properties> |
|
||||
<sa-token.version>1.31.0</sa-token.version> |
|
||||
</properties> |
|
||||
|
|
||||
<dependencies> |
|
||||
|
|
||||
</dependencies> |
|
||||
|
|
||||
|
|
||||
</project> |
|
@ -0,0 +1,14 @@ |
|||||
|
# https://editorconfig.org |
||||
|
root = true |
||||
|
|
||||
|
[*] |
||||
|
charset = utf-8 |
||||
|
indent_style = space |
||||
|
indent_size = 2 |
||||
|
end_of_line = lf |
||||
|
insert_final_newline = true |
||||
|
trim_trailing_whitespace = true |
||||
|
|
||||
|
[*.md] |
||||
|
insert_final_newline = false |
||||
|
trim_trailing_whitespace = false |
@ -0,0 +1,9 @@ |
|||||
|
ENV = 'development' |
||||
|
|
||||
|
# 接口地址 |
||||
|
VUE_APP_BASE_API = 'http://localhost:8019' |
||||
|
VUE_APP_WS_API = 'ws://localhost:8019' |
||||
|
|
||||
|
# 是否启用 babel-plugin-dynamic-import-node插件 |
||||
|
VUE_CLI_BABEL_TRANSPILE_MODULES = true |
||||
|
|
@ -0,0 +1,7 @@ |
|||||
|
ENV = 'production' |
||||
|
|
||||
|
# 如果使用 Nginx 代理后端接口,那么此处需要改为 '/',文件查看 Docker 部署篇,Nginx 配置 |
||||
|
# 接口地址,注意协议,如果你没有配置 ssl,需要将 https 改为 http |
||||
|
VUE_APP_BASE_API = 'http://10.93.41.201:8010' |
||||
|
# 如果接口是 http 形式, wss 需要改为 ws |
||||
|
VUE_APP_WS_API = 'ws://10.93.41.201:8010' |
@ -0,0 +1,4 @@ |
|||||
|
build/*.js |
||||
|
src/assets |
||||
|
public |
||||
|
dist |
@ -0,0 +1,198 @@ |
|||||
|
module.exports = { |
||||
|
root: true, |
||||
|
parserOptions: { |
||||
|
parser: 'babel-eslint', |
||||
|
sourceType: 'module' |
||||
|
}, |
||||
|
env: { |
||||
|
browser: true, |
||||
|
node: true, |
||||
|
es6: true, |
||||
|
}, |
||||
|
extends: ['plugin:vue/recommended', 'eslint:recommended'], |
||||
|
|
||||
|
// add your custom rules here
|
||||
|
//it is base on https://github.com/vuejs/eslint-config-vue
|
||||
|
rules: { |
||||
|
"vue/max-attributes-per-line": [2, { |
||||
|
"singleline": 10, |
||||
|
"multiline": { |
||||
|
"max": 1, |
||||
|
"allowFirstLine": false |
||||
|
} |
||||
|
}], |
||||
|
"vue/singleline-html-element-content-newline": "off", |
||||
|
"vue/multiline-html-element-content-newline":"off", |
||||
|
"vue/name-property-casing": ["error", "PascalCase"], |
||||
|
"vue/no-v-html": "off", |
||||
|
'accessor-pairs': 2, |
||||
|
'arrow-spacing': [2, { |
||||
|
'before': true, |
||||
|
'after': true |
||||
|
}], |
||||
|
'block-spacing': [2, 'always'], |
||||
|
'brace-style': [2, '1tbs', { |
||||
|
'allowSingleLine': true |
||||
|
}], |
||||
|
'camelcase': [0, { |
||||
|
'properties': 'always' |
||||
|
}], |
||||
|
'comma-dangle': [2, 'never'], |
||||
|
'comma-spacing': [2, { |
||||
|
'before': false, |
||||
|
'after': true |
||||
|
}], |
||||
|
'comma-style': [2, 'last'], |
||||
|
'constructor-super': 2, |
||||
|
'curly': [2, 'multi-line'], |
||||
|
'dot-location': [2, 'property'], |
||||
|
'eol-last': 2, |
||||
|
'eqeqeq': ["error", "always", {"null": "ignore"}], |
||||
|
'generator-star-spacing': [2, { |
||||
|
'before': true, |
||||
|
'after': true |
||||
|
}], |
||||
|
'handle-callback-err': [2, '^(err|error)$'], |
||||
|
'indent': [2, 2, { |
||||
|
'SwitchCase': 1 |
||||
|
}], |
||||
|
'jsx-quotes': [2, 'prefer-single'], |
||||
|
'key-spacing': [2, { |
||||
|
'beforeColon': false, |
||||
|
'afterColon': true |
||||
|
}], |
||||
|
'keyword-spacing': [2, { |
||||
|
'before': true, |
||||
|
'after': true |
||||
|
}], |
||||
|
'new-cap': [2, { |
||||
|
'newIsCap': true, |
||||
|
'capIsNew': false |
||||
|
}], |
||||
|
'new-parens': 2, |
||||
|
'no-array-constructor': 2, |
||||
|
'no-caller': 2, |
||||
|
'no-console': 'off', |
||||
|
'no-class-assign': 2, |
||||
|
'no-cond-assign': 2, |
||||
|
'no-const-assign': 2, |
||||
|
'no-control-regex': 0, |
||||
|
'no-delete-var': 2, |
||||
|
'no-dupe-args': 2, |
||||
|
'no-dupe-class-members': 2, |
||||
|
'no-dupe-keys': 2, |
||||
|
'no-duplicate-case': 2, |
||||
|
'no-empty-character-class': 2, |
||||
|
'no-empty-pattern': 2, |
||||
|
'no-eval': 2, |
||||
|
'no-ex-assign': 2, |
||||
|
'no-extend-native': 2, |
||||
|
'no-extra-bind': 2, |
||||
|
'no-extra-boolean-cast': 2, |
||||
|
'no-extra-parens': [2, 'functions'], |
||||
|
'no-fallthrough': 2, |
||||
|
'no-floating-decimal': 2, |
||||
|
'no-func-assign': 2, |
||||
|
'no-implied-eval': 2, |
||||
|
'no-inner-declarations': [2, 'functions'], |
||||
|
'no-invalid-regexp': 2, |
||||
|
'no-irregular-whitespace': 2, |
||||
|
'no-iterator': 2, |
||||
|
'no-label-var': 2, |
||||
|
'no-labels': [2, { |
||||
|
'allowLoop': false, |
||||
|
'allowSwitch': false |
||||
|
}], |
||||
|
'no-lone-blocks': 2, |
||||
|
'no-mixed-spaces-and-tabs': 2, |
||||
|
'no-multi-spaces': 2, |
||||
|
'no-multi-str': 2, |
||||
|
'no-multiple-empty-lines': [2, { |
||||
|
'max': 1 |
||||
|
}], |
||||
|
'no-native-reassign': 2, |
||||
|
'no-negated-in-lhs': 2, |
||||
|
'no-new-object': 2, |
||||
|
'no-new-require': 2, |
||||
|
'no-new-symbol': 2, |
||||
|
'no-new-wrappers': 2, |
||||
|
'no-obj-calls': 2, |
||||
|
'no-octal': 2, |
||||
|
'no-octal-escape': 2, |
||||
|
'no-path-concat': 2, |
||||
|
'no-proto': 2, |
||||
|
'no-redeclare': 2, |
||||
|
'no-regex-spaces': 2, |
||||
|
'no-return-assign': [2, 'except-parens'], |
||||
|
'no-self-assign': 2, |
||||
|
'no-self-compare': 2, |
||||
|
'no-sequences': 2, |
||||
|
'no-shadow-restricted-names': 2, |
||||
|
'no-spaced-func': 2, |
||||
|
'no-sparse-arrays': 2, |
||||
|
'no-this-before-super': 2, |
||||
|
'no-throw-literal': 2, |
||||
|
'no-trailing-spaces': 2, |
||||
|
'no-undef': 2, |
||||
|
'no-undef-init': 2, |
||||
|
'no-unexpected-multiline': 2, |
||||
|
'no-unmodified-loop-condition': 2, |
||||
|
'no-unneeded-ternary': [2, { |
||||
|
'defaultAssignment': false |
||||
|
}], |
||||
|
'no-unreachable': 2, |
||||
|
'no-unsafe-finally': 2, |
||||
|
'no-unused-vars': [2, { |
||||
|
'vars': 'all', |
||||
|
'args': 'none' |
||||
|
}], |
||||
|
'no-useless-call': 2, |
||||
|
'no-useless-computed-key': 2, |
||||
|
'no-useless-constructor': 2, |
||||
|
'no-useless-escape': 0, |
||||
|
'no-whitespace-before-property': 2, |
||||
|
'no-with': 2, |
||||
|
'one-var': [2, { |
||||
|
'initialized': 'never' |
||||
|
}], |
||||
|
'operator-linebreak': [2, 'after', { |
||||
|
'overrides': { |
||||
|
'?': 'before', |
||||
|
':': 'before' |
||||
|
} |
||||
|
}], |
||||
|
'padded-blocks': [2, 'never'], |
||||
|
'quotes': [2, 'single', { |
||||
|
'avoidEscape': true, |
||||
|
'allowTemplateLiterals': true |
||||
|
}], |
||||
|
'semi': [2, 'never'], |
||||
|
'semi-spacing': [2, { |
||||
|
'before': false, |
||||
|
'after': true |
||||
|
}], |
||||
|
'space-before-blocks': [2, 'always'], |
||||
|
'space-before-function-paren': [2, 'never'], |
||||
|
'space-in-parens': [2, 'never'], |
||||
|
'space-infix-ops': 2, |
||||
|
'space-unary-ops': [2, { |
||||
|
'words': true, |
||||
|
'nonwords': false |
||||
|
}], |
||||
|
'spaced-comment': [2, 'always', { |
||||
|
'markers': ['global', 'globals', 'eslint', 'eslint-disable', '*package', '!', ','] |
||||
|
}], |
||||
|
'template-curly-spacing': [2, 'never'], |
||||
|
'use-isnan': 2, |
||||
|
'valid-typeof': 2, |
||||
|
'wrap-iife': [2, 'any'], |
||||
|
'yield-star-spacing': [2, 'both'], |
||||
|
'yoda': [2, 'never'], |
||||
|
'prefer-const': 2, |
||||
|
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0, |
||||
|
'object-curly-spacing': [2, 'always', { |
||||
|
objectsInObjects: false |
||||
|
}], |
||||
|
'array-bracket-spacing': [2, 'never'] |
||||
|
} |
||||
|
} |
@ -0,0 +1,23 @@ |
|||||
|
.DS_Store |
||||
|
node_modules/ |
||||
|
dist/ |
||||
|
npm-debug.log* |
||||
|
yarn-debug.log* |
||||
|
yarn-error.log* |
||||
|
**/*.log |
||||
|
|
||||
|
tests/**/coverage/ |
||||
|
tests/e2e/reports |
||||
|
selenium-debug.log |
||||
|
|
||||
|
# Editor directories and files |
||||
|
.idea |
||||
|
.vscode |
||||
|
*.suo |
||||
|
*.ntvs* |
||||
|
*.njsproj |
||||
|
*.sln |
||||
|
*.local |
||||
|
|
||||
|
package-lock.json |
||||
|
yarn.lock |
@ -0,0 +1,5 @@ |
|||||
|
language: node_js |
||||
|
node_js: 10 |
||||
|
script: npm run test |
||||
|
notifications: |
||||
|
email: false |
@ -0,0 +1,191 @@ |
|||||
|
Apache License |
||||
|
Version 2.0, January 2004 |
||||
|
http://www.apache.org/licenses/ |
||||
|
|
||||
|
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION |
||||
|
|
||||
|
1. Definitions. |
||||
|
|
||||
|
"License" shall mean the terms and conditions for use, reproduction, and |
||||
|
distribution as defined by Sections 1 through 9 of this document. |
||||
|
|
||||
|
"Licensor" shall mean the copyright owner or entity authorized by the copyright |
||||
|
owner that is granting the License. |
||||
|
|
||||
|
"Legal Entity" shall mean the union of the acting entity and all other entities |
||||
|
that control, are controlled by, or are under common control with that entity. |
||||
|
For the purposes of this definition, "control" means (i) the power, direct or |
||||
|
indirect, to cause the direction or management of such entity, whether by |
||||
|
contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the |
||||
|
outstanding shares, or (iii) beneficial ownership of such entity. |
||||
|
|
||||
|
"You" (or "Your") shall mean an individual or Legal Entity exercising |
||||
|
permissions granted by this License. |
||||
|
|
||||
|
"Source" form shall mean the preferred form for making modifications, including |
||||
|
but not limited to software source code, documentation source, and configuration |
||||
|
files. |
||||
|
|
||||
|
"Object" form shall mean any form resulting from mechanical transformation or |
||||
|
translation of a Source form, including but not limited to compiled object code, |
||||
|
generated documentation, and conversions to other media types. |
||||
|
|
||||
|
"Work" shall mean the work of authorship, whether in Source or Object form, made |
||||
|
available under the License, as indicated by a copyright notice that is included |
||||
|
in or attached to the work (an example is provided in the Appendix below). |
||||
|
|
||||
|
"Derivative Works" shall mean any work, whether in Source or Object form, that |
||||
|
is based on (or derived from) the Work and for which the editorial revisions, |
||||
|
annotations, elaborations, or other modifications represent, as a whole, an |
||||
|
original work of authorship. For the purposes of this License, Derivative Works |
||||
|
shall not include works that remain separable from, or merely link (or bind by |
||||
|
name) to the interfaces of, the Work and Derivative Works thereof. |
||||
|
|
||||
|
"Contribution" shall mean any work of authorship, including the original version |
||||
|
of the Work and any modifications or additions to that Work or Derivative Works |
||||
|
thereof, that is intentionally submitted to Licensor for inclusion in the Work |
||||
|
by the copyright owner or by an individual or Legal Entity authorized to submit |
||||
|
on behalf of the copyright owner. For the purposes of this definition, |
||||
|
"submitted" means any form of electronic, verbal, or written communication sent |
||||
|
to the Licensor or its representatives, including but not limited to |
||||
|
communication on electronic mailing lists, source code control systems, and |
||||
|
issue tracking systems that are managed by, or on behalf of, the Licensor for |
||||
|
the purpose of discussing and improving the Work, but excluding communication |
||||
|
that is conspicuously marked or otherwise designated in writing by the copyright |
||||
|
owner as "Not a Contribution." |
||||
|
|
||||
|
"Contributor" shall mean Licensor and any individual or Legal Entity on behalf |
||||
|
of whom a Contribution has been received by Licensor and subsequently |
||||
|
incorporated within the Work. |
||||
|
|
||||
|
2. Grant of Copyright License. |
||||
|
|
||||
|
Subject to the terms and conditions of this License, each Contributor hereby |
||||
|
grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, |
||||
|
irrevocable copyright license to reproduce, prepare Derivative Works of, |
||||
|
publicly display, publicly perform, sublicense, and distribute the Work and such |
||||
|
Derivative Works in Source or Object form. |
||||
|
|
||||
|
3. Grant of Patent License. |
||||
|
|
||||
|
Subject to the terms and conditions of this License, each Contributor hereby |
||||
|
grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, |
||||
|
irrevocable (except as stated in this section) patent license to make, have |
||||
|
made, use, offer to sell, sell, import, and otherwise transfer the Work, where |
||||
|
such license applies only to those patent claims licensable by such Contributor |
||||
|
that are necessarily infringed by their Contribution(s) alone or by combination |
||||
|
of their Contribution(s) with the Work to which such Contribution(s) was |
||||
|
submitted. If You institute patent litigation against any entity (including a |
||||
|
cross-claim or counterclaim in a lawsuit) alleging that the Work or a |
||||
|
Contribution incorporated within the Work constitutes direct or contributory |
||||
|
patent infringement, then any patent licenses granted to You under this License |
||||
|
for that Work shall terminate as of the date such litigation is filed. |
||||
|
|
||||
|
4. Redistribution. |
||||
|
|
||||
|
You may reproduce and distribute copies of the Work or Derivative Works thereof |
||||
|
in any medium, with or without modifications, and in Source or Object form, |
||||
|
provided that You meet the following conditions: |
||||
|
|
||||
|
You must give any other recipients of the Work or Derivative Works a copy of |
||||
|
this License; and |
||||
|
You must cause any modified files to carry prominent notices stating that You |
||||
|
changed the files; and |
||||
|
You must retain, in the Source form of any Derivative Works that You distribute, |
||||
|
all copyright, patent, trademark, and attribution notices from the Source form |
||||
|
of the Work, excluding those notices that do not pertain to any part of the |
||||
|
Derivative Works; and |
||||
|
If the Work includes a "NOTICE" text file as part of its distribution, then any |
||||
|
Derivative Works that You distribute must include a readable copy of the |
||||
|
attribution notices contained within such NOTICE file, excluding those notices |
||||
|
that do not pertain to any part of the Derivative Works, in at least one of the |
||||
|
following places: within a NOTICE text file distributed as part of the |
||||
|
Derivative Works; within the Source form or documentation, if provided along |
||||
|
with the Derivative Works; or, within a display generated by the Derivative |
||||
|
Works, if and wherever such third-party notices normally appear. The contents of |
||||
|
the NOTICE file are for informational purposes only and do not modify the |
||||
|
License. You may add Your own attribution notices within Derivative Works that |
||||
|
You distribute, alongside or as an addendum to the NOTICE text from the Work, |
||||
|
provided that such additional attribution notices cannot be construed as |
||||
|
modifying the License. |
||||
|
You may add Your own copyright statement to Your modifications and may provide |
||||
|
additional or different license terms and conditions for use, reproduction, or |
||||
|
distribution of Your modifications, or for any such Derivative Works as a whole, |
||||
|
provided Your use, reproduction, and distribution of the Work otherwise complies |
||||
|
with the conditions stated in this License. |
||||
|
|
||||
|
5. Submission of Contributions. |
||||
|
|
||||
|
Unless You explicitly state otherwise, any Contribution intentionally submitted |
||||
|
for inclusion in the Work by You to the Licensor shall be under the terms and |
||||
|
conditions of this License, without any additional terms or conditions. |
||||
|
Notwithstanding the above, nothing herein shall supersede or modify the terms of |
||||
|
any separate license agreement you may have executed with Licensor regarding |
||||
|
such Contributions. |
||||
|
|
||||
|
6. Trademarks. |
||||
|
|
||||
|
This License does not grant permission to use the trade names, trademarks, |
||||
|
service marks, or product names of the Licensor, except as required for |
||||
|
reasonable and customary use in describing the origin of the Work and |
||||
|
reproducing the content of the NOTICE file. |
||||
|
|
||||
|
7. Disclaimer of Warranty. |
||||
|
|
||||
|
Unless required by applicable law or agreed to in writing, Licensor provides the |
||||
|
Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, |
||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, |
||||
|
including, without limitation, any warranties or conditions of TITLE, |
||||
|
NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are |
||||
|
solely responsible for determining the appropriateness of using or |
||||
|
redistributing the Work and assume any risks associated with Your exercise of |
||||
|
permissions under this License. |
||||
|
|
||||
|
8. Limitation of Liability. |
||||
|
|
||||
|
In no event and under no legal theory, whether in tort (including negligence), |
||||
|
contract, or otherwise, unless required by applicable law (such as deliberate |
||||
|
and grossly negligent acts) or agreed to in writing, shall any Contributor be |
||||
|
liable to You for damages, including any direct, indirect, special, incidental, |
||||
|
or consequential damages of any character arising as a result of this License or |
||||
|
out of the use or inability to use the Work (including but not limited to |
||||
|
damages for loss of goodwill, work stoppage, computer failure or malfunction, or |
||||
|
any and all other commercial damages or losses), even if such Contributor has |
||||
|
been advised of the possibility of such damages. |
||||
|
|
||||
|
9. Accepting Warranty or Additional Liability. |
||||
|
|
||||
|
While redistributing the Work or Derivative Works thereof, You may choose to |
||||
|
offer, and charge a fee for, acceptance of support, warranty, indemnity, or |
||||
|
other liability obligations and/or rights consistent with this License. However, |
||||
|
in accepting such obligations, You may act only on Your own behalf and on Your |
||||
|
sole responsibility, not on behalf of any other Contributor, and only if You |
||||
|
agree to indemnify, defend, and hold each Contributor harmless for any liability |
||||
|
incurred by, or claims asserted against, such Contributor by reason of your |
||||
|
accepting any such warranty or additional liability. |
||||
|
|
||||
|
END OF TERMS AND CONDITIONS |
||||
|
|
||||
|
APPENDIX: How to apply the Apache License to your work |
||||
|
|
||||
|
To apply the Apache License to your work, attach the following boilerplate |
||||
|
notice, with the fields enclosed by brackets "{}" replaced with your own |
||||
|
identifying information. (Don't include the brackets!) The text should be |
||||
|
enclosed in the appropriate comment syntax for the file format. We also |
||||
|
recommend that a file or class name and description of purpose be included on |
||||
|
the same "printed page" as the copyright notice for easier identification within |
||||
|
third-party archives. |
||||
|
|
||||
|
Copyright 2019 Zheng Jie |
||||
|
|
||||
|
Licensed under the Apache License, Version 2.0 (the "License"); |
||||
|
you may not use this file except in compliance with the License. |
||||
|
You may obtain a copy of the License at |
||||
|
|
||||
|
http://www.apache.org/licenses/LICENSE-2.0 |
||||
|
|
||||
|
Unless required by applicable law or agreed to in writing, software |
||||
|
distributed under the License is distributed on an "AS IS" BASIS, |
||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
|
See the License for the specific language governing permissions and |
||||
|
limitations under the License. |
@ -1,4 +1,4 @@ |
|||||
# nuoli_v1.0 |
# nlacs_web |
||||
|
|
||||
#### Description |
#### Description |
||||
{**When you're done, you can delete the content in this README and update the file with details for others getting started with your repository**} |
{**When you're done, you can delete the content in this README and update the file with details for others getting started with your repository**} |
@ -0,0 +1,2 @@ |
|||||
|
# 诺力三期WMS前端 |
||||
|
|
@ -0,0 +1,11 @@ |
|||||
|
const plugins = ['@vue/babel-plugin-transform-vue-jsx'] |
||||
|
// 生产环境移除console
|
||||
|
if (process.env.NODE_ENV === 'production') { |
||||
|
plugins.push('transform-remove-console') |
||||
|
} |
||||
|
module.exports = { |
||||
|
plugins: plugins, |
||||
|
presets: [ |
||||
|
'@vue/app' |
||||
|
] |
||||
|
} |
@ -0,0 +1,24 @@ |
|||||
|
module.exports = { |
||||
|
moduleFileExtensions: ['js', 'jsx', 'json', 'vue'], |
||||
|
transform: { |
||||
|
'^.+\\.vue$': 'vue-jest', |
||||
|
'.+\\.(css|styl|less|sass|scss|svg|png|jpg|ttf|woff|woff2)$': |
||||
|
'jest-transform-stub', |
||||
|
'^.+\\.jsx?$': 'babel-jest' |
||||
|
}, |
||||
|
moduleNameMapper: { |
||||
|
'^@/(.*)$': '<rootDir>/src/$1' |
||||
|
}, |
||||
|
snapshotSerializers: ['jest-serializer-vue'], |
||||
|
testMatch: [ |
||||
|
'**/tests/unit/**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx)' |
||||
|
], |
||||
|
collectCoverageFrom: ['src/utils/**/*.{js,vue}', '!src/utils/auth.js', '!src/utils/request.js', 'src/components/**/*.{js,vue}'], |
||||
|
coverageDirectory: '<rootDir>/tests/unit/coverage', |
||||
|
// 'collectCoverage': true,
|
||||
|
'coverageReporters': [ |
||||
|
'lcov', |
||||
|
'text-summary' |
||||
|
], |
||||
|
testURL: 'http://localhost/' |
||||
|
} |
@ -0,0 +1,134 @@ |
|||||
|
{ |
||||
|
"name": "eladmin-web", |
||||
|
"version": "2.6.0", |
||||
|
"description": "EL-ADMIN 前端源码", |
||||
|
"author": "Zheng Jie", |
||||
|
"license": "Apache-2.0", |
||||
|
"scripts": { |
||||
|
"dev": "vue-cli-service serve", |
||||
|
"build:prod": "vue-cli-service build", |
||||
|
"build:stage": "vue-cli-service build --mode staging", |
||||
|
"preview": "node build/index.js --preview", |
||||
|
"lint": "eslint --ext .js,.vue src", |
||||
|
"test:unit": "jest --clearCache && vue-cli-service test:unit", |
||||
|
"svgo": "svgo -f src/assets/icons/svg --config=src/assets/icons/svgo.yml", |
||||
|
"new": "plop" |
||||
|
}, |
||||
|
"husky": { |
||||
|
"hooks": { |
||||
|
"pre-commit": "lint-staged" |
||||
|
} |
||||
|
}, |
||||
|
"lint-staged": { |
||||
|
"src/**/*.{js,vue}": [ |
||||
|
"eslint --fix", |
||||
|
"git add" |
||||
|
] |
||||
|
}, |
||||
|
"repository": { |
||||
|
"type": "git", |
||||
|
"url": "https://github.com/elunez/eladmin-web.git" |
||||
|
}, |
||||
|
"bugs": { |
||||
|
"url": "https://github.com/elunez/eladmin/issues" |
||||
|
}, |
||||
|
"dependencies": { |
||||
|
"@logicflow/core": "^1.1.22", |
||||
|
"@logicflow/extension": "^1.1.22", |
||||
|
"@riophae/vue-treeselect": "0.4.0", |
||||
|
"af-table-column": "^1.0.3", |
||||
|
"ansi_up": "^5.1.0", |
||||
|
"axios": "0.18.1", |
||||
|
"clipboard": "^2.0.4", |
||||
|
"codemirror": "^5.49.2", |
||||
|
"connect": "3.6.6", |
||||
|
"echarts": "^4.2.1", |
||||
|
"echarts-gl": "^1.1.1", |
||||
|
"echarts-wordcloud": "^1.1.3", |
||||
|
"element-ui": "^2.15.8", |
||||
|
"file-saver": "1.3.8", |
||||
|
"font-awesome": "^4.7.0", |
||||
|
"fuse.js": "3.4.4", |
||||
|
"jquery": "^3.6.0", |
||||
|
"js-beautify": "^1.10.2", |
||||
|
"js-cookie": "2.2.0", |
||||
|
"jsbarcode": "^3.11.5", |
||||
|
"jsencrypt": "^3.0.0-rc.1", |
||||
|
"json-bigint": "^1.0.0", |
||||
|
"jszip": "3.1.5", |
||||
|
"mavon-editor": "^2.9.0", |
||||
|
"normalize.css": "7.0.0", |
||||
|
"nprogress": "0.2.0", |
||||
|
"path-to-regexp": "2.4.0", |
||||
|
"qrcodejs2": "0.0.2", |
||||
|
"qs": "^6.9.1", |
||||
|
"screenfull": "4.2.0", |
||||
|
"sortablejs": "1.8.4", |
||||
|
"throttle-debounce": "^5.0.0", |
||||
|
"vue": "2.6.10", |
||||
|
"vue-bus": "^1.2.1", |
||||
|
"vue-color": "^2.8.1", |
||||
|
"vue-count-to": "1.0.13", |
||||
|
"vue-cropper": "0.4.9", |
||||
|
"vue-easy-print": "0.0.8", |
||||
|
"vue-echarts": "^5.0.0-beta.0", |
||||
|
"vue-highlightjs": "^1.3.3", |
||||
|
"vue-image-crop-upload": "^2.5.0", |
||||
|
"vue-print-nb": "^1.7.5", |
||||
|
"vue-router": "3.0.2", |
||||
|
"vue-seamless-scroll": "^1.1.23", |
||||
|
"vue-splitpane": "1.0.4", |
||||
|
"vuedraggable": "^2.24.3", |
||||
|
"vuex": "3.1.0", |
||||
|
"vxe-table": "^3.3.10", |
||||
|
"wangeditor": "^3.1.1", |
||||
|
"xe-ajax": "^4.0.5", |
||||
|
"xe-utils": "^3.3.1", |
||||
|
"xlsx": "^0.14.1" |
||||
|
}, |
||||
|
"devDependencies": { |
||||
|
"@babel/core": "7.0.0", |
||||
|
"@babel/parser": "^7.7.4", |
||||
|
"@babel/register": "7.0.0", |
||||
|
"@vue/babel-plugin-transform-vue-jsx": "^1.2.1", |
||||
|
"@vue/cli-plugin-babel": "3.5.3", |
||||
|
"@vue/cli-plugin-eslint": "^3.9.1", |
||||
|
"@vue/cli-plugin-unit-jest": "3.5.3", |
||||
|
"@vue/cli-service": "3.5.3", |
||||
|
"@vue/test-utils": "1.0.0-beta.29", |
||||
|
"autoprefixer": "^9.5.1", |
||||
|
"babel-core": "7.0.0-bridge.0", |
||||
|
"babel-eslint": "10.0.1", |
||||
|
"babel-jest": "23.6.0", |
||||
|
"babel-plugin-dynamic-import-node": "2.3.0", |
||||
|
"babel-plugin-transform-remove-console": "^6.9.4", |
||||
|
"chalk": "2.4.2", |
||||
|
"chokidar": "2.1.5", |
||||
|
"connect": "3.6.6", |
||||
|
"eslint": "5.15.3", |
||||
|
"eslint-plugin-vue": "5.2.2", |
||||
|
"html-webpack-plugin": "3.2.0", |
||||
|
"http-proxy-middleware": "^0.19.1", |
||||
|
"husky": "1.3.1", |
||||
|
"lint-staged": "8.1.5", |
||||
|
"plop": "2.3.0", |
||||
|
"print-template": "^1.2.5", |
||||
|
"runjs": "^4.3.2", |
||||
|
"sass": "~1.26.5", |
||||
|
"sass-loader": "^7.1.0", |
||||
|
"script-ext-html-webpack-plugin": "2.1.3", |
||||
|
"script-loader": "0.7.2", |
||||
|
"serve-static": "^1.13.2", |
||||
|
"svg-sprite-loader": "4.1.3", |
||||
|
"svgo": "1.2.0", |
||||
|
"vue-template-compiler": "2.6.10" |
||||
|
}, |
||||
|
"engines": { |
||||
|
"node": ">=8.9", |
||||
|
"npm": ">= 3.0.0" |
||||
|
}, |
||||
|
"browserslist": [ |
||||
|
"> 1%", |
||||
|
"last 2 versions" |
||||
|
] |
||||
|
} |
@ -0,0 +1,7 @@ |
|||||
|
const viewGenerator = require('./plop-templates/view/prompt') |
||||
|
const componentGenerator = require('./plop-templates/component/prompt') |
||||
|
|
||||
|
module.exports = function(plop) { |
||||
|
plop.setGenerator('view', viewGenerator) |
||||
|
plop.setGenerator('component', componentGenerator) |
||||
|
} |
@ -0,0 +1,5 @@ |
|||||
|
module.exports = { |
||||
|
plugins: { |
||||
|
autoprefixer: {} |
||||
|
} |
||||
|
} |
@ -0,0 +1,9 @@ |
|||||
|
window.g = { |
||||
|
dev: { |
||||
|
VUE_APP_BASE_API: 'http://10.93.41.201:8010' |
||||
|
}, |
||||
|
prod: { |
||||
|
VUE_APP_BASE_API: 'http://10.93.41.201:8010' |
||||
|
} |
||||
|
|
||||
|
} |
After Width: | Height: | Size: 66 KiB |
@ -0,0 +1,16 @@ |
|||||
|
<!DOCTYPE html> |
||||
|
<html> |
||||
|
<head> |
||||
|
<meta charset="utf-8"> |
||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> |
||||
|
<meta name="renderer" content="webkit"> |
||||
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"> |
||||
|
<link rel="icon" href="<%= BASE_URL %>favicon.ico"> |
||||
|
<script type="text/javascript" src="<%= BASE_URL %>config.js"></script> |
||||
|
<title><%= webpackConfig.name %></title> |
||||
|
</head> |
||||
|
<body> |
||||
|
<div id="app"></div> |
||||
|
<!-- built files will be auto injected --> |
||||
|
</body> |
||||
|
</html> |
@ -0,0 +1,36 @@ |
|||||
|
<template> |
||||
|
<div id="app" @mousemove="moveEvent" @click="moveEvent"> |
||||
|
<router-view /> |
||||
|
</div> |
||||
|
</template> |
||||
|
|
||||
|
<script> |
||||
|
export default { |
||||
|
name: 'App', |
||||
|
data() { |
||||
|
return { |
||||
|
timmer: null |
||||
|
} |
||||
|
}, |
||||
|
methods: { |
||||
|
moveEvent: function() { |
||||
|
const path = ['/login'] |
||||
|
if (!path.includes(this.$route.path)) { |
||||
|
clearTimeout(this.timmer) |
||||
|
this.init() |
||||
|
} |
||||
|
}, |
||||
|
init: function() { |
||||
|
this.timmer = setTimeout(() => { |
||||
|
sessionStorage.clear() |
||||
|
this.logout() |
||||
|
}, 1000 * 60 * 151) // 15分钟 https://blog.csdn.net/qq_42345108/article/details/103496456 |
||||
|
}, |
||||
|
logout() { |
||||
|
this.$store.dispatch('LogOut').then(() => { |
||||
|
location.reload() |
||||
|
}) |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
</script> |
@ -0,0 +1,21 @@ |
|||||
|
import request from '@/utils/request' |
||||
|
import qs from 'qs' |
||||
|
|
||||
|
export function initData(url, params) { |
||||
|
if (params.createTime) { |
||||
|
params.begin_time = params.createTime[0] |
||||
|
params.end_time = params.createTime[1] |
||||
|
} |
||||
|
return request({ |
||||
|
url: url + '?' + qs.stringify(params, { indices: false }), |
||||
|
method: 'get' |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
export function download(url, params) { |
||||
|
return request({ |
||||
|
url: url + '?' + qs.stringify(params, { indices: false }), |
||||
|
method: 'get', |
||||
|
responseType: 'blob' |
||||
|
}) |
||||
|
} |
@ -0,0 +1,16 @@ |
|||||
|
import request from '@/utils/request' |
||||
|
|
||||
|
export function get(tableName) { |
||||
|
return request({ |
||||
|
url: 'api/genConfig/' + tableName, |
||||
|
method: 'get' |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
export function update(data) { |
||||
|
return request({ |
||||
|
url: 'api/genConfig', |
||||
|
data, |
||||
|
method: 'put' |
||||
|
}) |
||||
|
} |
@ -0,0 +1,33 @@ |
|||||
|
import request from '@/utils/request' |
||||
|
|
||||
|
export function getAllTable() { |
||||
|
return request({ |
||||
|
url: 'api/generator/tables/all', |
||||
|
method: 'get' |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
export function generator(tableName, type) { |
||||
|
return request({ |
||||
|
url: 'api/generator/' + tableName + '/' + type, |
||||
|
method: 'post', |
||||
|
responseType: type === 2 ? 'blob' : '' |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
export function save(data) { |
||||
|
return request({ |
||||
|
url: 'api/generator', |
||||
|
data, |
||||
|
method: 'put' |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
export function sync(tables) { |
||||
|
return request({ |
||||
|
url: 'api/generator/sync', |
||||
|
method: 'post', |
||||
|
data: tables |
||||
|
}) |
||||
|
} |
||||
|
|
@ -0,0 +1,50 @@ |
|||||
|
import request from '@/utils/request' |
||||
|
|
||||
|
export function add(data) { |
||||
|
return request({ |
||||
|
url: 'api/stage', |
||||
|
method: 'post', |
||||
|
data |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
export function del(ids) { |
||||
|
return request({ |
||||
|
url: 'api/stage/', |
||||
|
method: 'delete', |
||||
|
data: ids |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
export function edit(data) { |
||||
|
return request({ |
||||
|
url: 'api/stage', |
||||
|
method: 'put', |
||||
|
data |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
export function selectStageList() { |
||||
|
return request({ |
||||
|
url: 'api/stage/selectList', |
||||
|
method: 'get' |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
export function addNewStage(data) { // 保存舞台数据
|
||||
|
return request({ |
||||
|
url: 'api/stage/addNewStage', |
||||
|
method: 'post', |
||||
|
data |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
export function getNewStageDataByCode(code) { |
||||
|
return request({ |
||||
|
url: 'api/stage/getNewStageDataByCode', |
||||
|
method: 'post', |
||||
|
data: code |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
export default { add, edit, del, selectStageList, addNewStage, getNewStageDataByCode } |
@ -0,0 +1,34 @@ |
|||||
|
import request from '@/utils/request' |
||||
|
|
||||
|
export function add(data) { |
||||
|
return request({ |
||||
|
url: 'api/stageImage', |
||||
|
method: 'post', |
||||
|
data |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
export function del(ids) { |
||||
|
return request({ |
||||
|
url: 'api/stageImage/', |
||||
|
method: 'delete', |
||||
|
data: ids |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
export function edit(data) { |
||||
|
return request({ |
||||
|
url: 'api/stageImage', |
||||
|
method: 'put', |
||||
|
data |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
export function selectStageIconList() { |
||||
|
return request({ |
||||
|
url: 'api/stageImage/selectList', |
||||
|
method: 'get' |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
export default { add, edit, del, selectStageIconList } |
@ -0,0 +1,35 @@ |
|||||
|
import request from '@/utils/request' |
||||
|
|
||||
|
export function login(username, password, code, uuid) { |
||||
|
return request({ |
||||
|
url: 'auth/login', |
||||
|
method: 'post', |
||||
|
data: { |
||||
|
username, |
||||
|
password, |
||||
|
code, |
||||
|
uuid |
||||
|
} |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
export function getInfo() { |
||||
|
return request({ |
||||
|
url: 'auth/info', |
||||
|
method: 'get' |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
export function getCodeImg() { |
||||
|
return request({ |
||||
|
url: 'auth/code', |
||||
|
method: 'get' |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
export function logout() { |
||||
|
return request({ |
||||
|
url: 'auth/logout', |
||||
|
method: 'delete' |
||||
|
}) |
||||
|
} |
@ -0,0 +1,22 @@ |
|||||
|
import request from '@/utils/request' |
||||
|
|
||||
|
export function getErrDetail(id) { |
||||
|
return request({ |
||||
|
url: 'api/logs/error/' + id, |
||||
|
method: 'get' |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
export function delAllError() { |
||||
|
return request({ |
||||
|
url: 'api/logs/del/error', |
||||
|
method: 'delete' |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
export function delAllInfo() { |
||||
|
return request({ |
||||
|
url: 'api/logs/del/info', |
||||
|
method: 'delete' |
||||
|
}) |
||||
|
} |
@ -0,0 +1,9 @@ |
|||||
|
import request from '@/utils/request' |
||||
|
|
||||
|
export function del(keys) { |
||||
|
return request({ |
||||
|
url: 'auth/online', |
||||
|
method: 'delete', |
||||
|
data: keys |
||||
|
}) |
||||
|
} |
@ -0,0 +1,22 @@ |
|||||
|
import request from '@/utils/request' |
||||
|
|
||||
|
export function getAll() { |
||||
|
return request({ |
||||
|
url: 'api/autorun', |
||||
|
method: 'get' |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
export function start(id) { |
||||
|
return request({ |
||||
|
url: 'api/autorun/start/' + id, |
||||
|
method: 'put' |
||||
|
}) |
||||
|
} export function stop(id) { |
||||
|
return request({ |
||||
|
url: 'api/autorun/stop/' + id, |
||||
|
method: 'put' |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
export default { start, stop } |
@ -0,0 +1,15 @@ |
|||||
|
import request from '@/utils/request' |
||||
|
|
||||
|
export function resetEmail(data) { |
||||
|
return request({ |
||||
|
url: 'api/code/resetEmail?email=' + data, |
||||
|
method: 'post' |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
export function updatePass(pass) { |
||||
|
return request({ |
||||
|
url: 'api/users/updatePass/' + pass, |
||||
|
method: 'get' |
||||
|
}) |
||||
|
} |
@ -0,0 +1,60 @@ |
|||||
|
import request from '@/utils/request' |
||||
|
|
||||
|
export function getDepts(params) { |
||||
|
return request({ |
||||
|
url: 'api/dept', |
||||
|
method: 'get', |
||||
|
params |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
export function getDeptTree(params) { |
||||
|
return request({ |
||||
|
url: '/api/dept/allTree', |
||||
|
method: 'get', |
||||
|
params |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
export function getDeptSuperior(ids) { |
||||
|
const data = ids.length || ids.length === 0 ? ids : Array.of(ids) |
||||
|
return request({ |
||||
|
url: 'api/dept/superior', |
||||
|
method: 'post', |
||||
|
data |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
export function getDeptvo(params) { |
||||
|
return request({ |
||||
|
url: 'api/dept/vo', |
||||
|
method: 'get', |
||||
|
params |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
export function add(data) { |
||||
|
return request({ |
||||
|
url: 'api/dept', |
||||
|
method: 'post', |
||||
|
data |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
export function del(ids) { |
||||
|
return request({ |
||||
|
url: 'api/dept', |
||||
|
method: 'delete', |
||||
|
data: ids |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
export function edit(data) { |
||||
|
return request({ |
||||
|
url: 'api/dept', |
||||
|
method: 'put', |
||||
|
data |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
export default { add, edit, del, getDepts, getDeptSuperior, getDeptvo, getDeptTree } |
@ -0,0 +1,33 @@ |
|||||
|
import request from '@/utils/request' |
||||
|
|
||||
|
export function add(data) { |
||||
|
return request({ |
||||
|
url: 'api/grid', |
||||
|
method: 'post', |
||||
|
data |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
export function del(ids) { |
||||
|
return request({ |
||||
|
url: 'api/grid/', |
||||
|
method: 'delete', |
||||
|
data: ids |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
export function edit(data) { |
||||
|
return request({ |
||||
|
url: 'api/grid', |
||||
|
method: 'put', |
||||
|
data |
||||
|
}) |
||||
|
} |
||||
|
export function selectList() { |
||||
|
return request({ |
||||
|
url: 'api/grid/selectList', |
||||
|
method: 'get' |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
export default { add, edit, del, selectList } |
@ -0,0 +1,50 @@ |
|||||
|
import request from '@/utils/request' |
||||
|
|
||||
|
export function add(data) { |
||||
|
return request({ |
||||
|
url: 'api/gridField', |
||||
|
method: 'post', |
||||
|
data |
||||
|
}) |
||||
|
} |
||||
|
export function batchAdd(json) { // use
|
||||
|
return request({ |
||||
|
url: 'api/gridField/batchAdd', |
||||
|
method: 'post', |
||||
|
data: json |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
export function del(ids) { |
||||
|
return request({ |
||||
|
url: 'api/gridField/', |
||||
|
method: 'delete', |
||||
|
data: ids |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
export function edit(data) { |
||||
|
return request({ |
||||
|
url: 'api/gridField', |
||||
|
method: 'put', |
||||
|
data |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
export function getGridFieldsById(id) { // use
|
||||
|
return request({ |
||||
|
url: 'api/gridField/getGridFields', |
||||
|
method: 'post', |
||||
|
data: id |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
export function getGridFieldsByCode(grid_code) { // use
|
||||
|
return request({ |
||||
|
url: 'api/gridField/getGridFieldsByCode', |
||||
|
method: 'post', |
||||
|
data: grid_code |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
export default { add, edit, del, batchAdd, getGridFieldsById, getGridFieldsByCode } |
@ -0,0 +1,73 @@ |
|||||
|
import request from '@/utils/request' |
||||
|
|
||||
|
export function getMenusTree(pid) { |
||||
|
return request({ |
||||
|
url: 'api/sysMenu/lazy?pid=' + pid, |
||||
|
method: 'get' |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
export function getMenus(params) { |
||||
|
return request({ |
||||
|
url: 'api/sysMenu', |
||||
|
method: 'get', |
||||
|
params |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
export function getMenusByRole(params) { |
||||
|
return request({ |
||||
|
url: 'api/sysMenu/getMenusByRole', |
||||
|
method: 'post', |
||||
|
data: params |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
export function getMenuSuperior(ids) { |
||||
|
const data = ids.length || ids.length === 0 ? ids : Array.of(ids) |
||||
|
return request({ |
||||
|
url: 'api/sysMenu/superior', |
||||
|
method: 'post', |
||||
|
data |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
export function getChild(id) { |
||||
|
return request({ |
||||
|
url: 'api/sysMenu/child?id=' + id, |
||||
|
method: 'get' |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
export function buildMenus(data) { |
||||
|
return request({ |
||||
|
url: 'api/sysMenu/build?systemType=' + data, |
||||
|
method: 'get' |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
export function add(data) { |
||||
|
return request({ |
||||
|
url: 'api/sysMenu', |
||||
|
method: 'post', |
||||
|
data |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
export function del(ids) { |
||||
|
return request({ |
||||
|
url: 'api/sysMenu', |
||||
|
method: 'delete', |
||||
|
data: ids |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
export function edit(data) { |
||||
|
return request({ |
||||
|
url: 'api/sysMenu', |
||||
|
method: 'put', |
||||
|
data |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
export default { add, edit, del, getMenusTree, getMenuSuperior, getMenus, getChild, getMenusByRole } |
@ -0,0 +1,35 @@ |
|||||
|
import request from '@/utils/request' |
||||
|
|
||||
|
// 查询缓存详细
|
||||
|
export function getCache() { |
||||
|
return request({ |
||||
|
url: '/api/redis/get-monitor-info', |
||||
|
method: 'get' |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// 获取模块
|
||||
|
export function getKeyDefineList() { |
||||
|
return request({ |
||||
|
url: '/api/redis/get-key-define-list', |
||||
|
method: 'get' |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// 获取模块
|
||||
|
export function getKeyValueList() { |
||||
|
return request({ |
||||
|
url: '/api/redis/get-key-value-list', |
||||
|
method: 'get' |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
export function batch(ids) { |
||||
|
return request({ |
||||
|
url: 'api/redis/', |
||||
|
method: 'delete', |
||||
|
data: ids |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
export default { getCache, getKeyDefineList, batch } |
After Width: | Height: | Size: 160 KiB |
After Width: | Height: | Size: 96 KiB |
After Width: | Height: | Size: 4.7 KiB |
@ -0,0 +1,9 @@ |
|||||
|
import Vue from 'vue' |
||||
|
import SvgIcon from '@/components/SvgIcon'// svg component
|
||||
|
|
||||
|
// register globally
|
||||
|
Vue.component('svg-icon', SvgIcon) |
||||
|
|
||||
|
const req = require.context('./svg', false, /\.svg$/) |
||||
|
const requireAll = requireContext => requireContext.keys().map(requireContext) |
||||
|
requireAll(req) |
After Width: | Height: | Size: 6.0 KiB |
After Width: | Height: | Size: 1.9 KiB |
After Width: | Height: | Size: 2.6 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 2.3 KiB |
After Width: | Height: | Size: 2.2 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 179 B |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 600 B |
After Width: | Height: | Size: 3.9 KiB |
After Width: | Height: | Size: 2.4 KiB |
After Width: | Height: | Size: 2.3 KiB |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 2.1 KiB |
After Width: | Height: | Size: 2.4 KiB |
After Width: | Height: | Size: 653 B |
After Width: | Height: | Size: 4.4 KiB |
After Width: | Height: | Size: 732 B |
After Width: | Height: | Size: 536 B |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 613 B |
After Width: | Height: | Size: 559 B |
After Width: | Height: | Size: 818 B |
After Width: | Height: | Size: 627 B |
After Width: | Height: | Size: 1.8 KiB |
After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 1.8 KiB |
After Width: | Height: | Size: 421 B |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 2.8 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.0 KiB |
After Width: | Height: | Size: 2.0 KiB |
After Width: | Height: | Size: 744 B |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 6.4 KiB |
After Width: | Height: | Size: 2.4 KiB |
After Width: | Height: | Size: 285 B |
After Width: | Height: | Size: 1017 B |
After Width: | Height: | Size: 950 B |
After Width: | Height: | Size: 4.5 KiB |
After Width: | Height: | Size: 761 B |
After Width: | Height: | Size: 640 B |
After Width: | Height: | Size: 313 B |
After Width: | Height: | Size: 669 B |
After Width: | Height: | Size: 1.8 KiB |
After Width: | Height: | Size: 335 B |
After Width: | Height: | Size: 716 B |
After Width: | Height: | Size: 821 B |
After Width: | Height: | Size: 3.2 KiB |
After Width: | Height: | Size: 780 B |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 738 B |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 2.6 KiB |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 1.3 KiB |