| | |
| | | <apex:page controller="ConsumTrialUpdateController" showHeader="false" action="{!init}" id="allPage"> |
| | | <apex:page controller="ConsumTrialUpdateController" showHeader="false" action="{!init}" id="allPage" lightningStylesheets="true"> |
| | | <apex:stylesheet value="{!URLFOR($Resource.blockUIcss)}"/> |
| | | <apex:includeScript value="{!URLFOR($Resource.jquery183minjs)}"/> |
| | | <apex:includeScript value="{!URLFOR($Resource.PleaseWaitDialog)}"/> |
| | |
| | | <apex:includeScript value="{!URLFOR($Resource.ReceivingNotePageJS)}"/> |
| | | <apex:includeScript value="{!URLFOR($Resource.CommonUtilJs)}"/> |
| | | <apex:includeScript value="{! URLFOR($Resource.AWSService, 'AWSService.js') }"/> |
| | | <apex:stylesheet value="{!URLFOR($Resource.StyleUtilCss)}"/><!-- 20230619 ljh lightning --> |
| | | |
| | | <apex:form id="allForm"> |
| | | <style> |
| | | table.headTable td { |
| | |
| | | background-image:url('{!URLFOR($Resource.IconResizePlus_5)}'); |
| | | background-repeat:no-repeat; |
| | | } |
| | | #tableData td{display: inline-flex;} |
| | | </style> |
| | | <script type="text/javascript"> |
| | | var heightAjustment = 120; |
| | |
| | | document.getElementById(ids[i]).children[0].children[0].innerText = TrialUser[ids[i].substring(0,18)].trialUser; |
| | | console.log('i = '+i); |
| | | } |
| | | }); |
| | | }); |
| | | //解密信息add by xq 2023/07/06 Start ConsumTrialUpdate q2 |
| | | for(var i in rowBList){ |
| | | console.log('robId= '+rowBList[i].AWSDataId) |
| | | console.log('useeId= '+TrialUser[rowBList[i].AWSDataId]["trialUser"]); |
| | | document.getElementById(rowBList[i].AWSDataId+'_'+rowBList[i].Id).innerText = TrialUser[rowBList[i].AWSDataId]["trialUser"]; |
| | | } |
| | | //解密信息add by xq 2023/07/06 end |
| | | } |
| | | |
| | | function queryUser(){ |
| | |
| | | let temp = {} |
| | | temp.trialUser = contacts.trialUser; |
| | | TrialUser[contacts.dataId] = temp; |
| | | //解密信息add by xq 2023/07/06 Start queryUser else |
| | | for(var i in rowBList){ |
| | | console.log('robId= '+rowBList[i].AWSDataId) |
| | | console.log('useeId= '+TrialUser[rowBList[i].AWSDataId]["trialUser"]); |
| | | document.getElementById(rowBList[i].AWSDataId+'_'+rowBList[i].Id).innerText = TrialUser[rowBList[i].AWSDataId]["trialUser"]; |
| | | } |
| | | //解密信息add by xq 2023/07/06 end |
| | | }; |
| | | for(var i=0;i<rowBList.length;i++){ |
| | | ids.push(rowBList[i].AWSDataId + '_' + rowBList[i].Id); |