Authored by 王涛

Merge branch 'master-500-dev-ztq1' into 'master-500-dev'

快照管理目录创建



See merge request !737
<title>日志视图</title>
<iframe src="/vue3/index.html#/vue3/snapshot" frameborder="0" class="layadmin-iframe" style="height: 99.5%!important;"/>
\ No newline at end of file
... ...
... ... @@ -149,6 +149,12 @@ const routes = [{
name: 'busyConfig',
component: () => myImport('views/busyConfig/index')
},
//快照管理
{
path: '/vue3/snapshot',
name: 'snapshot',
component: () => myImport('views/snapshot/index')
},
];
// hash模式: createWebHashHistory
... ...
<div class="container" :style="{'height':height+'px','max-height':height+'px'}">
<div class="cm-card" :style="{'min-height':height+'px','max-height':height+'px','height':'100%','padding-top':'3px'}">
<div class="search">
<div class="condition">
<el-form
ref="ruleFormRef"
:model="ruleForm"
:rules="rules"
label-width="0px"
class="demo-ruleForm"
:size="formSize"
status-icon
>
</el-form>
</div>
</div>
</div>
</div>
\ No newline at end of file
... ...
export default {
name:"snapshot",
template:"",
setup(props, {attrs, slots, emit}){
const {proxy} = Vue.getCurrentInstance();
let height = Vue.ref(window.innerHeight);
let formSize = Vue.ref('default');
return{
height,
formSize
}
}
}
\ No newline at end of file
... ...
... ... @@ -244,6 +244,12 @@ const routes = [{
name: 'busyConfig',
component: () => myImport('views/busyConfig/index')
},
//快照管理
{
path: '/vue3/snapshot',
name: 'snapshot',
component: () => myImport('views/snapshot/index')
},
];
// hash模式: createWebHashHistory
... ...