🎨 修改组件名称.
This commit is contained in:
@@ -45,11 +45,11 @@ public class CodeGenerators {
|
|||||||
// .color("blue", "gray", "red", "green", "white")
|
// .color("blue", "gray", "red", "green", "white")
|
||||||
// .valueUseFields()
|
// .valueUseFields()
|
||||||
// .build(),
|
// .build(),
|
||||||
Template.create("command_snippet", "命令片段", "command")
|
Template.create("exec_template", "执行模板", "exec")
|
||||||
.disableUnitTest()
|
.disableUnitTest()
|
||||||
.cache("command:snippet:group:{}", "命令片段 ${userId}")
|
.cache("exec:template:list", "执行模板列表")
|
||||||
.expire(1, TimeUnit.DAYS)
|
.expire(1, TimeUnit.DAYS)
|
||||||
.vue("asset", "command-snippet")
|
.vue("exec", "exec-template")
|
||||||
.enableDrawerForm()
|
.enableDrawerForm()
|
||||||
.build(),
|
.build(),
|
||||||
};
|
};
|
||||||
|
|||||||
86
orion-ops-ui/src/api/exec/exec-template.ts
Normal file
86
orion-ops-ui/src/api/exec/exec-template.ts
Normal file
@@ -0,0 +1,86 @@
|
|||||||
|
import type { DataGrid, Pagination } from '@/types/global';
|
||||||
|
import type { TableData } from '@arco-design/web-vue/es/table/interface';
|
||||||
|
import axios from 'axios';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 执行模板创建请求
|
||||||
|
*/
|
||||||
|
export interface ExecTemplateCreateRequest {
|
||||||
|
name?: string;
|
||||||
|
command?: string;
|
||||||
|
timeout?: number;
|
||||||
|
parameter?: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 执行模板更新请求
|
||||||
|
*/
|
||||||
|
export interface ExecTemplateUpdateRequest extends ExecTemplateCreateRequest {
|
||||||
|
id?: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 执行模板查询请求
|
||||||
|
*/
|
||||||
|
export interface ExecTemplateQueryRequest extends Pagination {
|
||||||
|
id?: number;
|
||||||
|
name?: string;
|
||||||
|
command?: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 执行模板查询响应
|
||||||
|
*/
|
||||||
|
export interface ExecTemplateQueryResponse extends TableData {
|
||||||
|
id: number;
|
||||||
|
name: string;
|
||||||
|
command: string;
|
||||||
|
timeout: number;
|
||||||
|
parameter: string;
|
||||||
|
createTime: number;
|
||||||
|
updateTime: number;
|
||||||
|
creator: string;
|
||||||
|
updater: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 创建执行模板
|
||||||
|
*/
|
||||||
|
export function createExecTemplate(request: ExecTemplateCreateRequest) {
|
||||||
|
return axios.post('/asset/exec-template/create', request);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 更新执行模板
|
||||||
|
*/
|
||||||
|
export function updateExecTemplate(request: ExecTemplateUpdateRequest) {
|
||||||
|
return axios.put('/asset/exec-template/update', request);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询执行模板
|
||||||
|
*/
|
||||||
|
export function getExecTemplate(id: number) {
|
||||||
|
return axios.get<ExecTemplateQueryResponse>('/asset/exec-template/get', { params: { id } });
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询全部执行模板
|
||||||
|
*/
|
||||||
|
export function getExecTemplateList() {
|
||||||
|
return axios.get<Array<ExecTemplateQueryResponse>>('/asset/exec-template/list');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 分页查询执行模板
|
||||||
|
*/
|
||||||
|
export function getExecTemplatePage(request: ExecTemplateQueryRequest) {
|
||||||
|
return axios.post<DataGrid<ExecTemplateQueryResponse>>('/asset/exec-template/query', request);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 删除执行模板
|
||||||
|
*/
|
||||||
|
export function deleteExecTemplate(id: number) {
|
||||||
|
return axios.delete('/asset/exec-template/delete', { params: { id } });
|
||||||
|
}
|
||||||
@@ -31,7 +31,7 @@
|
|||||||
<a-button class="nav-btn"
|
<a-button class="nav-btn"
|
||||||
type="outline"
|
type="outline"
|
||||||
shape="circle"
|
shape="circle"
|
||||||
@click="openNewRoute('hostTerminal')">
|
@click="openNewRoute('terminal')">
|
||||||
<template #icon>
|
<template #icon>
|
||||||
<icon-code-square />
|
<icon-code-square />
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
@@ -2,16 +2,16 @@ import type { AppRouteRecordRaw } from '../types';
|
|||||||
import { DEFAULT_LAYOUT } from '../base';
|
import { DEFAULT_LAYOUT } from '../base';
|
||||||
|
|
||||||
const ASSET_AUDIT: AppRouteRecordRaw = {
|
const ASSET_AUDIT: AppRouteRecordRaw = {
|
||||||
name: 'assetAudit',
|
name: 'assetAuditModule',
|
||||||
component: DEFAULT_LAYOUT,
|
component: DEFAULT_LAYOUT,
|
||||||
children: [
|
children: [
|
||||||
{
|
{
|
||||||
name: 'assetAuditConnectLog',
|
name: 'connectLog',
|
||||||
path: '/connect-log',
|
path: '/connect-log',
|
||||||
component: () => import('@/views/asset-audit/connect-log/index.vue'),
|
component: () => import('@/views/asset-audit/connect-log/index.vue'),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'assetAuditSftpLog',
|
name: 'sftpLog',
|
||||||
path: '/sftp-log',
|
path: '/sftp-log',
|
||||||
component: () => import('@/views/asset-audit/sftp-log/index.vue'),
|
component: () => import('@/views/asset-audit/sftp-log/index.vue'),
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -2,19 +2,19 @@ import type { AppRouteRecordRaw } from '../types';
|
|||||||
import { DEFAULT_LAYOUT } from '../base';
|
import { DEFAULT_LAYOUT } from '../base';
|
||||||
|
|
||||||
const ASSET: AppRouteRecordRaw = {
|
const ASSET: AppRouteRecordRaw = {
|
||||||
name: 'asset',
|
name: 'assetModule',
|
||||||
component: DEFAULT_LAYOUT,
|
component: DEFAULT_LAYOUT,
|
||||||
children: [
|
children: [
|
||||||
{
|
{
|
||||||
name: 'assetHostList',
|
name: 'hostList',
|
||||||
path: '/host-list',
|
path: '/host-list',
|
||||||
component: () => import('@/views/asset/host-list/index.vue'),
|
component: () => import('@/views/asset/host-list/index.vue'),
|
||||||
}, {
|
}, {
|
||||||
name: 'assetHostKey',
|
name: 'hostKey',
|
||||||
path: '/host-key',
|
path: '/host-key',
|
||||||
component: () => import('@/views/asset/host-key/index.vue'),
|
component: () => import('@/views/asset/host-key/index.vue'),
|
||||||
}, {
|
}, {
|
||||||
name: 'assetHostIdentity',
|
name: 'hostIdentity',
|
||||||
path: '/host-identity',
|
path: '/host-identity',
|
||||||
component: () => import('@/views/asset/host-identity/index.vue'),
|
component: () => import('@/views/asset/host-identity/index.vue'),
|
||||||
}, {
|
}, {
|
||||||
|
|||||||
16
orion-ops-ui/src/router/routes/modules/exec.ts
Normal file
16
orion-ops-ui/src/router/routes/modules/exec.ts
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
import type { AppRouteRecordRaw } from '../types';
|
||||||
|
import { DEFAULT_LAYOUT } from '../base';
|
||||||
|
|
||||||
|
const EXEC: AppRouteRecordRaw = {
|
||||||
|
name: 'execModule',
|
||||||
|
component: DEFAULT_LAYOUT,
|
||||||
|
children: [
|
||||||
|
{
|
||||||
|
name: 'execTemplate',
|
||||||
|
path: '/exec-template',
|
||||||
|
component: () => import('@/views/exec/exec-template/index.vue'),
|
||||||
|
},
|
||||||
|
],
|
||||||
|
};
|
||||||
|
|
||||||
|
export default EXEC;
|
||||||
@@ -2,11 +2,11 @@ import type { AppRouteRecordRaw } from '../types';
|
|||||||
import { FULL_LAYOUT } from '../base';
|
import { FULL_LAYOUT } from '../base';
|
||||||
|
|
||||||
const HOST: AppRouteRecordRaw = {
|
const HOST: AppRouteRecordRaw = {
|
||||||
name: 'host',
|
name: 'hostModule',
|
||||||
component: FULL_LAYOUT,
|
component: FULL_LAYOUT,
|
||||||
children: [
|
children: [
|
||||||
{
|
{
|
||||||
name: 'hostTerminal',
|
name: 'terminal',
|
||||||
path: '/terminal',
|
path: '/terminal',
|
||||||
component: () => import('@/views/host/terminal/index.vue'),
|
component: () => import('@/views/host/terminal/index.vue'),
|
||||||
meta: {
|
meta: {
|
||||||
|
|||||||
@@ -2,21 +2,21 @@ import type { AppRouteRecordRaw } from '../types';
|
|||||||
import { DEFAULT_LAYOUT } from '../base';
|
import { DEFAULT_LAYOUT } from '../base';
|
||||||
|
|
||||||
const SYSTEM: AppRouteRecordRaw = {
|
const SYSTEM: AppRouteRecordRaw = {
|
||||||
name: 'system',
|
name: 'systemModule',
|
||||||
component: DEFAULT_LAYOUT,
|
component: DEFAULT_LAYOUT,
|
||||||
children: [
|
children: [
|
||||||
{
|
{
|
||||||
name: 'systemMenu',
|
name: 'menu',
|
||||||
path: '/menu',
|
path: '/menu',
|
||||||
component: () => import('@/views/system/menu/index.vue'),
|
component: () => import('@/views/system/menu/index.vue'),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'systemDictKey',
|
name: 'dictKey',
|
||||||
path: '/dict-key',
|
path: '/dict-key',
|
||||||
component: () => import('@/views/system/dict-key/index.vue'),
|
component: () => import('@/views/system/dict-key/index.vue'),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'systemDictValue',
|
name: 'dictValue',
|
||||||
path: '/dict-value',
|
path: '/dict-value',
|
||||||
component: () => import('@/views/system/dict-value/index.vue'),
|
component: () => import('@/views/system/dict-value/index.vue'),
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -2,16 +2,16 @@ import type { AppRouteRecordRaw } from '../types';
|
|||||||
import { DEFAULT_LAYOUT } from '../base';
|
import { DEFAULT_LAYOUT } from '../base';
|
||||||
|
|
||||||
const USER: AppRouteRecordRaw = {
|
const USER: AppRouteRecordRaw = {
|
||||||
name: 'user',
|
name: 'userModule',
|
||||||
component: DEFAULT_LAYOUT,
|
component: DEFAULT_LAYOUT,
|
||||||
children: [
|
children: [
|
||||||
{
|
{
|
||||||
name: 'userRole',
|
name: 'role',
|
||||||
path: '/role',
|
path: '/role',
|
||||||
component: () => import('@/views/user/role/index.vue'),
|
component: () => import('@/views/user/role/index.vue'),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'userUser',
|
name: 'user',
|
||||||
path: '/user',
|
path: '/user',
|
||||||
component: () => import('@/views/user/user/index.vue'),
|
component: () => import('@/views/user/user/index.vue'),
|
||||||
},
|
},
|
||||||
@@ -21,7 +21,7 @@ const USER: AppRouteRecordRaw = {
|
|||||||
component: () => import('@/views/user/info/index.vue'),
|
component: () => import('@/views/user/info/index.vue'),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'userOperatorLog',
|
name: 'operatorLog',
|
||||||
path: '/operator-log',
|
path: '/operator-log',
|
||||||
component: () => import('@/views/user/operator-log/index.vue'),
|
component: () => import('@/views/user/operator-log/index.vue'),
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -65,7 +65,7 @@
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export default {
|
export default {
|
||||||
name: 'assetAuditConnectLogClearModal'
|
name: 'connectLogClearModal'
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -87,7 +87,7 @@
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export default {
|
export default {
|
||||||
name: 'assetAuditConnectLogDetailDrawer'
|
name: 'connectLogDetailDrawer'
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -181,7 +181,7 @@
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export default {
|
export default {
|
||||||
name: 'assetAuditConnectLogTable'
|
name: 'connectLogTable'
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export default {
|
export default {
|
||||||
name: 'assetAuditConnectLog'
|
name: 'connectLog'
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -166,7 +166,7 @@
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export default {
|
export default {
|
||||||
name: 'assetAuditSftpLogTable'
|
name: 'sftpLogTable'
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export default {
|
export default {
|
||||||
name: 'assetAuditSftpLog'
|
name: 'sftpLog'
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -27,7 +27,7 @@
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export default {
|
export default {
|
||||||
name: 'hostGroupGrant'
|
name: 'hostIdentityGrant'
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -20,7 +20,7 @@
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export default {
|
export default {
|
||||||
name: 'hostGroupGrant'
|
name: 'hostKeyGrant'
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -140,7 +140,7 @@
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export default {
|
export default {
|
||||||
name: 'assetHostIdentityCardList'
|
name: 'hostIdentityCardList'
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -57,7 +57,7 @@
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export default {
|
export default {
|
||||||
name: 'assetHostIdentityFormModal'
|
name: 'hostIdentityFormModal'
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -136,7 +136,7 @@
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export default {
|
export default {
|
||||||
name: 'assetHostIdentityTable'
|
name: 'hostIdentityTable'
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -23,7 +23,7 @@
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export default {
|
export default {
|
||||||
name: 'assetHostIdentity'
|
name: 'hostIdentity'
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -94,7 +94,7 @@
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export default {
|
export default {
|
||||||
name: 'assetHostKeyCardList'
|
name: 'hostKeyCardList'
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -82,7 +82,7 @@
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export default {
|
export default {
|
||||||
name: 'assetHostKeyFormDrawer'
|
name: 'hostKeyFormDrawer'
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -109,7 +109,7 @@
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export default {
|
export default {
|
||||||
name: 'assetHostKeyTable'
|
name: 'hostKeyTable'
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -21,7 +21,7 @@
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export default {
|
export default {
|
||||||
name: 'assetHostKey'
|
name: 'hostKey'
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -166,7 +166,7 @@
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export default {
|
export default {
|
||||||
name: 'assetHostCardList'
|
name: 'hostCardList'
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -54,7 +54,7 @@
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export default {
|
export default {
|
||||||
name: 'assetHostFormModal'
|
name: 'hostFormModal'
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -159,7 +159,7 @@
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export default {
|
export default {
|
||||||
name: 'assetHostTable'
|
name: 'hostTable'
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -27,7 +27,7 @@
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export default {
|
export default {
|
||||||
name: 'assetHostList'
|
name: 'hostList'
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -43,7 +43,7 @@
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export default {
|
export default {
|
||||||
name: 'assetCommandSnippetFormDrawer'
|
name: 'commandSnippetFormDrawer'
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -41,7 +41,7 @@
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export default {
|
export default {
|
||||||
name: 'TerminalActionBarBlock'
|
name: 'terminalActionBarBlock'
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -92,7 +92,7 @@
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export default {
|
export default {
|
||||||
name: 'TerminalDisplayBlock'
|
name: 'terminalDisplayBlock'
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -15,7 +15,7 @@
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export default {
|
export default {
|
||||||
name: 'TerminalDisplaySetting'
|
name: 'terminalDisplaySetting'
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -15,7 +15,7 @@
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export default {
|
export default {
|
||||||
name: 'TerminalGeneralSetting'
|
name: 'terminalGeneralSetting'
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -78,7 +78,7 @@
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export default {
|
export default {
|
||||||
name: 'TerminalInteractBlock'
|
name: 'terminalInteractBlock'
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -33,7 +33,7 @@
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export default {
|
export default {
|
||||||
name: 'TerminalPluginsBlock'
|
name: 'terminalPluginsBlock'
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -33,7 +33,7 @@
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export default {
|
export default {
|
||||||
name: 'TerminalSessionBlock'
|
name: 'terminalSessionBlock'
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -60,7 +60,7 @@
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export default {
|
export default {
|
||||||
name: 'TerminalShortcutKeysBlock'
|
name: 'terminalShortcutKeysBlock'
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -49,7 +49,7 @@
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export default {
|
export default {
|
||||||
name: 'TerminalThemeBlock'
|
name: 'terminalThemeBlock'
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export default {
|
export default {
|
||||||
name: 'TerminalThemeSetting'
|
name: 'terminalThemeSetting'
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -27,7 +27,7 @@
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export default {
|
export default {
|
||||||
name: 'hostTerminal'
|
name: 'terminal'
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -88,7 +88,7 @@
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export default {
|
export default {
|
||||||
name: 'systemDictKeyFormModal'
|
name: 'dictKeyFormModal'
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -129,7 +129,7 @@
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export default {
|
export default {
|
||||||
name: 'systemDictKeyTable'
|
name: 'dictKeyTable'
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export default {
|
export default {
|
||||||
name: 'systemDictKey'
|
name: 'dictKey'
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -81,7 +81,7 @@
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export default {
|
export default {
|
||||||
name: 'systemDictValueFormModal'
|
name: 'dictValueFormModal'
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -125,7 +125,7 @@
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export default {
|
export default {
|
||||||
name: 'systemDictValueTable'
|
name: 'dictValueTable'
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -19,7 +19,7 @@
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export default {
|
export default {
|
||||||
name: 'systemDictValue'
|
name: 'dictValue'
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -13,7 +13,7 @@
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export default {
|
export default {
|
||||||
name: 'systemMenu'
|
name: 'menu'
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -73,7 +73,7 @@
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export default {
|
export default {
|
||||||
name: 'userOperatorLogClearModal'
|
name: 'operatorLogClearModal'
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -62,7 +62,7 @@
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export default {
|
export default {
|
||||||
name: 'userOperatorLogSimpleTable'
|
name: 'operatorLogSimpleTable'
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -125,7 +125,7 @@
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export default {
|
export default {
|
||||||
name: 'userOperatorLogTable'
|
name: 'operatorLogTable'
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export default {
|
export default {
|
||||||
name: 'userOperatorLog'
|
name: 'operatorLog'
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -35,7 +35,7 @@
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export default {
|
export default {
|
||||||
name: 'userRoleFormModal'
|
name: 'roleFormModal'
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -121,7 +121,7 @@
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export default {
|
export default {
|
||||||
name: 'userRoleTable'
|
name: 'roleTable'
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export default {
|
export default {
|
||||||
name: 'userRole'
|
name: 'role'
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -49,7 +49,7 @@
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export default {
|
export default {
|
||||||
name: 'userUserFormModal'
|
name: 'userFormModal'
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -39,7 +39,7 @@
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export default {
|
export default {
|
||||||
name: 'userUserGrantRolesFormModal'
|
name: 'userGrantRolesFormModal'
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -38,7 +38,7 @@
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export default {
|
export default {
|
||||||
name: 'userUserResetPasswordFormModal'
|
name: 'userResetPasswordFormModal'
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -151,7 +151,7 @@
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export default {
|
export default {
|
||||||
name: 'userUserTable'
|
name: 'userTable'
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -19,7 +19,7 @@
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export default {
|
export default {
|
||||||
name: 'userUser'
|
name: 'user'
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user