Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
W
whp-xl
Project
Project
Details
Activity
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
lizhichao
whp-xl
Commits
7b5403d1
Commit
7b5403d1
authored
Aug 28, 2021
by
yaqizhang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
隐患危险源修改按钮
parent
8fdf29f9
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
811 additions
and
777 deletions
+811
-777
EnterprisesInformation.vue
...m-master/src/views/Enterprises/EnterprisesInformation.vue
+6
-51
qyMap.vue
dcit-hcsystem-hcsystem-master/src/views/qyMap/qyMap.vue
+805
-726
No files found.
dcit-hcsystem-hcsystem-master/src/views/Enterprises/EnterprisesInformation.vue
View file @
7b5403d1
...
...
@@ -17,11 +17,12 @@
</el-form>
</el-col>
</el-row>
<el-table
:data=
"tableData.pageData"
stripe
show-summary
:summary-method=
"getTotal"
border
style=
"width:100%;"
:loading=
"loading"
>
<el-table
:data=
"tableData.pageData"
stripe
show-summary
border
style=
"width:100%;"
:loading=
"loading"
>
<el-table-column
prop=
"unitName"
label=
"企业名称"
></el-table-column>
<el-table-column
prop=
"dangerNum"
label=
"危险源数量"
></el-table-column>
<el-table-column
prop=
"cameraNum"
label=
"设备监控数量"
></el-table-column>
<el-table-column
prop=
"troubleNum"
label=
"隐患数量"
></el-table-column>
<el-table-column
prop=
"unitName"
label=
"危险源"
></el-table-column>
<el-table-column
prop=
"legalPerson"
label=
"设备监控"
></el-table-column>
<el-table-column
prop=
"orgCode"
label=
"职业危害场所"
></el-table-column>
<el-table-column
prop=
"legalPersonEmail"
label=
"隐患数量"
"
></el-table-column>
</el-table>
<el-pagination
background
...
...
@@ -68,7 +69,7 @@
that
.
loading
=
true
;
METHOD
.
axiosPost
(
that
,
`/
dataStatistics/getDataStatistics
`
,
`/
enterpriseInfo/queryEnterpriseInfo
`
,
param
,
function
(
res
:
any
)
{
that
.
loading
=
false
;
...
...
@@ -78,52 +79,6 @@
}
);
}
getTotal
(
param
:
any
)
{
const
{
columns
,
data
}
=
param
;
const
sums
:
any
[]
=
[];
columns
.
forEach
((
column
:
any
,
index
:
any
)
=>
{
if
(
index
===
0
)
{
sums
[
index
]
=
'合计'
;
return
;
}
const
values
=
data
.
map
((
item
:
{
[
x
:
string
]:
any
;
})
=>
Number
(
item
[
column
.
property
]));
if
(
column
.
property
===
'dangerNum'
)
{
sums
[
index
]
=
values
.
reduce
((
prev
:
any
,
curr
:
any
)
=>
{
const
value
=
Number
(
curr
);
if
(
!
isNaN
(
value
))
{
return
prev
+
curr
;
}
else
{
return
prev
;
}
},
0
);
sums
[
index
];
}
else
if
(
column
.
property
===
'troubleNum'
)
{
sums
[
index
]
=
values
.
reduce
((
prev
:
any
,
curr
:
any
)
=>
{
const
value
=
Number
(
curr
);
if
(
!
isNaN
(
value
))
{
return
prev
+
curr
;
}
else
{
return
prev
;
}
},
0
);
sums
[
index
];
}
else
if
(
column
.
property
===
'cameraNum'
)
{
sums
[
index
]
=
values
.
reduce
((
prev
:
any
,
curr
:
any
)
=>
{
const
value
=
Number
(
curr
);
if
(
!
isNaN
(
value
))
{
return
prev
+
curr
;
}
else
{
return
prev
;
}
},
0
);
sums
[
index
];
}
else
{
sums
[
index
]
=
'--'
;
}
});
return
sums
;
}
searchFun
()
{
this
.
PAGE
=
{
page
:
1
,
size
:
10
};
this
.
getTableData
();
...
...
dcit-hcsystem-hcsystem-master/src/views/qyMap/qyMap.vue
View file @
7b5403d1
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