车辆对接

This commit is contained in:
wangshiming
2021-12-17 17:36:35 +08:00
parent 49e4042c4c
commit 17354d05ec
7 changed files with 137 additions and 164 deletions

View File

@ -23,38 +23,18 @@ export class OrderManagementRiskComponent implements OnInit {
auditMany = false;
auditId: any;
isVisibleRE = false;
resourceStatus: any;
_$expand = false;
@ViewChild('st') private readonly st!: STComponent;
@ViewChild('sf', { static: false }) sf!: SFComponent;
@ViewChild('sfView', { static: false }) sfView!: SFComponent;
columns: STColumn[] = [];
tabs = [
{
name: '全部',
type: 5,
count: 0
},
{
name: '待申诉',
type: 5,
count: 0
},
{
name: '申诉中',
type: 5,
count: 0
},
{
name: '申诉成功',
type: 5,
count: 0
},
{
name: '申诉失败',
type: 5,
count: 0
}
];
tabs = {
totalQuantity: 0,
cancelQuantity: 0,
receivedQuantity: 0,
stayQuantity: 0
};
constructor(
public service: SupplyManagementService,
public service2: ShipperBaseService,
@ -65,9 +45,14 @@ export class OrderManagementRiskComponent implements OnInit {
/**
* 查询参数
*/
get reqParams() {
get reqParams() {
const a:any = {};
if(this.resourceStatus) {
a.representationsStatus = this.resourceStatus
}
return {
...this.sf?.value
...a,
...this.sf?.value,
};
}
get selectedRows() {
@ -401,6 +386,11 @@ export class OrderManagementRiskComponent implements OnInit {
selectChange(e: number) {
console.log(e);
this.resourceStatus = e;
this.initST();
setTimeout(() => {
this.st.load();
}, 500);
}
/**
* 导入货源