diff --git a/src/views/business/loading-manage.vue b/src/views/business/loading-manage.vue index a8c0eca..112a057 100644 --- a/src/views/business/loading-manage.vue +++ b/src/views/business/loading-manage.vue @@ -1276,11 +1276,11 @@ export default { findWaybillId(row, waybillNo) { const rows = this.splitText(row.loadingSubNos); const index = rows.findIndex(item => item === waybillNo); - const linkedRows = this.parseJsonArray(row.waybillList || row.waybillRows || row.waybills); + const linkedRows = parseJsonArray(row.waybillList || row.waybillRows || row.waybills); if (linkedRows[index]?.id || linkedRows[index]?.waybillId) { return linkedRows[index].id || linkedRows[index].waybillId; } - const ids = this.parseJsonArray(row.waybillIdsJson); + const ids = parseJsonArray(row.waybillIdsJson); return ids[index] || ''; }, async openWaybillDetail(row = {}) { diff --git a/src/views/vehicle/customer-archive.vue b/src/views/vehicle/customer-archive.vue index 42531ce..1ac93f7 100644 --- a/src/views/vehicle/customer-archive.vue +++ b/src/views/vehicle/customer-archive.vue @@ -678,6 +678,11 @@ + + + + +
+ 变更日期:{{ changeRecordDetail.changeTime || '-' }} + 变更账号:{{ changeRecordDetail.changeUserName || '-' }} +
+ + + + + + + +
+