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-04-07 09:40:49 +0800
Commit
a2b0be4591488d1e897b827d7e9f6ed49dc5fa52
2 parents
ad19790d
3c99d5a5
Merge branch 'master-500-dev-xwx' into 'master-500-dev'
告警意见处理样式优化 See merge request
!516
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
hg-monitor-web-base/src/main/resources/static/vue3/src/views/alarmsClearEditor/apply/index.html
hg-monitor-web-base/src/main/resources/static/vue3/src/views/alarmsClearEditor/apply/index.js
hg-monitor-web-base/src/main/resources/static/vue3/src/views/alarmsClearEditor/apply/index.html
View file @
a2b0be4
...
...
@@ -4,10 +4,10 @@
<div
class=
"condition"
>
<el-form-item>
<el-button-group
class=
"ml-4"
>
<el-button
:type=
"search.status == 0 ? 'primary' : ''"
@
click=
"getDataList(0)"
>
草稿
</el-button>
<el-button
:type=
"search.status == 1 ? 'primary' : ''"
@
click=
"getDataList(1)"
>
审批中
</el-button>
<el-button
:type=
"search.status == 2 ? 'primary' : ''"
@
click=
"getDataList(2)"
>
已审批
</el-button>
<el-button
:type=
"search.status == 3 ? 'primary' : ''"
@
click=
"getDataList(3)"
>
驳回
</el-button>
<el-button
:type=
"search.status == 0 ? 'primary' : ''"
@
click=
"getDataList(0)"
>
草稿
</el-button>
</el-button-group>
</el-form-item>
...
...
hg-monitor-web-base/src/main/resources/static/vue3/src/views/alarmsClearEditor/apply/index.js
View file @
a2b0be4
...
...
@@ -14,7 +14,7 @@ export default {
const
{
proxy
}
=
Vue
.
getCurrentInstance
();
let
height
=
Vue
.
ref
(
window
.
innerHeight
);
let
search
=
Vue
.
ref
({
status
:
0
,
status
:
1
,
keyword
:
''
,
page
:
1
,
limit
:
10
,
...
...
@@ -80,7 +80,7 @@ export default {
let
statusVal
=
Vue
.
ref
(
0
);
let
getDataList
=
(
status
)
=>
{
if
(
status
==
undefined
){
status
=
0
status
=
1
}
statusVal
.
value
=
status
;
search
.
value
.
status
=
status
;
...
...
Please
register
or
login
to post a comment