From adda49560fc7905adb62723b0b38f1c6aa406563 Mon Sep 17 00:00:00 2001
From: LSH
Date: 星期三, 16 八月 2023 17:00:36 +0800
Subject: [PATCH] #报销申请初稿

---
 src/main/webapp/static/js/common.js |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/src/main/webapp/static/js/common.js b/src/main/webapp/static/js/common.js
index d345d91..a6bd673 100644
--- a/src/main/webapp/static/js/common.js
+++ b/src/main/webapp/static/js/common.js
@@ -203,9 +203,10 @@
 }(this);
 
 function requireTip(el) {
+    let oldBorderByCss = el.css("border");
     el.css("border", "1px solid #FF5722");
     setTimeout(function () {
-        el.css("border", "0px none rgb(89, 89, 89)");
+        el.css("border", oldBorderByCss);
     }, 2000)
 }
 
@@ -221,3 +222,4 @@
 var cstmrByMore;
 var orderByMore;
 var planByMore;
+var priQuoteByMore;

--
Gitblit v1.9.1