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
644f1b7a
Commit
644f1b7a
authored
May 27, 2025
by
liuyangyang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
告警页面联调
parent
5f81dda4
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
5 deletions
+13
-5
AboutView.vue
src/views/AboutView/AboutView.vue
+6
-4
collectorList.vue
src/views/collectorList/collectorList.vue
+3
-0
suspendManagement.vue
...uipmentManagement/suspendManagement/suspendManagement.vue
+4
-1
No files found.
src/views/AboutView/AboutView.vue
View file @
644f1b7a
...
...
@@ -76,6 +76,7 @@
<common-table
:data=
"tableData.list"
:columns=
"tableColumns"
:total=
"total"
:default-page-size=
"pageSize"
@
pagination-change=
"handlePaginationChange"
:pagination-texts=
"
{
...
...
@@ -278,6 +279,7 @@ const openDialog = (item) => {
equDialog
.
value
=
true
;
};
const
total
=
ref
(
0
);
const
getAlarmList
=
()
=>
{
const
url
=
"/alarm/getAlarmListPage"
;
const
params
=
{
...
...
@@ -302,6 +304,7 @@ const getAlarmList = () => {
return
getDataFun
(
url
,
params
).
then
((
res
)
=>
{
if
(
res
&&
res
.
data
)
{
tableData
.
list
=
res
.
data
.
list
||
[];
total
.
value
=
res
.
data
.
total
;
}
else
{
return
[];
}
...
...
@@ -331,10 +334,9 @@ const equPending = () => {
:
""
,
};
return
getDataFun
(
url
,
params
).
then
((
res
)
=>
{
if
(
res
&&
res
.
data
)
{
tableData
.
list
=
res
.
data
.
list
||
[];
}
else
{
return
[];
if
(
res
&&
res
.
code
==
1
)
{
equDialog
.
value
=
false
;
getAlarmList
();
}
});
};
...
...
src/views/collectorList/collectorList.vue
View file @
644f1b7a
...
...
@@ -51,6 +51,7 @@
:data=
"tableData.list"
:columns=
"tableColumns"
:default-page-size=
"20"
:total=
"total"
@
pagination-change=
"handlePaginationChange"
:pagination-texts=
"
{
total: '共',
...
...
@@ -197,6 +198,7 @@ const tableData = reactive({
],
});
const
total
=
ref
(
0
);
const
getAllDustList
=
()
=>
{
const
url
=
"/bag/cycle/getReplaceListPage"
;
console
.
log
(
formInline
.
value
.
date
);
...
...
@@ -220,6 +222,7 @@ const getAllDustList = () => {
return
getDataFun
(
url
,
params
).
then
((
res
)
=>
{
if
(
res
&&
res
.
data
)
{
tableData
.
list
=
res
.
data
.
records
||
[];
total
.
value
=
res
.
data
.
total
;
}
else
{
return
[];
}
...
...
src/views/equipmentManagement/suspendManagement/suspendManagement.vue
View file @
644f1b7a
...
...
@@ -48,7 +48,8 @@
<common-table
:data=
"tableData.list"
:columns=
"tableColumns"
:default-page-size=
"10"
:default-page-size=
"20"
:total=
"total"
@
pagination-change=
"handlePaginationChange"
:pagination-texts=
"
{
total: '共',
...
...
@@ -242,6 +243,7 @@ const onReset = () => {
getManagementList
();
};
const
total
=
ref
(
0
);
const
getManagementList
=
()
=>
{
const
url
=
"/alarm/getSuspendDeviceListPage"
;
const
params
=
{
...
...
@@ -255,6 +257,7 @@ const getManagementList = () => {
return
getDataFun
(
url
,
params
).
then
((
res
)
=>
{
if
(
res
&&
res
.
data
)
{
tableData
.
list
=
res
.
data
.
list
||
[];
total
.
value
=
res
.
data
.
total
;
}
});
};
...
...
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