🎨 修改页面大小.
This commit is contained in:
@@ -68,7 +68,7 @@ public interface UserCacheKeyDefine {
|
|||||||
.desc("用户登录 token ${id} ${time}")
|
.desc("用户登录 token ${id} ${time}")
|
||||||
.type(LoginTokenDTO.class)
|
.type(LoginTokenDTO.class)
|
||||||
.struct(RedisCacheStruct.STRING)
|
.struct(RedisCacheStruct.STRING)
|
||||||
.timeout(24, TimeUnit.HOURS)
|
.timeout(24 * 60, TimeUnit.MINUTES)
|
||||||
.build();
|
.build();
|
||||||
|
|
||||||
CacheKeyDefine LOGIN_REFRESH = new CacheKeyBuilder()
|
CacheKeyDefine LOGIN_REFRESH = new CacheKeyBuilder()
|
||||||
@@ -76,7 +76,7 @@ public interface UserCacheKeyDefine {
|
|||||||
.desc("用户刷新 token ${id} ${time}")
|
.desc("用户刷新 token ${id} ${time}")
|
||||||
.type(LoginTokenDTO.class)
|
.type(LoginTokenDTO.class)
|
||||||
.struct(RedisCacheStruct.STRING)
|
.struct(RedisCacheStruct.STRING)
|
||||||
.timeout(32, TimeUnit.HOURS)
|
.timeout(32 * 60, TimeUnit.MINUTES)
|
||||||
.build();
|
.build();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
:z-index="9999"
|
:z-index="9999"
|
||||||
style="width: 100%; height: 100%;"
|
style="width: 100%; height: 100%;"
|
||||||
:content="userStore.username || ''">
|
:content="userStore.username || ''">
|
||||||
<PageLayout />
|
<page-layout />
|
||||||
</a-watermark>
|
</a-watermark>
|
||||||
</a-layout-content>
|
</a-layout-content>
|
||||||
</a-layout>
|
</a-layout>
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="view-container">
|
<div class="layout-container view-container">
|
||||||
<a-tabs v-model:active-key="activeKey"
|
<a-tabs v-model:active-key="activeKey"
|
||||||
class="tabs-container simple-card"
|
class="tabs-container simple-card"
|
||||||
size="large"
|
size="large"
|
||||||
@@ -52,11 +52,8 @@
|
|||||||
|
|
||||||
<style lang="less" scoped>
|
<style lang="less" scoped>
|
||||||
.view-container {
|
.view-container {
|
||||||
display: flex;
|
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: calc(100vh - 92px);
|
||||||
position: relative;
|
|
||||||
padding: 16px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.tabs-container {
|
.tabs-container {
|
||||||
|
|||||||
@@ -45,9 +45,7 @@
|
|||||||
|
|
||||||
.upload-container {
|
.upload-container {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: calc(100vh - 92px);
|
||||||
position: relative;
|
|
||||||
display: flex;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="layout-container full">
|
<div class="layout-container exec-container">
|
||||||
<!-- 执行面板 -->
|
<!-- 执行面板 -->
|
||||||
<div v-show="!logVisible" class="panel-wrapper">
|
<div v-show="!logVisible" class="panel-wrapper">
|
||||||
<exec-command-panel @submit="openLog" />
|
<exec-command-panel @submit="openLog" />
|
||||||
@@ -73,6 +73,11 @@
|
|||||||
|
|
||||||
<style lang="less" scoped>
|
<style lang="less" scoped>
|
||||||
|
|
||||||
|
.exec-container {
|
||||||
|
width: 100%;
|
||||||
|
height: calc(100vh - 92px);
|
||||||
|
}
|
||||||
|
|
||||||
.panel-wrapper {
|
.panel-wrapper {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
|||||||
@@ -21,3 +21,4 @@ ADD COLUMN `deleted` tinyint(1) DEFAULT '0' COMMENT '是否删除 0未删除 1
|
|||||||
DELETE FROM dict_key WHERE deleted = 1;
|
DELETE FROM dict_key WHERE deleted = 1;
|
||||||
DELETE FROM dict_value WHERE deleted = 1;
|
DELETE FROM dict_value WHERE deleted = 1;
|
||||||
DELETE FROM system_menu WHERE deleted = 1;
|
DELETE FROM system_menu WHERE deleted = 1;
|
||||||
|
DELETE FROM system_setting WHERE deleted = 1;
|
||||||
|
|||||||
Reference in New Issue
Block a user