force-app/main/default/classes/LexCommitNeedApprovalController.cls
@@ -15,15 +15,17 @@ } @AuraEnabled public static void newUpdateMeetingDelayApply(String Id){ public static String newUpdateMeetingDelayApply(String Id){ meeting_delay_apply__c res = new meeting_delay_apply__c(); try{ res.Id=Id; res.Status__c ='提交'; update res; return 'succuse'; } catch (Exception e) { System.debug(LoggingLevel.INFO, '*** e: ' + e); return e.getMessage(); } }