From 6deef5b408b08add4ad38314e37d7c6a38d4b031 Mon Sep 17 00:00:00 2001
From: wangsheng <123456>
Date: 星期四, 09 九月 2021 17:24:00 +0800
Subject: [PATCH] 优化自动补发开关,不显示具体补发通道,显示通道时,显示通道ID+通道名,优化补发记录表显示问题

---
 web/web/GwOpGroup.aspx |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/web/web/GwOpGroup.aspx b/web/web/GwOpGroup.aspx
index bca5113..7753afc 100644
--- a/web/web/GwOpGroup.aspx
+++ b/web/web/GwOpGroup.aspx
@@ -46,7 +46,7 @@
                    <div class="form-group">
                       <table class="table table-striped table-bordered table-hover" id="opList">
                       <thead>
-                        <tr><th class="col-md-6">閫氶亾</th><th  class="col-md-4">鏉冮噸</th><th  class="col-md-2">鎿嶄綔</th></tr>
+                        <tr><th class="col-md-6">閫氶亾</th><th class="col-md-4">鏉冮噸</th><th  class="col-md-2">鎿嶄綔</th></tr>
                         </thead>
                         <tbody>
                           
@@ -92,7 +92,7 @@
                html.push("<tr>");
                html.push("<td><select class='form-control' name='opid'>");
                $.each(opList, function (i) {
-                   html.push("<option value='" + this.OpID + "'  "+((this.OpID == opid) ? "selected" : "")+">" + this.OpName + "</option>");
+                   html.push("<option value='" + this.OpID + "'  "+((this.OpID == opid) ? "selected" : "")+">" +this.OpID+"-"+ this.OpName + "</option>");
                });
                html.push("</select></td>");
                html.push("<td><input type='text' class='form-control' name='weight' value='"+weight+"'></td>");

--
Gitblit v1.9.1