From ea151fa20c6589f41c489432a920e1625a500ab1 Mon Sep 17 00:00:00 2001 From: cwchen <1048842385@qq.com> Date: Mon, 20 Jan 2025 11:27:36 +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 --- .../child/payment_detail_list.js | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/js/car_settlement/child/payment_detail_list.js b/js/car_settlement/child/payment_detail_list.js index 65a51d0..b2db637 100644 --- a/js/car_settlement/child/payment_detail_list.js +++ b/js/car_settlement/child/payment_detail_list.js @@ -96,6 +96,17 @@ function initTable() { return d.LAY_NUM; }, }, + { + field: "type", + width: '10%', + title: "类型", + unresize: true, + align: "center", + sort:true, + templet: function (d) { + return d.type === '1' ? '车辆':'吊车'; + }, + }, { field: "supName", width: '15%', @@ -106,7 +117,7 @@ function initTable() { }, { field: "code", - width: '15%', + width: '14%', title: "需求计划编号", unresize: true, align: "center", @@ -127,7 +138,7 @@ function initTable() { }, { field: "money", - width: '12%', + width: '10%', title: "应付金额", unresize: true, align: "center", @@ -138,7 +149,7 @@ function initTable() { }, { field: "payMoney", - width: '12%', + width: '10%', title: "已付金额", unresize: true, align: "center", @@ -155,7 +166,7 @@ function initTable() { }, { field: "proName", - width: '20%', + width: '15%', title: "工程名称", unresize: true, align: "center",