From 17b7d16e4f5998dfc60d133ea08712b0abc46f84 Mon Sep 17 00:00:00 2001
From: liujie <1793218484@qq.com>
Date: 星期五, 05 九月 2025 09:12:00 +0800
Subject: [PATCH] bug修改

---
 cloud-server-management/src/main/webapp/WEB-INF/view/system/storeValueConfig/StoreValueConfig.html |   10 +++-------
 1 files changed, 3 insertions(+), 7 deletions(-)

diff --git a/cloud-server-management/src/main/webapp/WEB-INF/view/system/storeValueConfig/StoreValueConfig.html b/cloud-server-management/src/main/webapp/WEB-INF/view/system/storeValueConfig/StoreValueConfig.html
index 9e2f8a9..87386d7 100644
--- a/cloud-server-management/src/main/webapp/WEB-INF/view/system/storeValueConfig/StoreValueConfig.html
+++ b/cloud-server-management/src/main/webapp/WEB-INF/view/system/storeValueConfig/StoreValueConfig.html
@@ -13,8 +13,8 @@
                 <div class="ibox-title">
                     <h5>储值管理</h5>
                 </div>
-                <input type="hidden" id="content"       value='${content}'>
-                <input type="hidden" id="time"          value="${time}">
+                <input type="hidden" id="content" value='${content}'>
+                <input type="hidden" id="time" value="${time}">
                 <div class="ibox-title">
                     <div style="display: flex">
                         <label for="editor_1">*常规储值:</label>
@@ -28,8 +28,6 @@
                                 <div style="height: 200px;width: 1100px; border: 1px solid #e5e6e7;overflow-y: auto;">
                                     <table class="table table-striped table-bordered table-hover table-condensed">
                                         <thead>
-                                        <tr>
-                                        </tr>
                                         </thead>
                                         <tbody id="rules">
 <!--                                        <tr class="rulesClass" style="display: flex; justify-content: space-between;">-->
@@ -114,11 +112,9 @@
     };
     var editor_1 = null;
     $(function () {
-
         var c = $("#content").val()
         var d= $("#description").val()
         var t = $("#time").val();
-
         var rulesTable = document.getElementById("rules");
         var rulesTimeTable = document.getElementById("rulesTime");
         // 将json串解析为对象
@@ -127,6 +123,7 @@
         // 普通储值规则
         for (var i = 0; i < data.rules.length; i++) {
             var rule = data.rules[i];
+
             var row = document.createElement("tr");
             row.className = "rulesClass";
             row.style.display = "flex";
@@ -167,7 +164,6 @@
             td2.style.textAlign = "center";
             td3.style.textAlign = "center";
             td4.style.textAlign = "center";
-
             td1.innerHTML = "*充值金额:<input placeholder='请输入充值金额' id='rechargeTime' name='rechargeTime' value='" + rule.money + "'>";
             row.appendChild(td1);
             td2.innerHTML = "*用户兑换玩湃币:<input placeholder='请输入兑换玩湃币' id='userTime' name='userTime' value='" + rule.usersCoins + "'>";

--
Gitblit v1.7.1