From 57a39cbd2475ced488aed4ee00ceac73f46c1c85 Mon Sep 17 00:00:00 2001 From: cwchen <1048842385@qq.com> Date: Tue, 21 Jan 2025 10:26:34 +0800 Subject: [PATCH] =?UTF-8?q?=E9=97=AE=E9=A2=98=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- js/car_demand_plan/child/apply_plan_detail.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/js/car_demand_plan/child/apply_plan_detail.js b/js/car_demand_plan/child/apply_plan_detail.js index 4429657..d978aaf 100644 --- a/js/car_demand_plan/child/apply_plan_detail.js +++ b/js/car_demand_plan/child/apply_plan_detail.js @@ -4,7 +4,7 @@ let form, layer, table; let isPage = getUrlParam('isPage'); if (isPage) { // 首页跳转 $('#plan-detail-box>div').eq(0).remove(); - $('#plan-detail-box').css({'justify-content':'end','height':'50px'}); + $('#plan-detail-box').css({ 'justify-content': 'end', 'height': '50px' }); $('body').css('margin', '0'); let obj = decodeURIComponent(getUrlParam('obj')) setParams(obj); @@ -276,9 +276,9 @@ function setOperRecordInfo(list, obj) { } let remark = setNullValue(item.auditRemark); // 操作流程 - if (item.auditType === '0') { + if (index === 0 && item.auditType === '1') { operData = '发起申请'; - } else if (item.auditType === '1') { + } else if (index > 0 && item.auditType === '1') { operData = '重新提交申请'; } else if (item.auditType === '2' && item.auditStatus === '2') { operData = '审核确认通过,共间隔:' + item.times + ' 原因备注:' + remark + '';