🔖 升级版本.
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
VITE_API_BASE_URL= 'http://127.0.0.1:9200/orion/api'
|
||||
VITE_WS_BASE_URL= 'ws://127.0.0.1:9200/orion/keep-alive'
|
||||
VITE_APP_VERSION= '1.0.0'
|
||||
VITE_APP_VERSION= '1.0.1'
|
||||
VITE_SFTP_PREVIEW_MB= 2
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
VITE_API_BASE_URL= '/orion/api'
|
||||
VITE_WS_BASE_URL= '/orion/keep-alive'
|
||||
VITE_APP_VERSION= '1.0.0'
|
||||
VITE_APP_VERSION= '1.0.1'
|
||||
VITE_SFTP_PREVIEW_MB= 2
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "orion-ops-pro-ui",
|
||||
"description": "Orion Ops Pro for Vue",
|
||||
"version": "1.0.0",
|
||||
"version": "1.0.1",
|
||||
"private": true,
|
||||
"author": "Jiahang Li",
|
||||
"license": "Apache 2.0",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import type { DataGrid } from '@/types/global';
|
||||
import type { LoginHistoryQueryResponse, OperatorLogQueryRequest, OperatorLogQueryResponse } from './operator-log';
|
||||
import type { UserQueryResponse, UserSessionOfflineRequest, UserSessionQueryResponse, UserUpdateRequest } from './user';
|
||||
import type { OperatorLogQueryRequest, OperatorLogQueryResponse } from './operator-log';
|
||||
import type { LoginHistoryQueryResponse, UserQueryResponse, UserSessionOfflineRequest, UserSessionQueryResponse, UserUpdateRequest } from './user';
|
||||
import axios from 'axios';
|
||||
|
||||
/**
|
||||
|
||||
23
orion-ops-ui/src/router/routes/modules/asset-audit.ts
Normal file
23
orion-ops-ui/src/router/routes/modules/asset-audit.ts
Normal file
@@ -0,0 +1,23 @@
|
||||
import type { AppRouteRecordRaw } from '../types';
|
||||
import { DEFAULT_LAYOUT } from '../base';
|
||||
|
||||
const ASSET_AUDIT: AppRouteRecordRaw =
|
||||
{
|
||||
name: 'assetAudit',
|
||||
path: '/asset-audit',
|
||||
component: DEFAULT_LAYOUT,
|
||||
children: [
|
||||
{
|
||||
name: 'assetAuditConnectLog',
|
||||
path: '/asset-audit/connect-log',
|
||||
component: () => import('@/views/asset-audit/connect-log/index.vue'),
|
||||
},
|
||||
{
|
||||
name: 'assetAuditSftpLog',
|
||||
path: '/asset-audit/sftp-log',
|
||||
component: () => import('@/views/asset-audit/sftp-log/index.vue'),
|
||||
},
|
||||
],
|
||||
};
|
||||
|
||||
export default ASSET_AUDIT;
|
||||
@@ -1,23 +0,0 @@
|
||||
import type { AppRouteRecordRaw } from '../types';
|
||||
import { DEFAULT_LAYOUT } from '../base';
|
||||
|
||||
const HOST_AUDIT: AppRouteRecordRaw =
|
||||
{
|
||||
name: 'hostAudit',
|
||||
path: '/host-audit',
|
||||
component: DEFAULT_LAYOUT,
|
||||
children: [
|
||||
{
|
||||
name: 'hostAuditConnectLog',
|
||||
path: '/host-audit/connect-log',
|
||||
component: () => import('@/views/host-audit/connect-log/index.vue'),
|
||||
},
|
||||
{
|
||||
name: 'hostAuditSftpLog',
|
||||
path: '/host-audit/sftp-log',
|
||||
component: () => import('@/views/host-audit/sftp-log/index.vue'),
|
||||
},
|
||||
],
|
||||
};
|
||||
|
||||
export default HOST_AUDIT;
|
||||
@@ -65,7 +65,7 @@
|
||||
|
||||
<script lang="ts">
|
||||
export default {
|
||||
name: 'hostAuditConnectLogClearModal'
|
||||
name: 'assetAuditConnectLogClearModal'
|
||||
};
|
||||
</script>
|
||||
|
||||
@@ -87,7 +87,7 @@
|
||||
|
||||
<script lang="ts">
|
||||
export default {
|
||||
name: 'hostAuditConnectLogDetailDrawer'
|
||||
name: 'assetAuditConnectLogDetailDrawer'
|
||||
};
|
||||
</script>
|
||||
|
||||
@@ -181,7 +181,7 @@
|
||||
|
||||
<script lang="ts">
|
||||
export default {
|
||||
name: 'hostAuditConnectLogTable'
|
||||
name: 'assetAuditConnectLogTable'
|
||||
};
|
||||
</script>
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
|
||||
<script lang="ts">
|
||||
export default {
|
||||
name: 'hostAuditConnectLog'
|
||||
name: 'assetAuditConnectLog'
|
||||
};
|
||||
</script>
|
||||
|
||||
@@ -166,7 +166,7 @@
|
||||
|
||||
<script lang="ts">
|
||||
export default {
|
||||
name: 'hostAuditSftpLogTable'
|
||||
name: 'assetAuditSftpLogTable'
|
||||
};
|
||||
</script>
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
|
||||
<script lang="ts">
|
||||
export default {
|
||||
name: 'hostAuditSftpLog'
|
||||
name: 'assetAuditSftpLog'
|
||||
};
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user