From 4584d37468a69a5a9707dcaa20a506141c31a0b5 Mon Sep 17 00:00:00 2001 From: luxiaotao1123 <t1341870251@63.com> Date: 星期一, 21 十一月 2022 15:43:41 +0800 Subject: [PATCH] # --- src/main/webapp/static/js/plan/plan.js | 1 - src/main/webapp/static/js/common.js | 3 ++- 2 files changed, 2 insertions(+), 2 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) } diff --git a/src/main/webapp/static/js/plan/plan.js b/src/main/webapp/static/js/plan/plan.js index 8627f43..15fcfe7 100644 --- a/src/main/webapp/static/js/plan/plan.js +++ b/src/main/webapp/static/js/plan/plan.js @@ -246,7 +246,6 @@ }); layDateRender(); form.on('submit(editSubmit)', function (data) { - console.log(data.field); data.field.planType = planType.id; data.field.orderId = orderSel.getValue()[0] ? orderSel.getValue()[0].value : null; data.field.cstmrId = cstmrSel.getValue()[0] ? cstmrSel.getValue()[0].value : null; -- Gitblit v1.9.1