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
2fdc51bf
Commit
2fdc51bf
authored
Dec 12, 2020
by
Administrator
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' into develop
parents
7122115c
dda13fb2
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
61 additions
and
42 deletions
+61
-42
2020_12_08_155345_create_user_roles_table.php
.../migrations/2020_12_08_155345_create_user_roles_table.php
+3
-2
alarm.wav
public/audio/alarm.wav
+0
-0
alarm.wav
resources/js/assets/alarm.wav
+0
-0
index.vue
resources/js/views/dashboard/index.vue
+31
-40
index.vue
resources/js/views/map/index.vue
+27
-0
No files found.
database/migrations/2020_12_08_155345_create_user_roles_table.php
View file @
2fdc51bf
...
...
@@ -14,8 +14,9 @@ class CreateUserRolesTable extends Migration
public
function
up
()
{
Schema
::
create
(
'user_roles'
,
function
(
Blueprint
$table
)
{
$table
->
id
();
$table
->
string
(
'name'
)
->
unique
();
$table
->
increments
(
'id'
)
->
comment
(
'主键'
);
$table
->
string
(
'name'
)
->
unique
()
->
comment
(
'角色名称'
);
$table
->
tinyInteger
(
'state'
)
->
comment
(
'状态:1:启用,2:停用'
);
$table
->
timestamps
();
});
}
...
...
public/audio/alarm.wav
0 → 100644
View file @
2fdc51bf
File added
resources/js/assets/alarm.wav
0 → 100644
View file @
2fdc51bf
File added
resources/js/views/dashboard/index.vue
View file @
2fdc51bf
...
...
@@ -14,20 +14,44 @@
<el-col
:span=
"6"
><el-card
shadow=
"always"
>
设备故障
<span
style=
"margin-left: 12px;color: #5d5f5f;"
>
{{
synthesizecount
.
device_offline
}}
</span>
个
</el-card></el-col>
<el-col
:span=
"6"
><el-card
shadow=
"always"
>
今天报警次数
<span
style=
"margin-left: 12px;color: #F56C6C;"
>
{{
synthesizecount
.
timedevicepolice
}}
</span>
个
</el-card></el-col>
</el-row>
<el-row>
<el-row
:align=
"'middle'"
>
<el-card
class=
"box-card"
style=
"margin-top:12px;height: 200px;"
>
<
div
style=
"display: inline-block
;"
>
<
el-col
:span=
"4"
style=
"text-align: center
;"
>
<el-progress
type=
"dashboard"
:percentage=
"synthesizecount.percent_alarm"
color=
"red"
></el-progress>
<el-tooltip
class=
"item"
effect=
"red"
:content=
"synthesizecount.percent_alarm + '%'"
placement=
"top-start"
>
<
span
style=
"position: relative;left: -115px;top: 12px;"
>
当前报警率
</span
>
<
p>
当前报警率
</p
>
</el-tooltip>
</
div
>
<
div
style=
"display: inline-block
;"
>
</
el-col
>
<
el-col
:span=
"4"
style=
"text-align: center
;"
>
<el-progress
type=
"dashboard"
:percentage=
"synthesizecount.percent_online"
color=
"green"
></el-progress>
<el-tooltip
class=
"item"
effect=
"green"
:content=
"synthesizecount.percent_online + '%'"
placement=
"top-start"
>
<
span
style=
"position: relative;left: -108px;top: 12px;"
>
设备在线率
</span
>
<
p>
设备在线率
</p
>
</el-tooltip>
</div>
</el-col>
<el-col
:span=
"4"
style=
"text-align: center;"
>
<el-progress
type=
"dashboard"
:percentage=
"memory"
:color=
"colors"
></el-progress>
<el-tooltip
class=
"item"
effect=
"dark"
:content=
"memory + 'MB'"
placement=
"top-start"
>
<p>
项目运行速度
</p>
</el-tooltip>
</el-col>
<el-col
:span=
"4"
style=
"text-align: center;"
>
<el-progress
type=
"dashboard"
:percentage=
"base_path"
:color=
"colors"
></el-progress>
<el-tooltip
class=
"item"
effect=
"dark"
:content=
"base_path * 10 + 'MB'"
placement=
"top-start"
>
<p>
项目容量
</p>
</el-tooltip>
</el-col>
<el-col
:span=
"4"
style=
"text-align: center;"
>
<el-progress
type=
"dashboard"
:percentage=
"end_time"
:color=
"colors"
></el-progress>
<el-tooltip
class=
"item"
effect=
"dark"
:content=
"end_time + 'S'"
placement=
"top-start"
>
<p>
访问接口速度
</p>
</el-tooltip>
</el-col>
<el-col
:span=
"4"
style=
"text-align: center;"
>
<el-progress
type=
"dashboard"
:percentage=
"databas"
:color=
"colors"
></el-progress>
<el-tooltip
class=
"item"
effect=
"dark"
:content=
"databas + 'S'"
placement=
"top-start"
>
<p>
访问数据库速度
</p>
</el-tooltip>
</el-col>
</el-card>
</el-row>
</div>
...
...
@@ -37,39 +61,6 @@
<chart
height=
"100%"
width=
"100%"
/>
</div>
</el-card>
<!-- 统计 -->
<el-card
class=
"box-card"
style=
"margin-top:12px;height: 200px;"
>
<div
style=
"display: inline-block;"
>
<el-progress
type=
"dashboard"
:percentage=
"memory"
:color=
"colors"
></el-progress>
<el-tooltip
class=
"item"
effect=
"dark"
:content=
"memory + 'MB'"
placement=
"top-start"
>
<span
style=
"position: relative;left: -115px;top: 12px;"
>
项目运行速度
</span>
</el-tooltip>
</div>
<div
style=
"display: inline-block;"
>
<el-progress
type=
"dashboard"
:percentage=
"base_path"
:color=
"colors"
></el-progress>
<el-tooltip
class=
"item"
effect=
"dark"
:content=
"base_path * 10 + 'MB'"
placement=
"top-start"
>
<span
style=
"position: relative;left: -108px;top: 12px;"
>
项目容量
</span>
</el-tooltip>
</div>
<div
style=
"display: inline-block;"
>
<el-progress
type=
"dashboard"
:percentage=
"end_time"
:color=
"colors"
></el-progress>
<el-tooltip
class=
"item"
effect=
"dark"
:content=
"end_time + 'S'"
placement=
"top-start"
>
<span
style=
"position: relative;left: -112px;top: 12px;"
>
访问接口速度
</span>
</el-tooltip>
</div>
<div
style=
"display: inline-block; position: relative;left: -36px;"
>
<el-progress
type=
"dashboard"
:percentage=
"databas"
:color=
"colors"
></el-progress>
<el-tooltip
class=
"item"
effect=
"dark"
:content=
"databas + 'S'"
placement=
"top-start"
>
<span
style=
"position: relative;left: -122px;top: 12px;"
>
访问数据库速度
</span>
</el-tooltip>
</div>
<div
style=
"display: inline-block;position: relative;right: -808px;bottom: 127px;"
>
<el-progress
type=
"dashboard"
:percentage=
"rand"
:color=
"colors"
></el-progress>
<el-tooltip
class=
"item"
effect=
"dark"
:content=
"rand + 'MB'"
placement=
"top-start"
>
<span
style=
"position: relative;left: -112px;top: 12px;"
>
进程占用情况
</span>
</el-tooltip>
</div>
</el-card>
</el-col>
<el-col
:span=
"4"
>
<!-- 时间线 -->
...
...
resources/js/views/map/index.vue
View file @
2fdc51bf
...
...
@@ -33,6 +33,7 @@
:stroke-color=
"'#ccc'"
:stroke-opacity=
"0.9"
:events=
"markerClickEvent(marker)"
:check=
"playAudio(marker.devicepolice)"
></el-amap-circle-marker>
<!-- 右上角设备和用户切换按钮 -->
<div
class=
"toolbar"
>
...
...
@@ -184,6 +185,8 @@ export default {
data
(){
const
_this
=
this
;
return
{
audio
:
new
Audio
(
'/audio/alarm.wav'
),
audio_play
:
false
,
intervalId
:
null
,
map
:
{},
amapManager
:
new
AMapManager
(),
...
...
@@ -413,6 +416,30 @@ export default {
clearInterval
(
this
.
intervalId
);
// 清除计时器
this
.
intervalId
=
null
;
// 设置为null
},
// 播放报警声音
playAudio
(
state
)
{
if
(
this
.
audio_play
===
false
&&
(
state
===
4
||
state
===
5
||
state
===
6
||
state
===
16
))
{
const
playPromise
=
this
.
audio
.
play
();
const
that
=
this
;
if
(
playPromise
)
{
playPromise
.
then
(()
=>
{
// 音频加载成功
// 音频的播放需要耗时
that
.
tiemr
=
setInterval
(()
=>
{
that
.
second
--
;
if
(
that
.
second
<=
0
)
{
this
.
audio
.
pause
();
this
.
audio_play
=
true
;
clearInterval
(
that
.
tiemr
);
}
},
1000
);
}).
catch
((
e
)
=>
{
// 音频加载失败
console
.
error
(
e
);
});
}
}
},
},
};
</
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