From f63d8ead25bdb3c32dacca817a059bd30390e9bc Mon Sep 17 00:00:00 2001
From: yzh <snbbt@21cn.com>
Date: 星期三, 15 六月 2022 22:20:07 +0800
Subject: [PATCH] 1.系统账户数据库优化: 修改“账户类型”的数据类型为VARCHAR2(1024),多个角色时以半角“,”分隔。 加密盐。 密码加密优化;账户登录优化;角色权限管理(作废用户权限); 2.字典类型管理(定义:用户角色) 3.字典数据管理(初始化用户角色数据) 3.角色权限管理 4.系统账户管理,账户类型对应用户角色(可多选)。
---
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