From 46ae91d150985e38ecec8768634cc1ee15c5151b Mon Sep 17 00:00:00 2001
From: liujie <1793218484@qq.com>
Date: 星期四, 07 八月 2025 19:02:06 +0800
Subject: [PATCH] 赛事模块

---
 cloud-server-management/src/main/webapp/WEB-INF/view/system/worldCup/worldCup_edit.html |   32 ++++++++++++++++++++++++++++++++
 1 files changed, 32 insertions(+), 0 deletions(-)

diff --git a/cloud-server-management/src/main/webapp/WEB-INF/view/system/worldCup/worldCup_edit.html b/cloud-server-management/src/main/webapp/WEB-INF/view/system/worldCup/worldCup_edit.html
index ddbe468..8c5aa53 100644
--- a/cloud-server-management/src/main/webapp/WEB-INF/view/system/worldCup/worldCup_edit.html
+++ b/cloud-server-management/src/main/webapp/WEB-INF/view/system/worldCup/worldCup_edit.html
@@ -32,6 +32,19 @@
             <input class="form-control" id="name" value="${item.name}">
           </div>
         </div>
+
+
+        <div class="form-group">
+          <label class="col-sm-3 control-label">*赛事类别:</label>
+          <div class="col-sm-3">
+            <select class="form-control" id="type">
+              <option value="1" ${1 == item.type ? 'selected' : ''}>智慧赛事</option>
+              <option value="2" ${2 == item.type ? 'selected' : ''}>非智慧赛事</option>
+            </select>
+          </div>
+        </div>
+
+
         <div class="form-group">
           <label class="col-sm-3 control-label">*开始时间:</label>
           <div class="col-sm-3">
@@ -120,7 +133,20 @@
             <input class="form-control" id="winIntegral" type="number" min="0" value="${item.winIntegral}">
           </div>
         </div>
+
+
         <div class="form-group">
+          <label class="col-sm-3 control-label">平场可获积分</label>
+          <div class="col-sm-3">
+            <input class="form-control" id="drawIntegral" type="number" min="0" value="${item.drawIntegral}">
+          </div>
+          <label style="float: left;line-height: 35px;">败场可获积分</label>
+          <div class="col-sm-3">
+            <input class="form-control" id="loseIntegral" type="number" min="0" value="${item.loseIntegral}">
+          </div>
+        </div>
+
+  <div class="form-group">
           <label class="col-sm-3 control-label">*比赛地点:</label>
           <div class="col-sm-7">
             <input class="form-control" id="address" onchange="WorldCupInfo.searchByStationName(this,1)" value="${item.address}">
@@ -226,6 +252,12 @@
             <textarea id="content" style="height: 800px;width: 100%;">${item.content}</textarea>
           </div>
         </div>
+        <div class="form-group">
+          <label class="col-sm-3 control-label">*参赛协议</label>
+          <div class="col-sm-7" style="padding: 0px;">
+            <textarea id="contentOne" style="height: 800px;width: 100%;">${item.contentOne}</textarea>
+          </div>
+        </div>
       </div>
     </div>
     <div class="row btn-group-m-t">

--
Gitblit v1.7.1