车辆接口更新

This commit is contained in:
wangshiming
2022-01-24 15:59:51 +08:00
parent 17b457cd0d
commit 9ae9f9894d
19 changed files with 1853 additions and 73 deletions

View File

@ -4,7 +4,7 @@
* @Author : Shiming
* @Date : 2022-01-12 10:52:50
* @LastEditors : Shiming
* @LastEditTime : 2022-01-24 10:55:27
* @LastEditTime : 2022-01-24 14:33:59
* @FilePath : \\tms-obc-web\\src\\app\\routes\\order-management\\components\\compliance-audit\\compliance-audit.component.html
* Copyright (C) 2022 huzhenhong. All rights reserved.
-->
@ -78,6 +78,9 @@
</ng-template>
<ng-template st-row="billCode" let-item let-index="index">
<a [routerLink]="'/order-management/bulk-detail/'+item.id">{{item.billCode}}</a>
<div>
<span>{{item?.resourceTypeLabel}}{{item?.serviceTypeLabel}}</span>
</div>
<div>
<span>{{item?.billStatusLabel}}</span>
</div>

View File

@ -59,8 +59,8 @@ export class OrderManagementComplianceAuditComponent implements OnInit {
*/
get reqParams() {
const a: any = {};
if (this.resourceStatus) {
a.billStatus = this.resourceStatus;
if (this.resourceStatus >= 0) {
a.complianceStatus = this.resourceStatus;
}
const params: any = Object.assign({}, this.sf?.value || {});
delete params._$expand;
@ -98,8 +98,8 @@ export class OrderManagementComplianceAuditComponent implements OnInit {
unstayQuantity: 0
};
const params: any = Object.assign({}, this.reqParams || {});
delete params.billStatus
this.service.request(this.service.$api_get_getComplianceStatisticalStatus, { ...this.reqParams }).subscribe(res => {
delete params.complianceStatus
this.service.request(this.service.$api_get_getComplianceStatisticalStatus, params).subscribe(res => {
if (res) {
let totalCount = 0;
res.forEach((element: any) => {
@ -117,7 +117,7 @@ export class OrderManagementComplianceAuditComponent implements OnInit {
});
}
selectChange(e: number) {
this.resourceStatus = e;
this.resourceStatus = e - 1;
this.initST();
setTimeout(() => {
this.st.load();