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