Toggle navigation
Toggle navigation
This project
Loading...
Sign in
monitor_v3
/
hg-monitor-web
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Plain Diff
Browse Files
Authored by
王涛
2022-07-11 11:28:22 +0800
Commit
2740205b281de0c8dd44deaeb0523c8448710c00
2 parents
52bbaa33
9ac705c1
Merge branch 'master-500-dev-ztq1' into 'master-500-dev'
快照管理目录创建 See merge request
!737
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
48 additions
and
0 deletions
hg-monitor-web-base/src/main/resources/static/src/views/snapshot/index.html
hg-monitor-web-base/src/main/resources/static/vue3/src/router/index.js
hg-monitor-web-base/src/main/resources/static/vue3/src/views/snapshot/index.html
hg-monitor-web-base/src/main/resources/static/vue3/src/views/snapshot/index.js
hg-monitor-web-qh/src/main/resources/static/vue3/src/router/index.js
hg-monitor-web-base/src/main/resources/static/src/views/snapshot/index.html
0 → 100644
View file @
2740205
<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
...
...
hg-monitor-web-base/src/main/resources/static/vue3/src/router/index.js
View file @
2740205
...
...
@@ -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
...
...
hg-monitor-web-base/src/main/resources/static/vue3/src/views/snapshot/index.html
0 → 100644
View file @
2740205
<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
...
...
hg-monitor-web-base/src/main/resources/static/vue3/src/views/snapshot/index.js
0 → 100644
View file @
2740205
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
...
...
hg-monitor-web-qh/src/main/resources/static/vue3/src/router/index.js
View file @
2740205
...
...
@@ -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
...
...
Please
register
or
login
to post a comment