From c8ec928e26cdf8efc51a576547ebcfbe3cb71f6d Mon Sep 17 00:00:00 2001
From: Junjie <fallin.jie@qq.com>
Date: 星期四, 16 三月 2023 16:28:24 +0800
Subject: [PATCH] 新增核价管理-上传询价后可进行下载功能

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

diff --git a/src/main/webapp/static/js/common.js b/src/main/webapp/static/js/common.js
index d345d91..cffd7ac 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)
 }
 

--
Gitblit v1.9.1