Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
smart
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
wangqinghua
smart
Commits
af6dfca7
Commit
af6dfca7
authored
Dec 17, 2018
by
wangqinghua
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
workService
parent
4a861be1
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
251 additions
and
248 deletions
+251
-248
analysis-deal.component.html
...operation-work/analysis-deal/analysis-deal.component.html
+50
-50
analysis-event.component.html
...eration-work/analysis-event/analysis-event.component.html
+51
-51
analysis-status.component.html
...ation-work/analysis-status/analysis-status.component.html
+51
-51
operation-work.component.html
...app/analysis/operation-work/operation-work.component.html
+1
-1
resource-alarm.component.ts
...p/app/analysis/resource-alarm/resource-alarm.component.ts
+2
-0
resource-usabil.component.html
...p/analysis/resource-usabil/resource-usabil.component.html
+62
-62
app.constants.ts
src/main/webapp/app/app.constants.ts
+1
-0
layout.service.ts
src/main/webapp/app/layouts/layout.service.ts
+3
-3
system.service.ts
src/main/webapp/app/system/system.service.ts
+30
-30
No files found.
src/main/webapp/app/analysis/operation-work/analysis-deal/analysis-deal.component.html
View file @
af6dfca7
<!--
处理人统计
-->
<!--
<!–处理人统计–>
-->
<
nz-spin
[
nzSpinning
]="
isLoading
"
>
<
!--<nz-spin [nzSpinning]="isLoading">--
>
<
div
echarts
[
options
]="
chartOption
"
style=
"height: 400px;width: 100%"
></div
>
<
!--<div echarts [options]="chartOption" style="height: 400px;width: 100%"></div>--
>
<
/nz-spin
>
<
!--</nz-spin>--
>
<
nz-tabset
[
nzTabPosition
]="'
top
'"
[
nzType
]="'
card
'"
>
<
!--<nz-tabset [nzTabPosition]="'top'" [nzType]="'card'">--
>
<
nz-tab
nzTitle=
"接收流量排行"
>
<
!--<nz-tab nzTitle="接收流量排行">--
>
<
nz-table
#
nzTable
[
nzData
]="
inList
"
[
nzLoading
]="
inLoading
"
[
nzFrontPagination
]="
false
"
[
nzTotal
]="
inTotalNum
"
[
nzPageIndex
]="
inPageNum
"
[
nzPageSize
]="
inPageCount
"
(
nzPageIndexChange
)="
inChnagePage
($
event
)"
>
<
!--<nz-table #nzTable [nzData]="inList" [nzLoading]="inLoading" [nzFrontPagination]="false" [nzTotal]="inTotalNum" [nzPageIndex]="inPageNum" [nzPageSize]="inPageCount" (nzPageIndexChange)="inChnagePage($event)">--
>
<
thead
>
<
!--<thead>--
>
<
tr
>
<
!--<tr>--
>
<
th
nzWidth=
"20%"
>
监测点名称
</th
>
<
!--<th nzWidth="20%">监测点名称</th>--
>
<
th>
最大值
</th
>
<
!--<th>最大值</th>--
>
<
th>
最小值
</th
>
<
!--<th>最小值</th>--
>
<
th>
平均值
</th>
<
!--<th>平均值</th>-->
s
<
/tr
>
<
!--</tr>--
>
<
/thead
>
<
!--</thead>--
>
<
tbody
>
<
!--<tbody>--
>
<
ng-container
*
ngFor=
"let item of inList"
>
<
!--<ng-container *ngFor="let item of inList">--
>
<
tr
(
click
)="
getEcharts
(
item
.
itemid
)"
>
<
!--<tr (click)="getEcharts(item.itemid)">--
>
<
td>
{{item.itemName}}
</td
>
<
!--<td>{{item.itemName}}</td>--
>
<
td>
{{item.max | toUtil}}
</td
>
<
!--<td>{{item.max | toUtil}}</td>--
>
<
td>
{{item.min | toUtil}}
</td
>
<
!--<td>{{item.min | toUtil}}</td>--
>
<
td>
{{item.avg | toUtil}}
</td
>
<
!--<td>{{item.avg | toUtil}}</td>--
>
<
/tr
>
<
!--</tr>--
>
<
/ng-container
>
<
!--</ng-container>--
>
<
/tbody
>
<
!--</tbody>--
>
<
/nz-table
>
<
!--</nz-table>--
>
<
/nz-tab
>
<
!--</nz-tab>--
>
<
nz-tab
nzTitle=
"发送流量排行"
>
<
!--<nz-tab nzTitle="发送流量排行">--
>
<
nz-table
#
nzTable
[
nzData
]="
outList
"
[
nzLoading
]="
outLoading
"
[
nzFrontPagination
]="
false
"
[
nzTotal
]="
outTotalNum
"
[
nzPageIndex
]="
outPageNum
"
[
nzPageSize
]="
outPageCount
"
(
nzPageIndexChange
)="
outChnagePage
($
event
)"
>
<
!--<nz-table #nzTable [nzData]="outList" [nzLoading]="outLoading" [nzFrontPagination]="false" [nzTotal]="outTotalNum" [nzPageIndex]="outPageNum" [nzPageSize]="outPageCount" (nzPageIndexChange)="outChnagePage($event)">--
>
<
thead
>
<
!--<thead>--
>
<
tr
>
<
!--<tr>--
>
<
th
nzWidth=
"20%"
>
监测点名称
</th
>
<
!--<th nzWidth="20%">监测点名称</th>--
>
<
th>
最大值
</th
>
<
!--<th>最大值</th>--
>
<
th>
最小值
</th
>
<
!--<th>最小值</th>--
>
<
th>
平均值
</th
>
<
!--<th>平均值</th>--
>
<
/tr
>
<
!--</tr>--
>
<
/thead
>
<
!--</thead>--
>
<
tbody
>
<
!--<tbody>--
>
<
ng-container
*
ngFor=
"let data of outList"
>
<
!--<ng-container *ngFor="let data of outList">--
>
<
tr
class=
"cursor"
(
click
)="
getEcharts
(
data
.
itemid
)"
>
<
!--<tr class="cursor" (click)="getEcharts(data.itemid)">--
>
<
td>
{{data.itemName}}
</td
>
<
!--<td>{{data.itemName}}</td>--
>
<
td>
{{data.max | toUtil}}
</td
>
<
!--<td>{{data.max | toUtil}}</td>--
>
<
td>
{{data.min | toUtil}}
</td
>
<
!--<td>{{data.min | toUtil}}</td>--
>
<
td>
{{data.avg | toUtil}}
</td
>
<
!--<td>{{data.avg | toUtil}}</td>--
>
<
/tr
>
<
!--</tr>--
>
<
/ng-container
>
<
!--</ng-container>--
>
<
/tbody
>
<
!--</tbody>--
>
<
/nz-table
>
<
!--</nz-table>--
>
<
/nz-tab
>
<
!--</nz-tab>--
>
<
/nz-tabset
>
<
!--</nz-tabset>--
>
src/main/webapp/app/analysis/operation-work/analysis-event/analysis-event.component.html
View file @
af6dfca7
<!--事件分类统计-->
<!--<!–事件分类统计–>-->
<nz-spin
[
nzSpinning
]="
isLoading
"
>
<!--<nz-spin [nzSpinning]="isLoading">-->
<div
echarts
[
options
]="
chartOption
"
style=
"height: 400px;width: 100%"
></div>
<!--<div echarts [options]="chartOption" style="height: 400px;width: 100%"></div>-->
</nz-spin>
<!--</nz-spin>-->
<nz-tabset
[
nzTabPosition
]="'
top
'"
[
nzType
]="'
card
'"
>
<!--<nz-tabset [nzTabPosition]="'top'" [nzType]="'card'">-->
<nz-tab
nzTitle=
"接收流量排行"
>
<!--<nz-tab nzTitle="接收流量排行">-->
<nz-table
#
nzTable
[
nzData
]="
inList
"
[
nzLoading
]="
inLoading
"
[
nzFrontPagination
]="
false
"
[
nzTotal
]="
inTotalNum
"
[
nzPageIndex
]="
inPageNum
"
[
nzPageSize
]="
inPageCount
"
(
nzPageIndexChange
)="
inChnagePage
($
event
)"
>
<!--<nz-table #nzTable [nzData]="inList" [nzLoading]="inLoading" [nzFrontPagination]="false" [nzTotal]="inTotalNum" [nzPageIndex]="inPageNum" [nzPageSize]="inPageCount" (nzPageIndexChange)="inChnagePage($event)">-->
<thead>
<!--<thead>-->
<tr>
<!--<tr>-->
<th
nzWidth=
"20%"
>
监测点名称
</th>
<!--<th nzWidth="20%">监测点名称</th>-->
<th>
最大值
</th>
<!--<th>最大值</th>-->
<th>
最小值
</th>
<!--<th>最小值</th>-->
<th>
平均值
</th>
<!--<th>平均值</th>-->
</tr>
<!--</tr>-->
</thead>
<!--</thead>-->
<tbody>
<!--<tbody>-->
<ng-container
*
ngFor=
"let item of inList"
>
<!--<ng-container *ngFor="let item of inList">-->
<tr
(
click
)="
getEcharts
(
item
.
itemid
)"
>
<!--<tr (click)="getEcharts(item.itemid)">-->
<td>
{{item.itemName}}
</td>
<!--<td>{{item.itemName}}</td>-->
<td>
{{item.max | toUtil}}
</td>
<!--<td>{{item.max | toUtil}}</td>-->
<td>
{{item.min | toUtil}}
</td>
<!--<td>{{item.min | toUtil}}</td>-->
<td>
{{item.avg | toUtil}}
</td>
<!--<td>{{item.avg | toUtil}}</td>-->
</tr>
<!--</tr>-->
</ng-container>
<!--</ng-container>-->
</tbody>
<!--</tbody>-->
</nz-table>
<!--</nz-table>-->
</nz-tab>
<!--</nz-tab>-->
<nz-tab
nzTitle=
"发送流量排行"
>
<!--<nz-tab nzTitle="发送流量排行">-->
<nz-table
#
nzTable
[
nzData
]="
outList
"
[
nzLoading
]="
outLoading
"
[
nzFrontPagination
]="
false
"
[
nzTotal
]="
outTotalNum
"
[
nzPageIndex
]="
outPageNum
"
[
nzPageSize
]="
outPageCount
"
(
nzPageIndexChange
)="
outChnagePage
($
event
)"
>
<!--<nz-table #nzTable [nzData]="outList" [nzLoading]="outLoading" [nzFrontPagination]="false" [nzTotal]="outTotalNum" [nzPageIndex]="outPageNum" [nzPageSize]="outPageCount" (nzPageIndexChange)="outChnagePage($event)">-->
<thead>
<!--<thead>-->
<tr>
<!--<tr>-->
<th
nzWidth=
"20%"
>
监测点名称
</th>
<!--<th nzWidth="20%">监测点名称</th>-->
<th>
最大值
</th>
<!--<th>最大值</th>-->
<th>
最小值
</th>
<!--<th>最小值</th>-->
<th>
平均值
</th>
<!--<th>平均值</th>-->
</tr>
<!--</tr>-->
</thead>
<!--</thead>-->
<tbody>
<!--<tbody>-->
<ng-container
*
ngFor=
"let data of outList"
>
<!--<ng-container *ngFor="let data of outList">-->
<tr
class=
"cursor"
(
click
)="
getEcharts
(
data
.
itemid
)"
>
<!--<tr class="cursor" (click)="getEcharts(data.itemid)">-->
<td>
{{data.itemName}}
</td>
<!--<td>{{data.itemName}}</td>-->
<td>
{{data.max | toUtil}}
</td>
<!--<td>{{data.max | toUtil}}</td>-->
<td>
{{data.min | toUtil}}
</td>
<!--<td>{{data.min | toUtil}}</td>-->
<td>
{{data.avg | toUtil}}
</td>
<!--<td>{{data.avg | toUtil}}</td>-->
</tr>
<!--</tr>-->
</ng-container>
<!--</ng-container>-->
</tbody>
<!--</tbody>-->
</nz-table>
<!--</nz-table>-->
</nz-tab>
<!--</nz-tab>-->
</nz-tabset>
<!--</nz-tabset>-->
\ No newline at end of file
\ No newline at end of file
src/main/webapp/app/analysis/operation-work/analysis-status/analysis-status.component.html
View file @
af6dfca7
<!--解决状态统计-->
<!--<!–解决状态统计–>-->
<nz-spin
[
nzSpinning
]="
isLoading
"
>
<!--<nz-spin [nzSpinning]="isLoading">-->
<div
echarts
[
options
]="
chartOption
"
style=
"height: 400px;width: 100%"
></div>
<!--<div echarts [options]="chartOption" style="height: 400px;width: 100%"></div>-->
</nz-spin>
<!--</nz-spin>-->
<nz-tabset
[
nzTabPosition
]="'
top
'"
[
nzType
]="'
card
'"
>
<!--<nz-tabset [nzTabPosition]="'top'" [nzType]="'card'">-->
<nz-tab
nzTitle=
"接收流量排行"
>
<!--<nz-tab nzTitle="接收流量排行">-->
<nz-table
#
nzTable
[
nzData
]="
inList
"
[
nzLoading
]="
inLoading
"
[
nzFrontPagination
]="
false
"
[
nzTotal
]="
inTotalNum
"
[
nzPageIndex
]="
inPageNum
"
[
nzPageSize
]="
inPageCount
"
(
nzPageIndexChange
)="
inChnagePage
($
event
)"
>
<!--<nz-table #nzTable [nzData]="inList" [nzLoading]="inLoading" [nzFrontPagination]="false" [nzTotal]="inTotalNum" [nzPageIndex]="inPageNum" [nzPageSize]="inPageCount" (nzPageIndexChange)="inChnagePage($event)">-->
<thead>
<!--<thead>-->
<tr>
<!--<tr>-->
<th
nzWidth=
"20%"
>
监测点名称
</th>
<!--<th nzWidth="20%">监测点名称</th>-->
<th>
最大值
</th>
<!--<th>最大值</th>-->
<th>
最小值
</th>
<!--<th>最小值</th>-->
<th>
平均值
</th>
<!--<th>平均值</th>-->
</tr>
<!--</tr>-->
</thead>
<!--</thead>-->
<tbody>
<!--<tbody>-->
<ng-container
*
ngFor=
"let item of inList"
>
<!--<ng-container *ngFor="let item of inList">-->
<tr
(
click
)="
getEcharts
(
item
.
itemid
)"
>
<!--<tr (click)="getEcharts(item.itemid)">-->
<td>
{{item.itemName}}
</td>
<!--<td>{{item.itemName}}</td>-->
<td>
{{item.max | toUtil}}
</td>
<!--<td>{{item.max | toUtil}}</td>-->
<td>
{{item.min | toUtil}}
</td>
<!--<td>{{item.min | toUtil}}</td>-->
<td>
{{item.avg | toUtil}}
</td>
<!--<td>{{item.avg | toUtil}}</td>-->
</tr>
<!--</tr>-->
</ng-container>
<!--</ng-container>-->
</tbody>
<!--</tbody>-->
</nz-table>
<!--</nz-table>-->
</nz-tab>
<!--</nz-tab>-->
<nz-tab
nzTitle=
"发送流量排行"
>
<!--<nz-tab nzTitle="发送流量排行">-->
<nz-table
#
nzTable
[
nzData
]="
outList
"
[
nzLoading
]="
outLoading
"
[
nzFrontPagination
]="
false
"
[
nzTotal
]="
outTotalNum
"
[
nzPageIndex
]="
outPageNum
"
[
nzPageSize
]="
outPageCount
"
(
nzPageIndexChange
)="
outChnagePage
($
event
)"
>
<!--<nz-table #nzTable [nzData]="outList" [nzLoading]="outLoading" [nzFrontPagination]="false" [nzTotal]="outTotalNum" [nzPageIndex]="outPageNum" [nzPageSize]="outPageCount" (nzPageIndexChange)="outChnagePage($event)">-->
<thead>
<!--<thead>-->
<tr>
<!--<tr>-->
<th
nzWidth=
"20%"
>
监测点名称
</th>
<!--<th nzWidth="20%">监测点名称</th>-->
<th>
最大值
</th>
<!--<th>最大值</th>-->
<th>
最小值
</th>
<!--<th>最小值</th>-->
<th>
平均值
</th>
<!--<th>平均值</th>-->
</tr>
<!--</tr>-->
</thead>
<!--</thead>-->
<tbody>
<!--<tbody>-->
<ng-container
*
ngFor=
"let data of outList"
>
<!--<ng-container *ngFor="let data of outList">-->
<tr
class=
"cursor"
(
click
)="
getEcharts
(
data
.
itemid
)"
>
<!--<tr class="cursor" (click)="getEcharts(data.itemid)">-->
<td>
{{data.itemName}}
</td>
<!--<td>{{data.itemName}}</td>-->
<td>
{{data.max | toUtil}}
</td>
<!--<td>{{data.max | toUtil}}</td>-->
<td>
{{data.min | toUtil}}
</td>
<!--<td>{{data.min | toUtil}}</td>-->
<td>
{{data.avg | toUtil}}
</td>
<!--<td>{{data.avg | toUtil}}</td>-->
</tr>
<!--</tr>-->
</ng-container>
<!--</ng-container>-->
</tbody>
<!--</tbody>-->
</nz-table>
<!--</nz-table>-->
</nz-tab>
<!--</nz-tab>-->
</nz-tabset>
<!--</nz-tabset>-->
\ No newline at end of file
\ No newline at end of file
src/main/webapp/app/analysis/operation-work/operation-work.component.html
View file @
af6dfca7
...
@@ -14,7 +14,7 @@
...
@@ -14,7 +14,7 @@
</nz-breadcrumb>
</nz-breadcrumb>
</div>
</div>
<div
nz-col
nzSpan=
"8"
class=
"text-right"
>
<div
nz-col
nzSpan=
"8"
class=
"text-right"
>
<button
(
click
)="
search
()"
nz-button
nzType=
"primary"
><i
class=
"anticon anticon-search"
></i></button>
<button
nz-button
nzType=
"primary"
><i
class=
"anticon anticon-search"
></i></button>
<button
nz-button
nzType=
"primary"
><i
class=
"anticon anticon-sync"
></i></button>
<button
nz-button
nzType=
"primary"
><i
class=
"anticon anticon-sync"
></i></button>
<button
nz-button
nzType=
"primary"
><i
class=
"anticon anticon-arrows-alt"
></i></button>
<button
nz-button
nzType=
"primary"
><i
class=
"anticon anticon-arrows-alt"
></i></button>
</div>
</div>
...
...
src/main/webapp/app/analysis/resource-alarm/resource-alarm.component.ts
View file @
af6dfca7
...
@@ -16,6 +16,7 @@ export class ResourceAlarmComponent implements OnInit {
...
@@ -16,6 +16,7 @@ export class ResourceAlarmComponent implements OnInit {
startTime
;
startTime
;
endTime
;
endTime
;
groupList
;
groupList
;
isLoading
=
false
;
obj
=
{
obj
=
{
priority
:
""
,
priority
:
""
,
...
@@ -23,6 +24,7 @@ export class ResourceAlarmComponent implements OnInit {
...
@@ -23,6 +24,7 @@ export class ResourceAlarmComponent implements OnInit {
startTime
:
""
,
startTime
:
""
,
endTime
:
""
,
endTime
:
""
,
};
};
chartOption
;
pageCount
=
pageSize
;
pageCount
=
pageSize
;
pageNum
=
1
;
pageNum
=
1
;
...
...
src/main/webapp/app/analysis/resource-usabil/resource-usabil.component.html
View file @
af6dfca7
<!--
资源可用性统计
-->
<!--
<!–资源可用性统计–>
-->
<
div
nz-row
class=
"breadcrumbs"
>
<
!--<div nz-row class="breadcrumbs">--
>
<
div
nz-col
nzSpan=
"16"
>
<
!--<div nz-col nzSpan="16">--
>
<
nz-breadcrumb
class=
"padding-8-0"
>
<
!--<nz-breadcrumb class="padding-8-0">--
>
<
nz-breadcrumb-item
>
<
!--<nz-breadcrumb-item>--
>
首页
<!--首页-->
<
/nz-breadcrumb-item
>
<
!--</nz-breadcrumb-item>--
>
<
nz-breadcrumb-item
>
<
!--<nz-breadcrumb-item>--
>
<
a>
统计分析
</a
>
<
!--<a>统计分析</a>--
>
<
/nz-breadcrumb-item
>
<
!--</nz-breadcrumb-item>--
>
<
nz-breadcrumb-item
>
<
!--<nz-breadcrumb-item>--
>
资源可用性统计
<!--资源可用性统计-->
<
/nz-breadcrumb-item
>
<
!--</nz-breadcrumb-item>--
>
<
/nz-breadcrumb
>
<
!--</nz-breadcrumb>--
>
<
/div
>
<
!--</div>--
>
<
div
nz-col
nzSpan=
"8"
class=
"text-right"
>
<
!--<div nz-col nzSpan="8" class="text-right">--
>
<
button
(
click
)="
search
()"
nz-button
nzType=
"primary"
><i
class=
"anticon anticon-search"
></i></button
>
<
!--<button (click)="search()" nz-button nzType="primary"><i class="anticon anticon-search"></i></button>--
>
<
button
nz-button
nzType=
"primary"
><i
class=
"anticon anticon-sync"
></i></button
>
<
!--<button nz-button nzType="primary"><i class="anticon anticon-sync"></i></button>--
>
<
button
nz-button
nzType=
"primary"
><i
class=
"anticon anticon-arrows-alt"
></i></button
>
<
!--<button nz-button nzType="primary"><i class="anticon anticon-arrows-alt"></i></button>--
>
<
/div
>
<
!--</div>--
>
<
/div
>
<
!--</div>--
>
<
div
nz-row
[
nzGutter
]="
4
"
class=
"search-form"
>
<
!--<div nz-row [nzGutter]="4" class="search-form">--
>
<
div
nz-col
nzSpan=
"3"
>
<
!--<div nz-col nzSpan="3">--
>
<
nz-select
style=
"width: 100%;"
nzPlaceHolder=
"选择分组"
[(
ngModel
)]="
obj
.
groupid
"
(
ngModelChange
)="
getList
()"
>
<
!--<nz-select style="width: 100%;" nzPlaceHolder="选择分组" [(ngModel)]="obj.groupid" (ngModelChange)="getList()">--
>
<
ng-container
*
ngFor=
"let item of groupList"
>
<
!--<ng-container *ngFor="let item of groupList">--
>
<
nz-option
nzLabel=
"{{item.name}}"
nzValue=
"{{item.groupid}}"
></nz-option
>
<
!--<nz-option nzLabel="{{item.name}}" nzValue="{{item.groupid}}"></nz-option>--
>
<
/ng-container
>
<
!--</ng-container>--
>
<
/nz-select
>
<
!--</nz-select>--
>
<
/div
>
<
!--</div>--
>
<
div
nz-col
nzSpan=
"3"
>
<
!--<div nz-col nzSpan="3">--
>
<
nz-select
style=
"width: 100%;"
nzPlaceHolder=
"选择主机资源"
[(
ngModel
)]="
obj
.
hostid
"
(
ngModelChange
)="
getListIO
()"
>
<
!--<nz-select style="width: 100%;" nzPlaceHolder="选择主机资源" [(ngModel)]="obj.hostid" (ngModelChange)="getListIO()">--
>
<
ng-container
*
ngFor=
"let item of hostList;"
>
<
!--<ng-container *ngFor="let item of hostList;">--
>
<
nz-option
nzLabel=
"{{item.name}}"
nzValue=
"{{item.hostid}}"
></nz-option
>
<
!--<nz-option nzLabel="{{item.name}}" nzValue="{{item.hostid}}"></nz-option>--
>
<
/ng-container
>
<
!--</ng-container>--
>
<
/nz-select
>
<
!--</nz-select>--
>
<
/div
>
<
!--</div>--
>
<
div
nz-col
nzSpan=
"7"
>
<
!--<div nz-col nzSpan="7">--
>
<
nz-radio-group
style=
"width: 100%;"
[(
ngModel
)]="
timeType
"
(
ngModelChange
)="
changeType
()"
[
nzButtonStyle
]="'
solid
'"
>
<
!--<nz-radio-group style="width: 100%;" [(ngModel)]="timeType" (ngModelChange)="changeType()" [nzButtonStyle]="'solid'">--
>
<
label
nz-radio-button
nzValue=
"1"
>
今天
</label
>
<
!--<label nz-radio-button nzValue="1">今天</label>--
>
<
label
nz-radio-button
nzValue=
"2"
>
昨天
</label
>
<
!--<label nz-radio-button nzValue="2">昨天</label>--
>
<
label
nz-radio-button
nzValue=
"3"
>
三天
</label
>
<
!--<label nz-radio-button nzValue="3">三天</label>--
>
<
label
nz-radio-button
nzValue=
"4"
>
一周
</label
>
<
!--<label nz-radio-button nzValue="4">一周</label>--
>
<
label
nz-radio-button
nzValue=
"5"
>
自定义
</label
>
<
!--<label nz-radio-button nzValue="5">自定义</label>--
>
<
/nz-radio-group
>
<
!--</nz-radio-group>--
>
<
/div
>
<
!--</div>--
>
<
div
nz-col
nzSpan=
"8"
*
ngIf=
"timeType == '5'"
>
<
!--<div nz-col nzSpan="8" *ngIf="timeType == '5'">--
>
<
nz-date-picker
<
!--<nz-date-picker-->
nzShowTime
<!--nzShowTime-->
[(
ngModel
)]="
startTime
"
<!--[(ngModel)]="startTime"-->
nzPlaceHolder=
"开始时间"
<!--nzPlaceHolder="开始时间"-->
></nz-date-picker
>
<!--></nz-date-picker>--
>
<
nz-date-picker
<
!--<nz-date-picker-->
nzShowTime
<!--nzShowTime-->
nzFormat=
"yyyy-MM-dd HH:mm:ss"
<!--nzFormat="yyyy-MM-dd HH:mm:ss"-->
[(
ngModel
)]="
endTime
"
<!--[(ngModel)]="endTime"-->
nzPlaceHolder=
"结束时间"
<!--nzPlaceHolder="结束时间"-->
></nz-date-picker
>
<!--></nz-date-picker>--
>
<
/div
>
<
!--</div>--
>
<
/div
>
<
!--</div>--
>
<
nz-spin
[
nzSpinning
]="
isLoading
"
>
<
!--<nz-spin [nzSpinning]="isLoading">--
>
<
div
echarts
[
options
]="
chartOption
"
style=
"height: 400px;width: 100%"
></div
>
<
!--<div echarts [options]="chartOption" style="height: 400px;width: 100%"></div>--
>
<
/nz-spin
>
<
!--</nz-spin>--
>
src/main/webapp/app/app.constants.ts
View file @
af6dfca7
...
@@ -4,6 +4,7 @@
...
@@ -4,6 +4,7 @@
export
const
VERSION
=
process
.
env
.
VERSION
;
export
const
VERSION
=
process
.
env
.
VERSION
;
export
const
DEBUG_INFO_ENABLED
:
boolean
=
!!
process
.
env
.
DEBUG_INFO_ENABLED
;
export
const
DEBUG_INFO_ENABLED
:
boolean
=
!!
process
.
env
.
DEBUG_INFO_ENABLED
;
export
const
SERVER_API_URL_coms
=
'/coms'
;
export
const
SERVER_API_URL
=
'/zabbixBox'
;
export
const
SERVER_API_URL
=
'/zabbixBox'
;
export
const
BUILD_TIMESTAMP
=
process
.
env
.
BUILD_TIMESTAMP
;
export
const
BUILD_TIMESTAMP
=
process
.
env
.
BUILD_TIMESTAMP
;
export
const
pageSize
=
25
;
export
const
pageSize
=
25
;
...
...
src/main/webapp/app/layouts/layout.service.ts
View file @
af6dfca7
import
{
HttpClient
}
from
"@angular/common/http"
;
import
{
HttpClient
}
from
"@angular/common/http"
;
import
{
Observable
}
from
"rxjs/Rx"
;
import
{
Observable
}
from
"rxjs/Rx"
;
import
{
Injectable
}
from
'@angular/core'
;
import
{
Injectable
}
from
'@angular/core'
;
import
{
SERVER_API_URL
}
from
"../app.constants"
;
import
{
SERVER_API_URL
,
SERVER_API_URL_coms
}
from
'../app.constants'
;
@
Injectable
()
@
Injectable
()
export
class
LayoutService
{
export
class
LayoutService
{
...
@@ -10,11 +10,11 @@ export class LayoutService {
...
@@ -10,11 +10,11 @@ export class LayoutService {
}
}
getMenu
():
Observable
<
any
>
{
getMenu
():
Observable
<
any
>
{
return
this
.
http
.
get
(
SERVER_API_URL
+
'/resources/getMenu'
);
return
this
.
http
.
get
(
SERVER_API_URL
_coms
+
'/resources/getMenu'
);
}
}
getAllMenu
():
Observable
<
any
>
{
getAllMenu
():
Observable
<
any
>
{
return
this
.
http
.
get
(
SERVER_API_URL
+
"/resources/getAll"
);
return
this
.
http
.
get
(
SERVER_API_URL
_coms
+
"/resources/getAll"
);
}
}
}
}
src/main/webapp/app/system/system.service.ts
View file @
af6dfca7
import
{
HttpClient
}
from
"@angular/common/http"
;
import
{
HttpClient
}
from
"@angular/common/http"
;
import
{
Observable
}
from
"rxjs/Rx"
;
import
{
Observable
}
from
"rxjs/Rx"
;
import
{
Injectable
}
from
'@angular/core'
;
import
{
Injectable
}
from
'@angular/core'
;
import
{
SERVER_API_URL
}
from
"../app.constants"
;
import
{
SERVER_API_URL
_coms
}
from
"../app.constants"
;
import
{
CommonService
}
from
'../shared/common/common.service'
;
import
{
CommonService
}
from
'../shared/common/common.service'
;
@
Injectable
()
@
Injectable
()
...
@@ -12,144 +12,144 @@ export class SystemService {
...
@@ -12,144 +12,144 @@ export class SystemService {
//角色列表
//角色列表
role
():
Observable
<
any
>
{
role
():
Observable
<
any
>
{
return
this
.
http
.
get
(
SERVER_API_URL
+
'/role/getAllRole'
);
return
this
.
http
.
get
(
SERVER_API_URL
_coms
+
'/role/getAllRole'
);
}
}
//获取单个角色
//获取单个角色
getRole
(
params
):
Observable
<
any
>
{
getRole
(
params
):
Observable
<
any
>
{
return
this
.
http
.
get
(
SERVER_API_URL
+
'/role/'
+
params
);
return
this
.
http
.
get
(
SERVER_API_URL
_coms
+
'/role/'
+
params
);
}
}
//编辑角色
//编辑角色
editRole
(
data
):
Observable
<
any
>
{
editRole
(
data
):
Observable
<
any
>
{
return
this
.
http
.
post
(
SERVER_API_URL
+
'/role/updateRole'
,
data
);
return
this
.
http
.
post
(
SERVER_API_URL
_coms
+
'/role/updateRole'
,
data
);
}
}
//新增角色
//新增角色
addRole
(
data
):
Observable
<
any
>
{
addRole
(
data
):
Observable
<
any
>
{
return
this
.
http
.
post
(
SERVER_API_URL
+
'/role/createRole'
,
data
);
return
this
.
http
.
post
(
SERVER_API_URL
_coms
+
'/role/createRole'
,
data
);
}
}
//删除用户
//删除用户
deleteRole
(
params
):
Observable
<
any
>
{
deleteRole
(
params
):
Observable
<
any
>
{
return
this
.
http
.
get
(
SERVER_API_URL
+
'/role/deleteRoleById?'
+
this
.
commonSer
.
toQuery
(
params
));
return
this
.
http
.
get
(
SERVER_API_URL
_coms
+
'/role/deleteRoleById?'
+
this
.
commonSer
.
toQuery
(
params
));
}
}
//用户列表
//用户列表
user
(
data
):
Observable
<
any
>
{
user
(
data
):
Observable
<
any
>
{
return
this
.
http
.
post
(
SERVER_API_URL
+
'/user/findUsers'
,
data
);
return
this
.
http
.
post
(
SERVER_API_URL
_coms
+
'/user/findUsers'
,
data
);
}
}
//新增用户
//新增用户
adduser
(
data
):
Observable
<
any
>
{
adduser
(
data
):
Observable
<
any
>
{
return
this
.
http
.
post
(
SERVER_API_URL
+
'/user'
,
data
);
return
this
.
http
.
post
(
SERVER_API_URL
_coms
+
'/user'
,
data
);
}
}
//删除用户
//删除用户
deleteUser
(
params
){
deleteUser
(
params
){
return
this
.
http
.
delete
(
SERVER_API_URL
+
'/user/'
+
params
);
return
this
.
http
.
delete
(
SERVER_API_URL
_coms
+
'/user/'
+
params
);
}
}
//组织结构列表 /organization/updateOrganization
//组织结构列表 /organization/updateOrganization
organization
():
Observable
<
any
>
{
organization
():
Observable
<
any
>
{
return
this
.
http
.
get
(
SERVER_API_URL
+
'/organization/getAll'
,);
return
this
.
http
.
get
(
SERVER_API_URL
_coms
+
'/organization/getAll'
,);
}
}
//编辑组织
//编辑组织
updateOrganization
():
Observable
<
any
>
{
updateOrganization
():
Observable
<
any
>
{
return
this
.
http
.
get
(
SERVER_API_URL
+
'/organization/updateOrganization'
,);
return
this
.
http
.
get
(
SERVER_API_URL
_coms
+
'/organization/updateOrganization'
,);
}
}
//创建组织结构
//创建组织结构
createOrg
(
data
):
Observable
<
any
>
{
createOrg
(
data
):
Observable
<
any
>
{
return
this
.
http
.
post
(
SERVER_API_URL
+
'/organization/createOrganization'
,
data
);
return
this
.
http
.
post
(
SERVER_API_URL
_coms
+
'/organization/createOrganization'
,
data
);
}
}
//三员分立列表
//三员分立列表
getSeparationConfig
():
Observable
<
any
>
{
getSeparationConfig
():
Observable
<
any
>
{
return
this
.
http
.
get
(
SERVER_API_URL
+
'/separationConfig/getSeparationConfig'
,);
return
this
.
http
.
get
(
SERVER_API_URL
_coms
+
'/separationConfig/getSeparationConfig'
,);
}
}
//审计列表
//审计列表
logList
(
data
):
Observable
<
any
>
{
logList
(
data
):
Observable
<
any
>
{
return
this
.
http
.
get
(
SERVER_API_URL
+
'/log?'
+
this
.
commonSer
.
toQuery
(
data
));
return
this
.
http
.
get
(
SERVER_API_URL
_coms
+
'/log?'
+
this
.
commonSer
.
toQuery
(
data
));
}
}
//对单一角色批量添加用户
//对单一角色批量添加用户
batchGrantUserToRole
(
data
):
Observable
<
any
>
{
batchGrantUserToRole
(
data
):
Observable
<
any
>
{
return
this
.
http
.
post
(
SERVER_API_URL
+
'/role/batchGrantUserToRole'
,
data
);
return
this
.
http
.
post
(
SERVER_API_URL
_coms
+
'/role/batchGrantUserToRole'
,
data
);
}
}
//对单一用户批量授权角色
//对单一用户批量授权角色
batchGrantRoleToUser
(
data
):
Observable
<
any
>
{
batchGrantRoleToUser
(
data
):
Observable
<
any
>
{
return
this
.
http
.
post
(
SERVER_API_URL
+
'/role/batchGrantRoleToUser'
,
data
);
return
this
.
http
.
post
(
SERVER_API_URL
_coms
+
'/role/batchGrantRoleToUser'
,
data
);
}
}
//查询三员分立是否开启
//查询三员分立是否开启
separationPowerStatus
():
Observable
<
any
>
{
separationPowerStatus
():
Observable
<
any
>
{
return
this
.
http
.
get
(
SERVER_API_URL
+
'/approval/separationPowerStatus'
);
return
this
.
http
.
get
(
SERVER_API_URL
_coms
+
'/approval/separationPowerStatus'
);
}
}
//修改三员分立状态
//修改三员分立状态
updateValue
(
data
):
Observable
<
any
>
{
updateValue
(
data
):
Observable
<
any
>
{
return
this
.
http
.
post
(
SERVER_API_URL
+
'/separationConfig/updateValue'
,
data
);
return
this
.
http
.
post
(
SERVER_API_URL
_coms
+
'/separationConfig/updateValue'
,
data
);
}
}
//获取当前登录人角色
//获取当前登录人角色
currentUserRoles
():
Observable
<
any
>
{
currentUserRoles
():
Observable
<
any
>
{
return
this
.
http
.
get
(
SERVER_API_URL
+
'/role/currentUserRoles'
);
return
this
.
http
.
get
(
SERVER_API_URL
_coms
+
'/role/currentUserRoles'
);
}
}
//单个用户角色获取
//单个用户角色获取
roleList
(
data
):
Observable
<
any
>
{
roleList
(
data
):
Observable
<
any
>
{
return
this
.
http
.
get
(
SERVER_API_URL
+
'/user/roleList?'
+
this
.
commonSer
.
toQuery
(
data
)
);
return
this
.
http
.
get
(
SERVER_API_URL
_coms
+
'/user/roleList?'
+
this
.
commonSer
.
toQuery
(
data
)
);
}
}
//获取当前安全管理员已审批记录
//获取当前安全管理员已审批记录
approveListSafeManager
(
data
):
Observable
<
any
>
{
approveListSafeManager
(
data
):
Observable
<
any
>
{
return
this
.
http
.
get
(
SERVER_API_URL
+
'/approval/approveListSafeManager?'
+
this
.
commonSer
.
toQuery
(
data
)
);
return
this
.
http
.
get
(
SERVER_API_URL
_coms
+
'/approval/approveListSafeManager?'
+
this
.
commonSer
.
toQuery
(
data
)
);
}
}
//获取当前安全管理员未审批记录
//获取当前安全管理员未审批记录
unapproveListSafeManager
(
data
):
Observable
<
any
>
{
unapproveListSafeManager
(
data
):
Observable
<
any
>
{
return
this
.
http
.
get
(
SERVER_API_URL
+
'/approval/unapproveListSafeManager?'
+
this
.
commonSer
.
toQuery
(
data
)
);
return
this
.
http
.
get
(
SERVER_API_URL
_coms
+
'/approval/unapproveListSafeManager?'
+
this
.
commonSer
.
toQuery
(
data
)
);
}
}
//获取当前系统管理员的已审批记录
//获取当前系统管理员的已审批记录
approveListSystemManager
(
data
):
Observable
<
any
>
{
approveListSystemManager
(
data
):
Observable
<
any
>
{
return
this
.
http
.
get
(
SERVER_API_URL
+
'/approval/approveListSystemManager?'
+
this
.
commonSer
.
toQuery
(
data
)
);
return
this
.
http
.
get
(
SERVER_API_URL
_coms
+
'/approval/approveListSystemManager?'
+
this
.
commonSer
.
toQuery
(
data
)
);
}
}
//获取当前系统管理员的未审批记录
//获取当前系统管理员的未审批记录
unApproveListSystemManager
(
data
):
Observable
<
any
>
{
unApproveListSystemManager
(
data
):
Observable
<
any
>
{
return
this
.
http
.
get
(
SERVER_API_URL
+
'/approval/unApproveListSystemManager?'
+
this
.
commonSer
.
toQuery
(
data
)
);
return
this
.
http
.
get
(
SERVER_API_URL
_coms
+
'/approval/unApproveListSystemManager?'
+
this
.
commonSer
.
toQuery
(
data
)
);
}
}
//批量审批通过
//批量审批通过
approvalPass
(
data
):
Observable
<
any
>
{
approvalPass
(
data
):
Observable
<
any
>
{
return
this
.
http
.
post
(
SERVER_API_URL
+
'/approval/pass'
,
data
);
return
this
.
http
.
post
(
SERVER_API_URL
_coms
+
'/approval/pass'
,
data
);
}
}
//批量审批退回
//批量审批退回
approvalReject
(
data
):
Observable
<
any
>
{
approvalReject
(
data
):
Observable
<
any
>
{
return
this
.
http
.
post
(
SERVER_API_URL
+
'/approval/reject'
,
data
);
return
this
.
http
.
post
(
SERVER_API_URL
_coms
+
'/approval/reject'
,
data
);
}
}
//批量撤回审批
//批量撤回审批
approvalRemove
(
data
):
Observable
<
any
>
{
approvalRemove
(
data
):
Observable
<
any
>
{
return
this
.
http
.
post
(
SERVER_API_URL
+
'/approval/remove'
,
data
);
return
this
.
http
.
post
(
SERVER_API_URL
_coms
+
'/approval/remove'
,
data
);
}
}
approveList
():
Observable
<
any
>
{
approveList
():
Observable
<
any
>
{
return
this
.
http
.
get
(
SERVER_API_URL
+
'/approval/approveList'
);
return
this
.
http
.
get
(
SERVER_API_URL
_coms
+
'/approval/approveList'
);
}
}
unApproveList
():
Observable
<
any
>
{
unApproveList
():
Observable
<
any
>
{
return
this
.
http
.
get
(
SERVER_API_URL
+
'/approval/unApproveList'
);
return
this
.
http
.
get
(
SERVER_API_URL
_coms
+
'/approval/unApproveList'
);
}
}
//修改密码
//修改密码
modifyPassword
(
data
):
Observable
<
any
>
{
modifyPassword
(
data
):
Observable
<
any
>
{
return
this
.
http
.
post
(
SERVER_API_URL
+
'/modifyPassword'
,
data
);
return
this
.
http
.
post
(
SERVER_API_URL
_coms
+
'/modifyPassword'
,
data
);
}
}
}
}
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