Browse Source

[新增]新增站点预案页面

dev
邵佳豪 3 years ago
parent
commit
96dc902d55
  1. 2
      src/app/app-routing.module.ts
  2. 2
      src/app/pages/criminal-records-admin/criminal-records-admin.component.ts
  3. 12
      src/app/pages/home/home.component.html
  4. 2
      src/app/pages/login/login.component.html
  5. 6
      src/app/pages/login/login.component.ts
  6. 9
      src/app/pages/pages-routing.module.ts
  7. 3
      src/app/pages/pages.module.ts
  8. 128
      src/app/pages/plan-admin/plan-admin.component.html
  9. 133
      src/app/pages/plan-admin/plan-admin.component.scss
  10. 70
      src/app/pages/plan-admin/plan-admin.component.ts
  11. 2
      src/app/pages/today-warning-admin/today-warning-admin.component.ts
  12. 7
      src/app/ui/tabbar/tabbar.component.ts
  13. BIN
      src/assets/images/expand.png
  14. BIN
      src/assets/images/point.png
  15. BIN
      src/assets/images/unexpand.png
  16. 32
      src/theme.less

2
src/app/app-routing.module.ts

@ -16,7 +16,7 @@ const routes: Routes = [
{ path: 'register', component: RegisterComponent }, //注册页
{
path: '', component: HomeComponent, children: [
{ path: 'home', loadChildren: () => import('./pages/pages.module').then(m => m.PagesModule) }
{ path: '', loadChildren: () => import('./pages/pages.module').then(m => m.PagesModule) }
]
}, //首页
{

2
src/app/pages/criminal-records-admin/criminal-records-admin.component.ts

@ -304,7 +304,7 @@ export class CriminalRecordsAdminComponent implements OnInit {
list: any = [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
look() {
this.router.navigate(['home/records/petrolStation'])
this.router.navigate(['/records/petrolStation'])
}

12
src/app/pages/home/home.component.html

@ -3,19 +3,19 @@
<app-tabbar></app-tabbar>
</div>
<div class="menu">
<li [routerLink]="['/home/plan']" routerLinkActive="router-link-active">
三维预案
<li [routerLink]="['/plan']" routerLinkActive="router-link-active">
站点预案
</li>
<li [routerLink]="['/home/warning/admin']" routerLinkActive="router-link-active">
<li [routerLink]="['/warning']" routerLinkActive="router-link-active">
今日预警
</li>
<li [routerLink]="['/home/records/admin']" routerLinkActive="router-link-active">
<li [routerLink]="['/records']" routerLinkActive="router-link-active">
违规记录
</li>
<!-- <li [routerLink]="['/home/equipmentInfo']" routerLinkActive="router-link-active">
<!-- <li [routerLink]="['/equipmentInfo']" routerLinkActive="router-link-active">
器材信息
</li>
<li [routerLink]="['/home/oliStationInfo']" routerLinkActive="router-link-active">
<li [routerLink]="['/oliStationInfo']" routerLinkActive="router-link-active">
基本信息
</li> -->
</div>

2
src/app/pages/login/login.component.html

@ -20,7 +20,7 @@
<div class="hint">
<span class="forget" (click)="forget()">忘记密码?</span>
</div>
<button nz-button class="login-form-button login-form-margin" [nzType]="'primary'">登录</button>
<button [nzLoading]="isLoading" nz-button class="login-form-button login-form-margin" [nzType]="'primary'">登录</button>
</form>
<!-- <p class="role">
<a nz-dropdown [nzDropdownMenu]="menu" [nzVisible]="true">

6
src/app/pages/login/login.component.ts

@ -33,7 +33,7 @@ export class LoginComponent implements OnInit {
toRegister() {
this.router.navigate(['/register'])
}
isLoading = false;
submitForm(): void {
for (const i in this.validateForm.controls) {
this.validateForm.controls[i].markAsDirty();
@ -47,6 +47,7 @@ export class LoginComponent implements OnInit {
// this.message.create('error', `请选择登录角色`);
// return
// }
this.isLoading = true;
this.http.post('/api/TokenAuth/Authenticate', {
userNameOrEmailAddress: this.validateForm.value.userName,
password: this.validateForm.value.password
@ -58,8 +59,9 @@ export class LoginComponent implements OnInit {
this.cookieService.set("refreshToken", data.result.encryptedAccessToken, null, '/');
this.http.get('/api/services/app/Session/GetCurrentLoginInformations').subscribe((data: any) => {
sessionStorage.setItem('userdata', JSON.stringify(data.result.user))
this.isLoading = false;
this.message.create('success', `登陆成功`);
this.router.navigate(['/home/plan'])
this.router.navigate(['/plan'])
})
//调用服务中的function刷新token

9
src/app/pages/pages-routing.module.ts

@ -8,16 +8,17 @@ import { TodayWarningAdminComponent } from './today-warning-admin/today-warning-
import { CriminalRecordsAdminComponent } from './criminal-records-admin/criminal-records-admin.component';
import { OilStationInfoComponent } from './oil-station-info/oil-station-info.component';
import { EquipmentInfoComponent } from './equipment-info/equipment-info.component';
import { PlanAdminComponent } from './plan-admin/plan-admin.component';
const routes: Routes = [
{ path: 'plan', component: PlanComponent , data: { permission: 'xxxx' },canActivate: [AuthGuard]},
{ path: 'plan', component: PlanAdminComponent , data: { permission: 'xxxx' },canActivate: [AuthGuard]},
{ path: 'plan/petrolStation', component: PlanComponent , data: { permission: 'xxxx' },canActivate: [AuthGuard]},
{ path: 'warning', component: TodayWarningAdminComponent },
{ path: 'warning/petrolStation', component: TodayWarningComponent },
{ path: 'warning/admin', component: TodayWarningAdminComponent },
{ path: 'records', component: CriminalRecordsAdminComponent },
{ path: 'records/petrolStation', component: CriminalRecordsComponent },
{ path: 'records/admin', component: CriminalRecordsAdminComponent },
{ path: 'equipmentInfo', component: EquipmentInfoComponent },
{ path: 'oliStationInfo', component: OilStationInfoComponent }
];
@NgModule({

3
src/app/pages/pages.module.ts

@ -37,10 +37,11 @@ import { OilStationInfoComponent } from './oil-station-info/oil-station-info.com
import { LeftDomainComponent } from './left-domain/left-domain.component';
import { AddequipmentComponent } from './equipment-info/addequipment/addequipment.component';
import { EditequipmentComponent } from './equipment-info/editequipment/editequipment.component';
import { PlanAdminComponent } from './plan-admin/plan-admin.component';
@NgModule({
declarations: [LoginComponent, RegisterComponent, HomeComponent, PlanComponent, TodayWarningComponent, CriminalRecordsComponent, TodayWarningAdminComponent, CriminalRecordsAdminComponent, LeftDomainComponent, EquipmentInfoComponent, OilStationInfoComponent, AddequipmentComponent, EditequipmentComponent],
declarations: [LoginComponent, RegisterComponent, HomeComponent, PlanComponent, TodayWarningComponent, CriminalRecordsComponent, TodayWarningAdminComponent, CriminalRecordsAdminComponent, LeftDomainComponent, EquipmentInfoComponent, OilStationInfoComponent, AddequipmentComponent, EditequipmentComponent, PlanAdminComponent],
imports: [
PagesRoutingModule,
CommonModule,

128
src/app/pages/plan-admin/plan-admin.component.html

@ -0,0 +1,128 @@
<!-- <p>站点预案!</p> -->
<div class="stationPlanBox" id="stationPlanBox">
<div class="orbox">
<div class="title">
<app-title [name]="'组织机构'"></app-title>
</div>
<div class="or">
<nz-tree [nzExpandedKeys]="nzExpandedKeys" [nzShowExpand]="false" #nzTreeComponent
[nzExpandAll]="nzExpandAll" nzBlockNode [nzData]="nodes" (nzClick)="activeNode($event)"
[nzTreeTemplate]="nzTreeTemplate" [nzExpandedIcon]=""></nz-tree>
<ng-template #nzTreeTemplate let-node let-origin="origin">
<ng-container *ngIf="node.origin.parentId == null; else elseTemplate">
<img style="vertical-align: bottom;" src="../../../assets/images/flower.png" alt="">
</ng-container>
<ng-template #elseTemplate>
<img src="../../../assets/images/point.png" alt="">
</ng-template>
<span>{{ node.title }}</span>
<img (click)="expand($event,node)" *ngIf="node.isExpanded && node.children.length != 0 "
src="../../../assets/images/expand.png" alt="">
<img (click)="expand($event,node)" *ngIf="!node.isExpanded && node.children.length != 0"
src="../../../assets/images/unexpand.png" alt="">
</ng-template>
</div>
</div>
<div class="stationList">
<div class="title">
<app-title [name]="'站点管理'"></app-title>
</div>
<div class="search">
<form nz-form [formGroup]="validateForm" class="login-form" (ngSubmit)="submitForm()">
<nz-form-item class="searchParams">
<nz-form-control>
<nz-input-group>
<input required nz-input type="text" formControlName="name" placeholder="请输入名称" />
</nz-input-group>
</nz-form-control>
</nz-form-item>
<nz-form-item class="searchParams">
<nz-form-control>
<nz-input-group>
<input required nz-input type="text" formControlName="linkman" placeholder="请输入联系人" />
</nz-input-group>
</nz-form-control>
</nz-form-item>
<nz-form-item class="searchParams">
<nz-form-control>
<nz-input-group>
<input required nz-input type="text" formControlName="phone" placeholder="请输入电话" />
</nz-input-group>
</nz-form-control>
</nz-form-item>
<nz-form-item class="btn">
<nz-form-control>
<button nz-button type="submit" class="submit"><i nz-icon [nzType]="'search'"></i>查询</button>
</nz-form-control>
</nz-form-item>
<nz-form-item class="btn">
<nz-form-control>
<button nz-button type="button" class="reset" (click)="resetForm($event)"><i nz-icon
[nzType]="'sync'"></i>重置</button>
</nz-form-control>
</nz-form-item>
</form>
</div>
<div class="tablebox">
<div class="table">
<div nz-row class="th">
<div nz-col nzSpan="2" style="text-align: right;box-sizing: border-box;padding-right: 20px;">
</div>
<div nz-col nzSpan="6">
加油站名称
</div>
<div nz-col nzSpan="3">
区域
</div>
<div nz-col nzSpan="4">
所属公司
</div>
<div nz-col nzSpan="3">
联系人
</div>
<div nz-col nzSpan="4">
联系电话
</div>
<div nz-col nzSpan="2">
操作
</div>
</div>
<div class="tbody">
<div nz-row class="tr" *ngFor="let item of list">
<div nz-col nzSpan="2" style="text-align: right;box-sizing: border-box;padding-right: 20px;">
<span class="ziying">自营</span>
</div>
<div nz-col nzSpan="6">
中化山东省淄博市第6加油站
</div>
<div nz-col nzSpan="3">
山东-淄博
</div>
<div nz-col nzSpan="4">
中化某某公司
</div>
<div nz-col nzSpan="3">
张三三
</div>
<div nz-col nzSpan="4">
0566-5897888
</div>
<div nz-col nzSpan="2">
<span class="look" (click)="look()">查看</span>
</div>
</div>
</div>
</div>
<div class="pagination">
<nz-pagination [nzPageIndex]="1" [nzTotal]="85" [nzPageSize]="20" [nzShowTotal]="totalTemplate"
nzShowQuickJumper></nz-pagination>
<ng-template #totalTemplate let-total> 16条/页,共100条 </ng-template>
</div>
</div>
</div>
</div>

133
src/app/pages/plan-admin/plan-admin.component.scss

@ -0,0 +1,133 @@
.stationPlanBox {
width: 100%;
height: 100%;
box-sizing: border-box;
padding: 20px 24px;
display: flex;
}
.title {
width: 100%;
height: 48px;
}
.orbox {
height: 100%;
width: 360px;
margin-right: 40px;
display: flex;
flex-direction: column;
.or {
flex: 1;
overflow-y: auto;
border: 1px solid rgba(54, 162, 255, 0.3);
background: linear-gradient(180deg, rgba(3, 0, 0, 0) 0%, rgba(0, 46, 91, 0.68) 100%);
margin-top: 12px;
box-sizing: border-box;
padding: 18px 12px;
nz-tree{
background: none;
color: #C4E2FC;
}
}
}
.stationList {
flex: 1;
display: flex;
flex-direction: column;
.search {
box-sizing: border-box;
padding-left: 22px;
padding-right: 33px;
width: 100%;
height: 32px;
margin-top: 14px;
margin-bottom: 22px;
form {
width: 100%;
height: 32px;
display: flex;
justify-content: space-around;
input {
background: none;
border: 1px solid #91CCFF;
color: #fff;
}
.searchParams {
width: 28%;
}
.btn {
width: 5%;
}
}
}
.tablebox {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
overflow: hidden;
.table {
color: white;
flex: 1;
width: 96%;
display: flex;
flex-direction: column;
overflow: hidden;
.th {
height: 40px;
line-height: 40px;
background: rgba(35, 153, 255, 0.2);
border: 1px solid rgba(35, 217, 255, 0.4);
box-shadow: 0 0 3px 0 rgba(35, 217, 255, 0.4) inset;
color: #23D9FF;
}
.tbody {
flex: 1;
overflow-y: auto;
.tr {
height: 40px;
line-height: 40px;
border-bottom: 1px solid #0d3761;
div {
color: #91CCFF;
.look {
color: #36A2FF;
cursor: pointer;
}
}
}
}
}
.pagination {
margin-top: 26px;
display: flex;
align-items: center;
justify-content: center;
}
::-webkit-scrollbar {
width: 0px;
}
}
}

70
src/app/pages/plan-admin/plan-admin.component.ts

@ -0,0 +1,70 @@
import { Component, OnInit, ViewChild } from '@angular/core';
import { HttpClient } from '@angular/common/http';
import { TreeService } from 'src/app/service/tree.service';
import { FormBuilder, FormGroup, Validators } from '@angular/forms';
import { NzContextMenuService, NzDropdownMenuComponent } from 'ng-zorro-antd/dropdown';
import { NzFormatEmitEvent, NzTreeComponent, NzTreeNode } from 'ng-zorro-antd/tree';
import { Router } from '@angular/router';
@Component({
selector: 'app-plan-admin',
templateUrl: './plan-admin.component.html',
styleUrls: ['./plan-admin.component.scss']
})
export class PlanAdminComponent implements OnInit {
validateForm!: FormGroup;
@ViewChild('nzTreeComponent', { static: false }) nzTreeComponent!: NzTreeComponent;
constructor(private http: HttpClient, private toTree: TreeService, private fb: FormBuilder, private nzContextMenuService: NzContextMenuService, private router: Router) { }
list: any = [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
ngOnInit(): void {
this.validateForm = this.fb.group({
name: [null],
linkman: [null],
phone: [null]
});
this.getAllOrganization()
}
submitForm(): void {
for (const i in this.validateForm.controls) {
this.validateForm.controls[i].markAsDirty();
this.validateForm.controls[i].updateValueAndValidity();
}
}
resetForm(e: MouseEvent): void {
e.preventDefault();
this.validateForm.reset();
for (const key in this.validateForm.controls) {
this.validateForm.controls[key].markAsPristine();
this.validateForm.controls[key].updateValueAndValidity();
}
}
//获取所有组织机构
nodes: any = []
nzExpandAll = false
getAllOrganization() {
this.http.get('/api/services/app/Organization/GetAll').subscribe((data: any) => {
data.result.items.forEach(element => {
element.key = element.code
element.title = element.displayName
});
this.nodes = [...this.toTree.toTree(data.result.items)]
this.nzExpandAll = true
})
}
look() {
this.router.navigate(['/plan/petrolStation'])
}
nzExpandedKeys: any = []
activatedNode?: NzTreeNode;
//点击tree节点
activeNode(data: NzFormatEmitEvent): void {
this.activatedNode = data.node!;
// console.log(data)
}
expand(e, node) {
e.stopPropagation()
node.isExpanded = !node.isExpanded
}
}

2
src/app/pages/today-warning-admin/today-warning-admin.component.ts

@ -68,6 +68,6 @@ export class TodayWarningAdminComponent implements OnInit {
}
look() {
this.router.navigate(['home/warning/petrolStation'])
this.router.navigate(['warning/petrolStation'])
}
}

7
src/app/ui/tabbar/tabbar.component.ts

@ -21,9 +21,10 @@ export class TabbarComponent implements OnInit {
setInterval(() => {
this.getTime()
}, 1000);
this.http.get('/api/services/app/Session/GetCurrentLoginInformations').subscribe((data: any) => {
this.surname = data.result.user.surname
})
this.surname = JSON.parse(sessionStorage.getItem('userdata')).surname
// this.http.get('/api/services/app/Session/GetCurrentLoginInformations').subscribe((data: any) => {
// this.surname = data.result.user.surname
// })
}
//获得时间

BIN
src/assets/images/expand.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 1009 B

BIN
src/assets/images/point.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 524 B

BIN
src/assets/images/unexpand.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 1021 B

32
src/theme.less

@ -5,7 +5,8 @@
//分页器
#recordsboxadmin,
#recordsbox,
#equipmentInfo {
#equipmentInfo,
#stationPlanBox {
.ant-pagination-total-text,
.ant-pagination-options-quick-jumper {
@ -40,6 +41,25 @@
color: #91CCFF;
}
//自营和加盟
.ziying,
.jiameng {
display: inline-block;
width: 36px;
height: 20px;
line-height: 20px;
text-align: center;
background: #2399FF;
opacity: 1;
border-radius: 2px;
color: #fff !important;
font-size: 12px;
}
.jiameng {
background: #FF9963;
}
//接收报警弹出框
.ant-notification {
width: 500px;
@ -246,3 +266,13 @@
border: none;
}
}
#stationPlanBox {
.ant-tree .ant-tree-node-content-wrapper:hover ,.ant-tree .ant-tree-node-content-wrapper.ant-tree-node-selected{
background: linear-gradient(90deg, rgba(0, 13, 33, 0) 0%, #2399FF 50%, rgba(0, 13, 33, 0) 100%);
}
.ant-tree .ant-tree-node-content-wrapper{
padding: 2px 20px;
}
}

Loading…
Cancel
Save