Browse Source

[完善]编辑企业用户

智慧矿山应急安全培训、考核、演练管理系统
邵佳豪 2 years ago
parent
commit
8bf779ef58
  1. 2
      package.json
  2. 3
      src/app/examiner/examiner-index/examiner-index.component.ts
  3. 4
      src/app/examiner/statistic-analysis/abilityAnalysis/examinee-capacity/examinee-capacity.component.html
  4. 2
      src/app/examiner/statistic-analysis/examStatistics/examinee-papers/examinee-papers.component.html
  5. 4
      src/app/examiner/statistic-analysis/examStatistics/examinee-papers/examinee-papers.component.ts
  6. 6
      src/app/examiner/statistic-analysis/examStatistics/station-examinee/station-examinee.component.html
  7. 4
      src/app/examiner/statistic-analysis/examStatistics/station-examinee/station-examinee.component.ts
  8. 5
      src/app/ui/enterpriseuser/enterpriseuser.component.ts

2
package.json

@ -3,7 +3,7 @@
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve --proxy-config proxy.config.json --open --port 4300 ",
"start": "ng serve --proxy-config proxy.config.json --open --host 192.168.1.51 --port 4300 ",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",

3
src/app/examiner/examiner-index/examiner-index.component.ts

@ -318,6 +318,7 @@ export class FinishDia {
private router: Router,
private http: HttpClient,
public dialog: MatDialog,
public dialog2: NzModalRef,
public snackBar: MatSnackBar,
private modal: NzModalRef
) {}
@ -418,6 +419,6 @@ export class FinishDia {
}
close() {
// this.dialogRef.close();
this.dialog2.close()
}
}

4
src/app/examiner/statistic-analysis/abilityAnalysis/examinee-capacity/examinee-capacity.component.html

@ -32,8 +32,8 @@
<tbody>
<tr *ngFor="let item of tabledataSource;let key = index">
<td>{{key + 1}}</td>
<td>{{item.organizationsName}}</td>
<td>{{item.startTime|date:'yyyy-MM-dd HH:mm'}}</td>
<td>李四</td>
<td>xxx救援站</td>
<td class="ratebox">
<nz-rate [ngModel]="2" [nzDisabled]="true"></nz-rate>
<div class="mask"></div>

2
src/app/examiner/statistic-analysis/examStatistics/examinee-papers/examinee-papers.component.html

@ -36,7 +36,7 @@
<td>
85分
<td>
详情
<span style="color: #07CDCF;cursor: pointer;" (click)="To()">详情</span>
</td>
</tr>
</tbody>

4
src/app/examiner/statistic-analysis/examStatistics/examinee-papers/examinee-papers.component.ts

@ -104,7 +104,9 @@ export class ExamineePapersComponent implements OnInit {
this.PageNumber = e.pageIndex + 1;
this.getAlltabledate();
}
To(){
}
//查询按钮
Submit() {}
//重置按钮

6
src/app/examiner/statistic-analysis/examStatistics/station-examinee/station-examinee.component.html

@ -32,15 +32,15 @@
<tbody>
<tr *ngFor="let item of tabledataSource;let key = index">
<td>{{key + 1}}</td>
<td>{{item.organizationsName}}</td>
<td>{{item.startTime|date:'yyyy-MM-dd HH:mm'}}</td>
<td>张三</td>
<td>广西总队</td>
<td>
3次
</td>
<td>
85分
<td>
详情
<span style="color: #07CDCF;cursor: pointer;" (click)="To()">详情</span>
</td>
</tr>
</tbody>

4
src/app/examiner/statistic-analysis/examStatistics/station-examinee/station-examinee.component.ts

@ -103,7 +103,9 @@ export class StationExamineeComponent implements OnInit {
this.PageNumber = e.pageIndex + 1;
this.getAlltabledate();
}
To() {
this.router.navigate(["/home/statistic-examination/examinee-papers"]); //登陆成功跳转页面
}
//查询按钮
Submit() {}
//重置按钮

5
src/app/ui/enterpriseuser/enterpriseuser.component.ts

@ -305,13 +305,14 @@ export class editenterpriseuser {
//提交创建表单
onSubmit (e) {
console.log(666,e)
if (this.organizationId && this.organizationName) {
e.phone = String(e.phone)
e.roleType = 2
e.name = this.data.userData.name
// e.name = this.data.userData.name
e.id = this.data.userData.id
e.enabled = this.data.userData.enabled
e.creationTime = new Date()
// e.creationTime = new Date()
e.organizationId = this.organizationId
e.organizationName = this.organizationName
this.http.put(`/api/ExamUsers/${this.data.userData.id}`,e).subscribe(data => {

Loading…
Cancel
Save