This commit is contained in:
Taric Xin
2022-02-21 16:22:35 +08:00
parent f5f682b2ed
commit f855154875
10 changed files with 96 additions and 125 deletions

View File

@ -18,23 +18,24 @@ import { ShipperBaseService } from '@shared';
styleUrls: ['./vehicle.component.less']
})
export class SupplyManagementVehicleComponent implements OnInit {
ui2: SFUISchema = {};
schema: SFSchema = this.initSF();
freightSchema: SFSchema = {};
auditMany = false;
isVisible = false;
_$expand = false;
@ViewChild('st') private readonly st!: STComponent;
@ViewChild('sf', { static: false }) sf!: SFComponent;
@ViewChild('sfFre', { static: false }) sfFre!: SFComponent;
schema: SFSchema = this.initSF();
columns: STColumn[] = this.initST();
_$expand = false;
tabs = {
totalQuantity: 0,
cancelQuantity: 0,
receivedQuantity: 0,
stayQuantity: 0
};
isVisible = false;
freightSchema: SFSchema = {};
auditMany = false;
resourceStatus: any;
auditID: any;
constructor(
@ -94,7 +95,6 @@ export class SupplyManagementVehicleComponent implements OnInit {
},
require: ['remarks']
};
this.ui2 = { '*': { spanLabelFixed: 120, grid: { span: 16 } } };
}
add(): void {