From 80a3f59e2d3df07805bc67e329300b8de90a5b3a Mon Sep 17 00:00:00 2001
From: buli <137736985@qq.com>
Date: 星期二, 11 七月 2023 14:13:08 +0800
Subject: [PATCH] Merge branch 'LEXCommunityLiJun' into LEXUpgrade2023-Deloitte

---
 force-app/main/default/aura/DealerPersonnelInformationImport/DealerPersonnelInformationImportController.js |   22 +++++++++++-----------
 1 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/force-app/main/default/aura/DealerPersonnelInformationImport/DealerPersonnelInformationImportController.js b/force-app/main/default/aura/DealerPersonnelInformationImport/DealerPersonnelInformationImportController.js
index 91dbcfc..a2f994a 100644
--- a/force-app/main/default/aura/DealerPersonnelInformationImport/DealerPersonnelInformationImportController.js
+++ b/force-app/main/default/aura/DealerPersonnelInformationImport/DealerPersonnelInformationImportController.js
@@ -1,17 +1,17 @@
 ({
-    CreateRecord : function(component, event, helper){
-        var files = event.getSource().get("v.files");
-        helper.readFile(component,helper,files[0]);
+    CreateRecord: function (component, event, helper) {
+        var files = event.getSource().get('v.files');
+        helper.readFile(component, helper, files[0]);
     },
-    processFileContent : function(component,event,helper){
-        component.set("v.showErrorInfo",false);
-        helper.saveRecords(component,event,helper);
+    processFileContent: function (component, event, helper) {
+        component.set('v.showErrorInfo', false);
+        helper.saveRecords(component, event, helper);
     },
-    cancel : function(component,event,helper){
-        component.set("v.showMain",true);
+    cancel: function (component, event, helper) {
+        component.set('v.showMain', true);
     },
-    exportErrorInfo: function(component,event,helper){
+    exportErrorInfo: function (component, event, helper) {
         console.log('enter exportErrorInfo');
         helper.exportErrorInfoHelper(component);
-    },
-})
\ No newline at end of file
+    }
+});

--
Gitblit v1.9.1