| | |
| | | <title>借出备品配套明细选择</title> |
| | | <apex:stylesheet value="{!URLFOR($Resource.blockUIcss)}"/> |
| | | <apex:stylesheet value="{!URLFOR($Resource.RentalFixtureSetDetilSelectCss)}"/> |
| | | <apex:stylesheet value="{!URLFOR($Resource.StyleUtilCss)}"/><!-- 20230624 ljh lightning --> |
| | | <apex:includeScript value="{!URLFOR($Resource.jquery183minjs)}"/> |
| | | <apex:includeScript value="{!URLFOR($Resource.PleaseWaitDialog)}"/> |
| | | <apex:includeScript value="{!URLFOR($Resource.RelationListPagingCmpJS)}"/> |
| | |
| | | <script type="text/javascript"> |
| | | // 数量添加加减符号 |
| | | j$(".dataCellBorder1.col_Rental_Num__c").each(function () { |
| | | // 20230614 ljh lightning start |
| | | if(!this.firstElementChild.disabled){ |
| | | j$(this).append('<input type="button" style="width: auto;" class="inc btn" value="+" /><input type="button" style="width: auto;" class="dec btn" value="-" />'); |
| | | } |
| | | // j$(this).append('<input type="button" style="width: auto;" class="inc btn" value="+" /><input type="button" style="width: auto;" class="dec btn" value="-" />'); |
| | | j$(this).append('<input type="button" style="width:1.5rem;line-height:1.5rem;" class="inc btn" value="+" /><input type="button" style="width:1.5rem;line-height:1.5rem;" class="dec btn" value="-" />'); |
| | | } |
| | | else{ |
| | | j$(this).append('<input type="button" style="width: auto;" class="dec btn" value="-" />'); |
| | | // j$(this).append('<input type="button" style="width: auto;" class="dec btn" value="-" />'); |
| | | j$(this).append('<input type="button" style="width:1.5rem;line-height:1.5rem;" class="dec btn" value="-" />'); |
| | | } |
| | | // 20230614 ljh lightning end |
| | | }); |
| | | j$(".dataCellBorder1.col_Rental_Num__c input[type=button]").on("click", function() { |
| | | var $button = j$(this); |