刘向辉 3 years ago
parent
commit
1702579c30
  1. 11
      src/app/pages/login/login.component.ts
  2. 38
      src/app/pages/plan-admin/plan-admin.component.html
  3. 3
      src/app/system-management/role/editrole/editrole.component.ts
  4. 3
      src/app/system-management/role/role.component.ts
  5. 2
      src/app/system-management/user/adduser/adduser.component.html
  6. 2
      src/app/system-management/user/edituser/edituser.component.html
  7. 42
      src/app/system-management/user/edituser/edituser.component.ts
  8. 8
      src/app/system-management/user/user.component.ts
  9. 4
      src/shared/helpers/SignalRAspNetCoreHelper.ts

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

@ -106,7 +106,7 @@ export class LoginComponent implements OnInit {
sessionStorage.setItem("token", data.result.accessToken);
this.cookieService.set("token", data.result.accessToken, null, '/');
this.cookieService.set("refreshToken", data.result.encryptedAccessToken, null, '/');
sessionStorage.setItem("encryptedAccessToken",data.result.encryptedAccessToken);
sessionStorage.setItem("encryptedAccessToken", data.result.encryptedAccessToken);
console.log('token', data)
this.http.get('/api/services/app/Session/GetCurrentLoginInformations').subscribe((data: any) => {
sessionStorage.setItem('userdata', JSON.stringify(data.result.user))
@ -119,21 +119,18 @@ export class LoginComponent implements OnInit {
if (data.result.user.userName == 'admin') {
sessionStorage.setItem("isGasStation", 'false');
this.router.navigate(['/system/organization'])
this.message.create('success', `登陆成功`);
} else {
if (data.result.user.organization.isGasStation) {
sessionStorage.setItem("isGasStation", 'true');
this.router.navigate(['/warning/petrolStation'])
this.message.create('success', `登陆成功`);
} else {
sessionStorage.setItem("isGasStation", 'false');
this.router.navigate(['/homepage'])
this.message.create('success', `登陆成功`);
}
}
this.message.create('success', `登陆成功`);
let _this = this;
}, err => {
this.isLoading = false;
})

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

@ -53,34 +53,40 @@
<div class="tablebox" id="tablebox">
<nz-table [nzPageSize]='999' #headerTable [nzData]="list" [nzShowPagination]="false"
[nzScroll]="{ y:tableheight() }" [nzNoResult]='null'>
[nzScroll]="{ y:tableheight() }" [nzNoResult]='null' nzTableLayout="fixed">
<thead>
<tr>
<th></th>
<th>加油站名称</th>
<th [nzWidth]="'20%'">
<div style="width: 20px;height: 20px;display: inline-block;margin-left: 20px;margin-right: 6px;">
</div>加油站名称
</th>
<th>区域</th>
<th>所属公司</th>
<th>联系人</th>
<th>联系电话</th>
<th>油站等级</th>
<th>经营品类</th>
<th>油机数量</th>
<th>车道数量</th>
<th>油罐容积</th>
<th>操作</th>
<th [nzWidth]="'6%'">油机数量</th>
<th [nzWidth]="'6%'">车道数量</th>
<th [nzWidth]="'6%'">油罐容积</th>
<th [nzWidth]="'5%'">操作</th>
</tr>
</thead>
<tbody id="table">
<tr *ngFor="let item of headerTable.data;let key = index">
<th style="text-align: right;box-sizing: border-box;padding-right: 8px;"><img
src="../../../assets/images/3d.png" alt="" *ngIf="item.hasBuildingInfo"></th>
<th>{{item.stationName}}</th>
<th>{{item.locationName}}</th>
<th>{{item.companyName}}</th>
<th>{{item.leaderName}}</th>
<th>{{item.leaderContact}}</th>
<th>{{item.stationLevel}}</th>
<th>{{item.sellVariety}}</th>
<th nzEllipsis [title]="item.stationName">
<div style="width: 20px;height: 20px;display: inline-block;margin-left: 20px;margin-right: 6px;">
<img src="../../../assets/images/3d.png" alt="" *ngIf="item.hasBuildingInfo">
</div>
{{item.stationName}}
</th>
<th nzEllipsis [title]="item.locationName">{{item.locationName}}</th>
<th nzEllipsis [title]="item.companyName">{{item.companyName}}</th>
<th nzEllipsis [title]="item.leaderName">{{item.leaderName}}</th>
<th nzEllipsis [title]="item.leaderContact">{{item.leaderContact}}</th>
<th nzEllipsis [title]="item.stationLevel">{{item.stationLevel}}</th>
<th nzEllipsis [title]="item.sellVariety">{{item.sellVariety}}</th>
<th>{{item.gasStationCount}}</th>
<th>{{item.laneCount}}</th>
<th>{{item.tankVolume}}</th>

3
src/app/system-management/role/editrole/editrole.component.ts

@ -31,7 +31,8 @@ export class EditroleComponent implements OnInit {
loadMore() {
this.http.get('/api/services/app/Role/GetAllPermissions').subscribe((data:any) => {
this.optionList = data.result.items
console.log('所有权限',data)
this.modal.containerInstance.config.nzOkLoading = false
// console.log('所有权限',data)
})
}

3
src/app/system-management/role/role.component.ts

@ -75,7 +75,8 @@ export class RoleComponent implements OnInit {
nzTitle: '编辑角色',
nzContent: EditroleComponent,
nzViewContainerRef: this.viewContainerRef,
nzWidth: 288,
nzWidth: 325,
nzOkLoading: true,
nzComponentParams: {
data: item
},

2
src/app/system-management/user/adduser/adduser.component.html

@ -24,7 +24,7 @@
<nz-form-item>
<nz-form-control>
<nz-select formControlName="role" nzPlaceHolder="请选择角色" nzMode="multiple">
<nz-option *ngFor="let item of listOfData" [nzValue]="item.name" [nzLabel]="item.displayName"></nz-option>
<nz-option *ngFor="let item of listOfData" [nzValue]="item.normalizedName" [nzLabel]="item.displayName"></nz-option>
</nz-select>
</nz-form-control>
</nz-form-item>

2
src/app/system-management/user/edituser/edituser.component.html

@ -24,7 +24,7 @@
<nz-form-item>
<nz-form-control>
<nz-select [(ngModel)]="data.roleNames" formControlName="role" nzPlaceHolder="请选择角色" nzMode="multiple">
<nz-option *ngFor="let item of listOfData" [nzValue]="item.name" [nzLabel]="item.displayName"></nz-option>
<nz-option *ngFor="let item of listOfData" [nzValue]="item.normalizedName" [nzLabel]="item.displayName"></nz-option>
</nz-select>
</nz-form-control>
</nz-form-item>

42
src/app/system-management/user/edituser/edituser.component.ts

@ -23,11 +23,9 @@ export class EdituserComponent implements OnInit {
role: [null, [Validators.required]],
phonenum: [null, [Validators.required]]
});
console.log(this.data)
this.getAllRoles()
this.getAllOrganization()
Promise.all([this.getAllRoles(), this.getAllOrganization()]).then(()=>{
this.modal.containerInstance.config.nzOkLoading = false
})
}
destroyModal(): void {
this.modal.destroy({ data: 'this the result data' });
@ -36,29 +34,33 @@ export class EdituserComponent implements OnInit {
listOfData: any[] = [];
//获取角色列表
getAllRoles() {
this.http.get('/api/services/app/Role/GetAll').subscribe((data: any) => {
console.log('角色列表', data.result.items)
this.listOfData = data.result.items
async getAllRoles() {
await new Promise<void>((resolve, reject) => {
this.http.get('/api/services/app/Role/GetAll').subscribe((data: any) => {
resolve(data)
this.listOfData = data.result.items
})
})
}
//获取所有组织机构
nodes:any = []
getAllOrganization() {
nodes: any = []
async getAllOrganization() {
let OrganizationUnitId = sessionStorage.getItem('isGasStation') == 'true' ? JSON.parse(sessionStorage.getItem('userdataOfgasstation')).organization.id : JSON.parse(sessionStorage.getItem('userdata')).organization.id
let params = {
OrganizationUnitId: OrganizationUnitId,
IsContainsChildren: "true"
}
this.http.get('/api/services/app/Organization/GetAll', {
params: params
}).subscribe((data: any) => {
data.result.items.forEach(element => {
element.key = element.id
element.title = element.displayName
});
this.nodes = [...this.toTree.toTree(data.result.items)]
await new Promise<void>((resolve, reject) => {
this.http.get('/api/services/app/Organization/GetAll', {
params: params
}).subscribe((data: any) => {
data.result.items.forEach(element => {
element.key = element.id
element.title = element.displayName
});
this.nodes = [...this.toTree.toTree(data.result.items)]
resolve(data)
})
})
}
}

8
src/app/system-management/user/user.component.ts

@ -71,6 +71,7 @@ export class UserComponent implements OnInit {
subtitle: ''
},
nzOnOk: async () => {
// console.log(instance.validateForm.value)
if (instance.validateForm.valid) {
await new Promise(resolve => {
let body = {
@ -114,6 +115,7 @@ export class UserComponent implements OnInit {
nzContent: EdituserComponent,
nzViewContainerRef: this.viewContainerRef,
nzWidth: 288,
nzOkLoading: true,
nzComponentParams: {
data: data,
},
@ -122,7 +124,7 @@ export class UserComponent implements OnInit {
if (instance.validateForm.valid) {
await new Promise(resolve => {
let body = {
id:data.id,
id: data.id,
userName: instance.validateForm.value.account,
name: instance.validateForm.value.name,
organizationUnitId: instance.validateForm.value.organization,
@ -132,12 +134,12 @@ export class UserComponent implements OnInit {
}
this.http.put('/api/services/app/User/Update', body).subscribe(data => {
resolve(data)
this.message.create('success', '创建成功!');
this.message.create('success', '编辑成功!');
this.getAllUsers()
return true
}, err => {
resolve(err)
this.message.create('warning', '创建失败');
this.message.create('warning', '编辑失败');
return false
})
})

4
src/shared/helpers/SignalRAspNetCoreHelper.ts

@ -2,7 +2,9 @@ declare var abp: any
export class SignalRAspNetCoreHelper {
static initSignalR(callback?: () => void): void {
const encryptedAuthToken = sessionStorage.getItem("encryptedAccessToken");
let url = "http://39.106.78.171:8906";
console.log('window.location.origin',window.location.origin)
// let url = "http://39.106.78.171:8906";
let url = window.location.origin
abp.signalr = {
autoConnect: true,
connect: undefined,

Loading…
Cancel
Save