/* * @Author: tangqihui * @Date: 2023-03-06 */ import detectTask from './assetsFound/detectTask.vue' import ipAsset from './assetsFound/ipAsset.vue' import assetsPut from './assetsFound/assetsPut.vue' import propertyAudit from './assetsFound/propertyAudit.vue' import collectionPlan from './infoCollection/collectionPlan.vue' import speculatePlan from './infoCollection/speculatePlan.vue' import assetAddress from './assetAddress.vue' import collectEngine from './collectConfig/collectEngine.vue' import scanEngine from './collectConfig/scanEngine.vue' import config from './collectConfig/scanEngine/config.vue' import inventory from './infoCollection/inventory.vue' import inventoryAdd from './infoCollection/inventoryAdd.vue' import inventoryDetail from './infoCollection/inventoryDetail.vue' import portDetail from './infoCollection/portDetail.vue' import engineDialog from './components/engineDialog.vue' import recordDialog from './components/recordDialog.vue' import {withInstall} from '../../utils/tools' const YaDetectTask = withInstall(detectTask, 'YaDetectTask') const YaIpAsset = withInstall(ipAsset, 'YaIpAsset') const YaAssetsPut = withInstall(assetsPut, 'YaAssetsPut') const YaPropertyAudit = withInstall(propertyAudit, 'YaPropertyAudit') const YaCollectionPlan = withInstall(collectionPlan, 'YaCollectionPlan') const YaSpeculatePlan = withInstall(speculatePlan, 'YaSpeculatePlan') const YaAssetAddress = withInstall(assetAddress, 'YaAssetAddress') const YaCollectEngine = withInstall(collectEngine, 'YaCollectEngine') const YaScanEngine = withInstall(scanEngine, 'YaScanEngine') const YaInventory = withInstall(inventory, 'YaInventory') const YaInventoryAdd = withInstall(inventoryAdd, 'YaInventoryAdd') const YaConfig = withInstall(config, 'YaConfig') const YaEngineDialog= withInstall(engineDialog, 'YaEngineDialog') const YaRecordDialog = withInstall(recordDialog, 'YaRecordDialog') const YaInventoryDetail = withInstall(inventoryDetail, 'YaInventoryDetail') const YaPortDetail = withInstall(portDetail, 'YaPortDetail') export { YaInventory, YaInventoryAdd,YaAssetsPut, YaDetectTask, YaIpAsset, YaPropertyAudit, YaCollectionPlan,YaSpeculatePlan,YaAssetAddress,YaCollectEngine,YaScanEngine,YaConfig,YaEngineDialog,YaRecordDialog ,YaInventoryDetail,YaPortDetail}