|
@@ -1426,56 +1426,21 @@
|
1426
|
1426
|
<div class="modalBody_right">
|
1427
|
1427
|
<div class="modalBody_right_head">
|
1428
|
1428
|
<div class="smallTab">
|
1429
|
|
- <div
|
1430
|
|
- class="s_tab"
|
1431
|
|
- *ngFor="let stab of smallTabs"
|
1432
|
|
- (click)="changeSmallTab(stab.id)"
|
1433
|
|
- [ngClass]="{
|
1434
|
|
- active: smallTabId == stab.id
|
1435
|
|
- }"
|
1436
|
|
- >
|
|
1429
|
+ <div class="s_tab" *ngFor="let stab of smallTabs" (click)="changeSmallTab(stab.id)" [ngClass]="{ active: smallTabId == stab.id }">
|
1437
|
1430
|
{{ stab.name }}
|
1438
|
1431
|
</div>
|
1439
|
1432
|
</div>
|
1440
|
1433
|
<span>{{ logTime }}秒后自动刷新</span>
|
1441
|
1434
|
</div>
|
1442
|
|
- <overlay-scrollbars
|
1443
|
|
- class="modalBody_right_box"
|
1444
|
|
- #osComponentRef9
|
1445
|
|
- style="height: 100%"
|
1446
|
|
- *ngIf="
|
1447
|
|
- (smallTabId == 1 &&
|
1448
|
|
- !rLoading &&
|
1449
|
|
- listDeptOrderRecords.length) ||
|
1450
|
|
- smallTabId == 2
|
1451
|
|
- "
|
1452
|
|
- >
|
|
1435
|
+ <overlay-scrollbars class="modalBody_right_box" #osComponentRef9 style="height: 100%" *ngIf="(smallTabId == 1 && !rLoading && listDeptOrderRecords.length) || smallTabId == 2">
|
1453
|
1436
|
<div class="modalBody_right_box">
|
1454
|
|
- <ng-container
|
1455
|
|
- *ngIf="smallTabId == 1; else elseSmall"
|
1456
|
|
- >
|
1457
|
|
- <div
|
1458
|
|
- class="modalBody_right_list"
|
1459
|
|
- *ngFor="let item of listDeptOrderRecords"
|
1460
|
|
- [innerHTML]="item.msg | htmlTransform"
|
1461
|
|
- ></div>
|
|
1437
|
+ <ng-container *ngIf="smallTabId == 1; else elseSmall">
|
|
1438
|
+ <div class="modalBody_right_list" *ngFor="let item of listDeptOrderRecords" [innerHTML]="item.msg | htmlTransform"></div>
|
1462
|
1439
|
</ng-container>
|
1463
|
1440
|
<ng-template #elseSmall>
|
1464
|
|
- <nz-table
|
1465
|
|
- class="bxFlex bxTable"
|
1466
|
|
- [nzData]="quickBxlbList"
|
1467
|
|
- nzSize="small"
|
1468
|
|
- [nzShowPagination]="false"
|
1469
|
|
- [nzLoading]="quickBxlbLoading"
|
1470
|
|
- >
|
|
1441
|
+ <nz-table class="bxFlex bxTable" [nzData]="quickBxlbList" nzSize="small" [nzShowPagination]="false" [nzLoading]="quickBxlbLoading">
|
1471
|
1442
|
<tbody>
|
1472
|
|
- <tr
|
1473
|
|
- (click)="showBxModal(data)"
|
1474
|
|
- *ngFor="
|
1475
|
|
- let data of quickBxlbList;
|
1476
|
|
- let i = index
|
1477
|
|
- "
|
1478
|
|
- >
|
|
1443
|
+ <tr (click)="showBxModal(data)" *ngFor="let data of quickBxlbList;let i = index">
|
1479
|
1444
|
<td>{{ data.content || "无" }}</td>
|
1480
|
1445
|
</tr>
|
1481
|
1446
|
<!-- <tr (click)="checkTable('kjbx')">
|
|
@@ -1488,24 +1453,11 @@
|
1488
|
1453
|
</ng-template>
|
1489
|
1454
|
</div>
|
1490
|
1455
|
</overlay-scrollbars>
|
1491
|
|
- <div
|
1492
|
|
- class="modalBody_left nLoading w100"
|
1493
|
|
- *ngIf="smallTabId == 1 && rLoading"
|
1494
|
|
- >
|
1495
|
|
- <img
|
1496
|
|
- src="../../../assets/images/loading.gif"
|
1497
|
|
- alt=""
|
1498
|
|
- />
|
|
1456
|
+ <div class="modalBody_left nLoading w100" *ngIf="smallTabId == 1 && rLoading">
|
|
1457
|
+ <img src="../../../assets/images/loading.gif" alt="" />
|
1499
|
1458
|
<div>加载中...</div>
|
1500
|
1459
|
</div>
|
1501
|
|
- <div
|
1502
|
|
- class="modalBody_left noData w100"
|
1503
|
|
- *ngIf="
|
1504
|
|
- smallTabId == 1 &&
|
1505
|
|
- !rLoading &&
|
1506
|
|
- !listDeptOrderRecords.length
|
1507
|
|
- "
|
1508
|
|
- >
|
|
1460
|
+ <div class="modalBody_left noData w100" *ngIf="smallTabId == 1 && !rLoading && !listDeptOrderRecords.length">
|
1509
|
1461
|
暂无数据
|
1510
|
1462
|
</div>
|
1511
|
1463
|
</div>
|
|
@@ -3601,16 +3553,9 @@
|
3601
|
3553
|
</div>
|
3602
|
3554
|
</div>
|
3603
|
3555
|
<!-- 是否确认报修模态框 -->
|
3604
|
|
-<div
|
3605
|
|
- class="commonModal display_flex justify-content_flex-center align-items_center"
|
3606
|
|
- *ngIf="bxModal"
|
3607
|
|
->
|
|
3556
|
+<div class="commonModal display_flex justify-content_flex-center align-items_center" *ngIf="bxModal">
|
3608
|
3557
|
<div class="modalBody">
|
3609
|
|
- <div class="title">
|
3610
|
|
- 一键报修<i
|
3611
|
|
- class="icon_transport transport-guanbi"
|
3612
|
|
- (click)="hideBxModal()"
|
3613
|
|
- ></i>
|
|
3558
|
+ <div class="title">一键报修<i class="icon_transport transport-guanbi" (click)="hideBxModal()"></i>
|
3614
|
3559
|
</div>
|
3615
|
3560
|
<overlay-scrollbars #osComponentRef5 class="content">
|
3616
|
3561
|
<form nz-form [formGroup]="validateBxForm" class="bxFormAdd" (ngSubmit)="confirmBx()">
|