| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <%@ page language="java" import="java.util.*" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
- <%@include file="/context/mytags.jsp"%>
- <!DOCTYPE html>
- <html>
- <head>
- <title><t:mutiLang langKey="common.role.info"/></title>
- <t:base type="jquery,easyui,tools"></t:base>
- </head>
- <body style="overflow-y: hidden" scroll="no">
- <t:formvalid formid="formobj" layout="div" dialog="true" action="roleController.do?saveRole">
- <input name="id" type="hidden" value="${role.id}"/>
- <fieldset class="step">
- <div class="form">
- <label class="Validform_label"><span color="red" class="requiredIcon">*</span><t:mutiLang langKey="common.role.name"/>:</label>
- <input name="roleName" class="inputxt" value="${role.roleName }" datatype="s2-8"/>
- <span class="Validform_checktip"><t:mutiLang langKey="rolescope.rang2to8.notnull"/></span>
- </div>
- <c:if test="${role.id==null || role.id==''}">
- <div class="form">
- <label class="Validform_label"><span color="red" class="requiredIcon">*</span><t:mutiLang langKey="common.role.code"/>:</label>
- <input name="roleCode" id="roleCode" ajaxurl="roleController.do?checkRole&code=${role.roleCode }" class="inputxt" value="${role.roleCode }" datatype="s2-15">
- <span class="Validform_checktip"><t:mutiLang langKey="rolecode.rang2to15.notnull"/></span>
- </div>
- </c:if>
- <c:if test="${role.id!=null && role.id!=''}">
- <div class="form">
- <label class="Validform_label"><span color="red" class="requiredIcon">*</span><t:mutiLang langKey="common.role.code"/>:</label>
- <input name="roleCode" id="roleCode" ajaxurl="roleController.do?checkRole&code=${role.roleCode }" class="inputxt" value="${role.roleCode }" datatype="s2-15" readonly="readonly">
- <span class="Validform_checktip"><t:mutiLang langKey="rolecode.rang2to15.notnull"/></span>
- </div>
- </c:if>
-
- <div class="form">
- <label class="Validform_label"><span color="red" class="requiredIcon">*</span>角色权值:</label>
- <input name="selfRoleweightCode" id="selfRoleweightCode" class="inputxt" value="${role.selfRoleweightCode }" datatype="n1-6">
- <span class="Validform_checktip">角色权值</span>
- </div>
- <div class="form">
- <label class="Validform_label"><span color="red" class="requiredIcon">*</span>可见权限范围:</label>
- <input name="visibleRoleweightCode" id="visibleRoleweightCode" class="inputxt" value="${role.visibleRoleweightCode }" datatype="*2-200">
- <span class="Validform_checktip">可见权限范围</span>
- </div>
- <div class="form">
- <label class="Validform_label"><span color="red" class="requiredIcon">*</span>能否登录app:</label>
- <t:dictSelect field="apploginAbleFlag" type="list" typeGroupCode="applogin_able_flag" datatype="*" defaultVal="${role.apploginAbleFlag}" hasLabel="false" title="能否登录app"></t:dictSelect>
- <span class="Validform_checktip">必选</span>
- </div>
-
- </fieldset>
- </t:formvalid>
- </body>
- </html>
|