🔖 升级版本.

This commit is contained in:
lijiahangmax
2024-03-06 00:03:13 +08:00
parent 93407460d8
commit ba338c15de
29 changed files with 116 additions and 77 deletions

View File

@@ -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

View File

@@ -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

View File

@@ -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",

View File

@@ -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';
/**

View 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;

View File

@@ -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;

View File

@@ -65,7 +65,7 @@
<script lang="ts">
export default {
name: 'hostAuditConnectLogClearModal'
name: 'assetAuditConnectLogClearModal'
};
</script>

View File

@@ -87,7 +87,7 @@
<script lang="ts">
export default {
name: 'hostAuditConnectLogDetailDrawer'
name: 'assetAuditConnectLogDetailDrawer'
};
</script>

View File

@@ -181,7 +181,7 @@
<script lang="ts">
export default {
name: 'hostAuditConnectLogTable'
name: 'assetAuditConnectLogTable'
};
</script>

View File

@@ -7,7 +7,7 @@
<script lang="ts">
export default {
name: 'hostAuditConnectLog'
name: 'assetAuditConnectLog'
};
</script>

View File

@@ -166,7 +166,7 @@
<script lang="ts">
export default {
name: 'hostAuditSftpLogTable'
name: 'assetAuditSftpLogTable'
};
</script>

View File

@@ -7,7 +7,7 @@
<script lang="ts">
export default {
name: 'hostAuditSftpLog'
name: 'assetAuditSftpLog'
};
</script>