From a027508b5818236d0a46bc7036394c63978a68b0 Mon Sep 17 00:00:00 2001
From: yzh <snbbt@21cn.com>
Date: 星期二, 10 五月 2022 11:44:32 +0800
Subject: [PATCH] 充值功能优化,客户表增加余额、订单表增加充值金额
---
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