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
Email Patches
Plain Diff
Browse Files
Authored by
鲁尚清
3 years ago
Commit
1784e21f7457f19c080efac8eeafc8fdea5da7ae
1 parent
68d196df
对比分析配置列表增加分页,运维文档管理增加全选按钮
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
5 deletions
hg-monitor-web-base/src/main/resources/static/vue3/src/components/common/document/index.html
hg-monitor-web-base/src/main/resources/static/vue3/src/components/common/document/index.js
hg-monitor-web-zj/src/main/resources/static/vue3/src/views/analysis/config/index.html
hg-monitor-web-zj/src/main/resources/static/vue3/src/views/documentationManagement/index.html
hg-monitor-web-base/src/main/resources/static/vue3/src/components/common/document/index.html
View file @
1784e21
...
...
@@ -65,7 +65,7 @@
</el-button>
</div>
<div
class=
"select-all"
>
<div
class=
"select-all"
v-if=
"isSelect"
>
<el-button
type=
"primary"
:size=
"$global.elementSize"
@
click=
"selectAll()"
v-if=
"activeBtn == 'view'"
>
{{selectText}}
...
...
@@ -73,7 +73,7 @@
</div>
<!--
<div style="text-align: right;width: 150px">
<div
style=
"text-align: right;width: 150px"
>
<el-button-group>
<el-button
:size=
"$global.elementSize"
:type=
"activeBtn == 'view' ? 'primary' : ''"
...
...
@@ -85,7 +85,7 @@
<i
class=
"iconfont icon-liebiao"
></i>
</el-button>
</el-button-group>
</div>
-->
</div>
</div>
<!--列表-->
<div
v-if=
"activeBtn == 'list'"
>
...
...
hg-monitor-web-base/src/main/resources/static/vue3/src/components/common/document/index.js
View file @
1784e21
...
...
@@ -42,6 +42,11 @@ export default {
type
:
Boolean
,
default
:
false
},
//是否展示全选按钮
isSelect
:{
type
:
Boolean
,
default
:
false
}
},
data
()
{
return
{
...
...
hg-monitor-web-zj/src/main/resources/static/vue3/src/views/analysis/config/index.html
View file @
1784e21
...
...
@@ -113,7 +113,7 @@
<cm-table-page
:columns=
"columns"
:dataList=
"tabSecondList"
@
loaddata=
"loadSecondList"
:showIndex=
"true"
:showBorder=
"true"
:loading=
"false"
:showPage=
"
fals
e"
:showTools=
"true"
:height=
"(height - 500)"
>
:showPage=
"
tru
e"
:showTools=
"true"
:height=
"(height - 500)"
>
<template
#
tools=
"{scope}"
>
<el-button
type=
"text"
size=
"small"
@
click
.
prevent=
"addRes(scope.row,scope.$index)"
>
<i
class=
"el-icon-plus"
/>
添加
...
...
hg-monitor-web-zj/src/main/resources/static/vue3/src/views/documentationManagement/index.html
View file @
1784e21
<div
class=
"container"
>
<cm-document></cm-document>
<cm-document
:isSelect=
"true"
></cm-document>
</div>
...
...
Please
register
or
login
to post a comment