Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
DC-TOM
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
刘照晖
DC-TOM
Commits
dfdc6e4f
Commit
dfdc6e4f
authored
May 23, 2025
by
liuzhaoh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
除尘器设备联调
parent
535c681d
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
332 additions
and
95 deletions
+332
-95
index.js
src/request/index.js
+3
-1
warn.vue
src/views/dustMonitoring/components/warn.vue
+49
-0
index.vue
src/views/dustMonitoring/index.vue
+280
-94
No files found.
src/request/index.js
View file @
dfdc6e4f
...
...
@@ -7,11 +7,13 @@ const ENV = import.meta.env
const
requestObj
=
{};
const
source
=
axios
.
CancelToken
.
source
()
const
service
=
axios
.
create
({
headers
:
{
"Content-Type"
:
"application/json"
,
"X-Requested-With"
:
"XMLHttpRequest"
}
},
cancelToken
:
source
.
token
});
service
.
interceptors
.
request
.
use
(
...
...
src/views/dustMonitoring/components/warn.vue
0 → 100644
View file @
dfdc6e4f
<
template
>
<div
class=
"title layout1"
>
<span>
告警:
</span>
<span
class=
"jump-icon"
>
>>
</span>
</div>
<div
class=
"content"
>
<div
class=
"item"
v-for=
"item in listInfo"
:key=
"item.id"
>
{{
item
.
info
}}
</div>
</div>
</
template
>
<
script
setup
>
const
props
=
defineProps
({
listInfo
:
{
type
:
Array
,
default
:
()
=>
[],
},
});
</
script
>
<
style
scoped
lang=
"scss"
>
.title
{
height
:
20px
;
.jump-icon
{
font-weight
:
bold
;
color
:
#018796
;
}
}
.content
{
width
:
100%
;
height
:
calc
(
15vh
-
30px
);
padding
:
10px
0px
10px
30px
;
box-sizing
:
border-box
;
overflow-y
:
auto
;
.item
{
width
:
100%
;
}
}
.
content
:
:-
webkit-scrollbar
{
width
:
2px
;
background-color
:
rgba
(
13
,
15
,
18
,
0
.1
);
}
.layout1
{
display
:
flex
;
align-items
:
center
;
justify-content
:
space-between
;
}
</
style
>
\ No newline at end of file
src/views/dustMonitoring/index.vue
View file @
dfdc6e4f
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment