From bdb1a98b64a2cf59bcfd575c579aa0742e0de954 Mon Sep 17 00:00:00 2001
From: chenjingwu <chenjingwu@prec-tech.com>
Date: 星期五, 24 五月 2024 17:21:32 +0800
Subject: [PATCH] 1

---
 force-app/main/default/pages/PCLLostReportPageLwc.page |   21 ++++++++++++++++++++-
 1 files changed, 20 insertions(+), 1 deletions(-)

diff --git a/force-app/main/default/pages/PCLLostReportPageLwc.page b/force-app/main/default/pages/PCLLostReportPageLwc.page
index 2e3b4c2..a572932 100644
--- a/force-app/main/default/pages/PCLLostReportPageLwc.page
+++ b/force-app/main/default/pages/PCLLostReportPageLwc.page
@@ -1,7 +1,19 @@
 <apex:page lightningStylesheets="true">
     <apex:includeLightning />
 
-    <div id="vfContainer"></div>
+    <div id="vfContainer" style="-webkit-overflow-scrolling: touch;overflow-y: scroll;"></div>
+    <style>
+        label {
+        color: black !important;
+        }
+        .aura-error-message {
+            display: none;
+        }
+        .slds-theme_error{
+            --slds-g-color-error-base-40: #ba0517 !important;
+            --lwc-colorBackgroundToastError: #ba0517 !important;
+        }
+    </style>
     <script>
         init();
         function init(){
@@ -20,6 +32,13 @@
                 },
                 "vfContainer",
                 function(cmp) {
+                    var errorMessageElement = document.getElementById('auraErrorMessage');
+
+                    // 妫�鏌ユ槸鍚︽壘鍒颁簡鍏冪礌
+                    if (errorMessageElement) {
+                        // 闅愯棌鍏冪礌
+                        errorMessageElement.style.display = 'none';
+                    }
                 }
             );
             });

--
Gitblit v1.9.1