fix bug
This commit is contained in:
@ -25,6 +25,7 @@ export class OrderManagementComplianceAuditComponent implements OnInit {
|
|||||||
changeId: any; // 主页面查看运费变更记录id - 用于运费变更记录
|
changeId: any; // 主页面查看运费变更记录id - 用于运费变更记录
|
||||||
changeViewId: any; // 查看运费变更记录id - 用于查看
|
changeViewId: any; // 查看运费变更记录id - 用于查看
|
||||||
auditId: any;
|
auditId: any;
|
||||||
|
auditIdR: any;
|
||||||
auditMany = false;
|
auditMany = false;
|
||||||
isVisibleView = false;
|
isVisibleView = false;
|
||||||
isVisibleEvaluate = false;
|
isVisibleEvaluate = false;
|
||||||
@ -629,7 +630,7 @@ export class OrderManagementComplianceAuditComponent implements OnInit {
|
|||||||
idList.push(item.id);
|
idList.push(item.id);
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
idList.push(this.sfView.value.billCode)
|
idList.push(this?.auditIdR)
|
||||||
}
|
}
|
||||||
const parms = {
|
const parms = {
|
||||||
ids: idList,
|
ids: idList,
|
||||||
@ -681,7 +682,8 @@ export class OrderManagementComplianceAuditComponent implements OnInit {
|
|||||||
audit(item?: any) {
|
audit(item?: any) {
|
||||||
if (item) {
|
if (item) {
|
||||||
this.isVisibleRE = true;
|
this.isVisibleRE = true;
|
||||||
this.auditId = item.id;
|
this.auditId = item.billCode;
|
||||||
|
this.auditIdR = item.id;
|
||||||
this.initSTAudit(1);
|
this.initSTAudit(1);
|
||||||
} else {
|
} else {
|
||||||
if (this.selectedRows.length <= 0) {
|
if (this.selectedRows.length <= 0) {
|
||||||
|
|||||||
Reference in New Issue
Block a user