From 72e90cc652a3456fb26344b9e2ac4b55efa22b32 Mon Sep 17 00:00:00 2001
From: Administrator <15274802129@163.com>
Date: Tue, 30 Jun 2026 17:21:59 +0800
Subject: [PATCH] feat(order): 添加XT支付功能和确认收款功能

---
 src/main/resources/templates/febs/views/modules/system/payLink.html |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/src/main/resources/templates/febs/views/modules/system/payLink.html b/src/main/resources/templates/febs/views/modules/system/payLink.html
index 4528e66..c1365e7 100644
--- a/src/main/resources/templates/febs/views/modules/system/payLink.html
+++ b/src/main/resources/templates/febs/views/modules/system/payLink.html
@@ -22,7 +22,7 @@
                                 </blockquote>
                                 <div class="layui-word-aux">双击图片删除</div>
                             </div>
-                            <input type="hidden" name="xtLinkImg" id="xtLinkImg" data-th-id="${payLink.xtLinkImg}" lay-verify="required" autocomplete="off" class="layui-input">
+                            <input type="hidden" name="xtLinkImg" id="xtLinkImg" data-th-id="${payLink.xtLinkImg}">
                         </div>
                     </div>
                 </div>
@@ -104,6 +104,10 @@
         }
 
         form.on('submit(pay-link-form-submit)', function (data) {
+            if (!$('#xtLinkImg').val()) {
+                febs.alert.warn('请上传付款链接图片');
+                return false;
+            }
             febs.post(ctx + 'admin/system/payLink', data.field, function (res) {
                 febs.alert.success('保存成功');
             });

--
Gitblit v1.9.1