Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
L
laravelzh
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
冯超鹏
laravelzh
Commits
4bf1f661
Commit
4bf1f661
authored
Dec 08, 2020
by
Administrator
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
消防监测导出
parent
ed02aecf
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
64 additions
and
0 deletions
+64
-0
fire.vue
resources/js/views/monitor/fire.vue
+64
-0
No files found.
resources/js/views/monitor/fire.vue
View file @
4bf1f661
...
@@ -40,6 +40,11 @@
...
@@ -40,6 +40,11 @@
<el-form-item>
<el-form-item>
<el-button
type=
"primary"
@
click=
"onSubmit"
>
查询
</el-button>
<el-button
type=
"primary"
@
click=
"onSubmit"
>
查询
</el-button>
</el-form-item>
</el-form-item>
<el-form-item>
<el-button
v-if=
"device != '' "
v-waves
:loading=
"downloadLoading"
class=
"filter-item"
type=
"primary"
icon=
"el-icon-download"
@
click=
"handleDownload"
>
{{
$t
(
'table.export'
)
}}
</el-button>
</el-form-item>
</el-form>
</el-form>
<el-table
:key=
"tableKey"
v-loading=
"loading"
:data=
"device"
border
fit
highlight-current-rows
>
<el-table
:key=
"tableKey"
v-loading=
"loading"
:data=
"device"
border
fit
highlight-current-rows
>
<el-table-column
align=
"center"
label=
"ID"
width=
"80"
>
<el-table-column
align=
"center"
label=
"ID"
width=
"80"
>
...
@@ -72,6 +77,11 @@
...
@@ -72,6 +77,11 @@
<span>
{{
scope
.
row
.
gas
}}
</span>
<span>
{{
scope
.
row
.
gas
}}
</span>
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
align=
"center"
label=
"切断装置"
width=
"170"
>
<
template
slot-scope=
"scope"
>
<span>
{{
shutoffDevice
(
scope
.
row
.
shutoff_type
)
}}
</span>
</
template
>
</el-table-column>
<el-table-column
align=
"center"
label=
"检测值"
width=
"100"
>
<el-table-column
align=
"center"
label=
"检测值"
width=
"100"
>
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
<span>
{{
scope
.
row
.
nd
}}
</span>
<span>
{{
scope
.
row
.
nd
}}
</span>
...
@@ -82,6 +92,13 @@
...
@@ -82,6 +92,13 @@
<span>
{{
scope
.
row
.
danwei
}}
</span>
<span>
{{
scope
.
row
.
danwei
}}
</span>
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
align=
"center"
label=
"切断装置状态"
width=
"120"
>
<
template
slot-scope=
"scope"
>
<span>
<el-tag
:type=
" scope.row.shutoff_status==1 ? 'success' : 'warning' "
effect=
"dark"
>
{{
shutoffStatus
(
scope
.
row
.
shutoff_status
)
}}
</el-tag>
</span>
</
template
>
</el-table-column>
<el-table-column
align=
"center"
label=
"实时状态"
width=
"120"
>
<el-table-column
align=
"center"
label=
"实时状态"
width=
"120"
>
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
<span>
<span>
...
@@ -117,11 +134,15 @@ import { control } from '@/api/device';
...
@@ -117,11 +134,15 @@ import { control } from '@/api/device';
import
Pagination
from
'@/components/Pagination'
;
// 分页
import
Pagination
from
'@/components/Pagination'
;
// 分页
import
websocketurl
from
'@/api/configurl'
;
import
websocketurl
from
'@/api/configurl'
;
import
clip
from
'@/utils/clipboard'
;
import
clip
from
'@/utils/clipboard'
;
import
waves
from
'@/directive/waves'
;
// 水波纹效果
import
{
parseTime
}
from
'@/utils'
;
export
default
{
export
default
{
name
:
'Devicetype'
,
name
:
'Devicetype'
,
directives
:
{
waves
}
,
components
:
{
Pagination
}
,
components
:
{
Pagination
}
,
data
()
{
data
()
{
return
{
return
{
downloadLoading
:
false
,
tableKey
:
0
,
tableKey
:
0
,
loading
:
true
,
loading
:
true
,
device
:
[],
device
:
[],
...
@@ -223,6 +244,21 @@ export default {
...
@@ -223,6 +244,21 @@ export default {
}
,
}
,
methods
:
{
methods
:
{
// 切断装置
shutoffDevice
(
id
)
{
const
shutoff_types
=
[];
shutoff_types
[
0
]
=
'未绑定'
;
shutoff_types
[
1
]
=
'电磁阀'
;
shutoff_types
[
2
]
=
'机械手'
;
return
shutoff_types
[
id
];
}
,
shutoffStatus
(
id
)
{
const
shutoff
=
[];
shutoff
[
0
]
=
'初始化'
;
shutoff
[
1
]
=
'开启'
;
shutoff
[
2
]
=
'关闭'
;
return
shutoff
[
id
];
}
,
onSubmit
()
{
onSubmit
()
{
this
.
formSearch
.
page
=
1
;
this
.
formSearch
.
page
=
1
;
this
.
devicelist
();
this
.
devicelist
();
...
@@ -294,6 +330,34 @@ export default {
...
@@ -294,6 +330,34 @@ export default {
handleCopyphone
(
text
,
event
){
handleCopyphone
(
text
,
event
){
clip
(
text
,
event
);
clip
(
text
,
event
);
}
,
}
,
// 导出到excel
handleDownload
()
{
this
.
downloadLoading
=
true
;
import
(
'@/vendor/Export2Excel'
).
then
(
excel
=>
{
const
tHeader
=
[
'ID'
,
'设备编号'
,
'设备名称'
,
'设备详情'
,
'设备类型'
,
'检测介质'
,
'切断装置'
,
'单位'
,
'切断装置状态'
,
'实时状态'
,
'最后更新时间'
];
const
filterVal
=
[
'id'
,
'devicenum'
,
'username'
,
'deviceinfo'
,
'tname'
,
'gas'
,
'shutoff_type'
,
'danwei'
,
'shutoff_status'
,
'status_name'
,
'update_time'
];
const
data
=
this
.
formatJson
(
filterVal
,
this
.
device
);
excel
.
export_json_to_excel
({
header
:
tHeader
,
data
,
filename
:
'消防监测'
,
}
);
this
.
downloadLoading
=
false
;
}
);
}
,
formatJson
(
filterVal
,
jsonData
)
{
return
jsonData
.
map
(
v
=>
filterVal
.
map
(
j
=>
{
if
(
j
===
'shutoff_type'
)
{
return
this
.
shutoffDevice
(
v
[
j
]);
}
else
if
(
j
===
'shutoff_status'
)
{
return
this
.
shutoffStatus
(
v
[
j
]);
}
else
if
(
j
===
'update_time'
)
{
return
parseTime
(
v
[
j
]);
}
else
{
return
v
[
j
];
}
}
));
}
,
}
,
}
,
}
;
}
;
<
/script
>
<
/script
>
...
...
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