From 7c633c000468b206f3a87e8b5d81b9e747965ca9 Mon Sep 17 00:00:00 2001
From: unknown <sunxia@prec-tech.com>
Date: 星期三, 19 七月 2023 14:43:25 +0800
Subject: [PATCH] page-EquipmentRentalLostReport

---
 force-app/main/default/pages/EquipmentRentalLostReport.page |   39 ++++++++++++++++++++++-----------------
 1 files changed, 22 insertions(+), 17 deletions(-)

diff --git a/force-app/main/default/pages/EquipmentRentalLostReport.page b/force-app/main/default/pages/EquipmentRentalLostReport.page
index 05d924b..a4bb929 100644
--- a/force-app/main/default/pages/EquipmentRentalLostReport.page
+++ b/force-app/main/default/pages/EquipmentRentalLostReport.page
@@ -2,7 +2,12 @@
 <apex:stylesheet value="{!URLFOR($Resource.blockUIcss)}"/>
 <apex:includeScript value="{!URLFOR($Resource.jquery183minjs)}"/>
 <apex:includeScript value="{!URLFOR($Resource.PleaseWaitDialog)}"/>
-
+<apex:stylesheet value="{!URLFOR($Resource.StyleUtilCss)}"/><!-- 20230619 ljh lightning --> 
+<style>
+    body .bPageBlock .detailList .dataCol{
+        width: 12%;
+    }
+</style>
 <script type="text/javascript">
 function savejs() {
     if (confirm('鏄惁淇濆瓨閬楀け鎶ュ憡锛�')) {
@@ -97,14 +102,14 @@
 
                 <apex:pageBlockSection rendered="{!IF(rentalApplyId == null ,false, true)}"  >
                     <apex:pageBlockSectionItem >
-                        <apex:outputLabel style="font-size: 15px;" value="{!$ObjectType.Rental_Apply__c.fields.Name.label}" for="Name"/>
+                        <apex:outputLabel style="font-size: 15px;margin-top: -.125rem;" value="{!$ObjectType.Rental_Apply__c.fields.Name.label}" for="Name"/>
                         <apex:outputLink style="font-size: 15px;" value="/{!rentalApply.Id}" id="Name">{!rentalApply.Name}</apex:outputLink>
                     </apex:pageBlockSectionItem>
                 </apex:pageBlockSection>
 
                 <apex:pageBlockSection rendered="{!IF(rentalApplyId == null || rentalApplyId == '' ,true, false)}"  >
                     <apex:pageBlockSectionItem >
-                        <apex:outputLabel style="font-size: 15px;" value="{!$ObjectType.TransferApply__c.fields.Name.label}" for="Name"/>
+                        <apex:outputLabel style="font-size: 15px;margin-top: -.125rem;" value="{!$ObjectType.TransferApply__c.fields.Name.label}" for="Name"/>
                         <apex:outputLink style="font-size: 15px;" value="/{!TransferApply.Id}" id="Name">{!TransferApply.Name}</apex:outputLink>
                     </apex:pageBlockSectionItem>
                 </apex:pageBlockSection>
@@ -113,17 +118,17 @@
             <apex:outputPanel rendered="{!IF(rentalApplyId == null ,false, true)}">
                 <table class="linetable" border="1" style="border-collapse: collapse;">
                     <colgroup>
-                        <col width="25"/>
-                        <col width="25"/>
-                        <col width="110"/>
+                        <col width="80"/>
+                        <col width="165"/>
+                        <col width="100"/>
                         <col width="50"/>
                         <col width="50"/>
                         <col width="110"/>
+                        <col width="80"/>
                         <col width="110"/>
+                        <col width="50"/>
                         <col width="110"/>
-                        <col width="110"/>
-                        <col width="110"/>
-                        <col width="110"/>
+                        <col width="80"/>
                     </colgroup>
                     <tr style="background-color:#DCDCDC;">
                         <th style="text-align:center">鎶ュ憡瀵硅薄<input type='checkbox' onClick='checkAll("checker","rowCheck")' id='checker'/></th>
@@ -143,7 +148,7 @@
                         <tr>
                             <td align="center"><apex:inputCheckbox disabled="{!info.checkBoxdisabled}" value="{!info.isSelect}" id="rowCheck"/></td>
                             <apex:repeat value="{!columnsApi}" var="c">
-                                <td align="left">
+                                <td align="center">
                                     <apex:outputPanel rendered="{!(c.size==2 && info.raesd[c[0]] != null)}" layout="none">
                                         <apex:outputField value="{!info.raesd[c[0]][c[1]]}"/>
                                     </apex:outputPanel>
@@ -165,17 +170,17 @@
             <apex:outputPanel rendered="{!IF(rentalApplyId == null ,true, false)}">
                 <table class="linetable" border="1" style="border-collapse: collapse;">
                     <colgroup>
-                        <col width="25"/>
-                        <col width="25"/>
+                        <col width="80"/>
+                        <col width="170"/>
                         <col width="110"/>
-                        <col width="50"/>
-                        <col width="50"/>
+                        <col width="70"/>
+                        <col width="60"/>
                         <col width="110"/>
                         <col width="110"/>
                         <col width="110"/>
+                        <col width="60"/>
                         <col width="110"/>
-                        <col width="110"/>
-                        <col width="110"/>
+                        <col width="80"/>
                     </colgroup>
                     <tr style="background-color:#DCDCDC;">
                         <th style="text-align:center">鎶ュ憡瀵硅薄<input type='checkbox' onClick='checkAll("checker","rowCheck")' id='checker'/></th>
@@ -195,7 +200,7 @@
                         <tr>
                             <td align="center"><apex:inputCheckbox disabled="{!info.checkBoxdisabled}" value="{!info.isSelect}" id="rowCheck"/></td>
                             <apex:repeat value="{!columnsApi}" var="c">
-                                <td align="left">
+                                <td align="center">
                                     <apex:outputPanel rendered="{!(c.size==2 && info.raesd1[c[0]] != null)}" layout="none">
                                         <apex:outputField value="{!info.raesd1[c[0]][c[1]]}"/>
                                     </apex:outputPanel>

--
Gitblit v1.9.1