调整密码修改界面的样式,列表宽度优化
This commit is contained in:
parent
fc0202b530
commit
3380d3cd26
@ -43,6 +43,9 @@
|
|||||||
function getType(){
|
function getType(){
|
||||||
listTitle = $("#tablePanel").prev().text();
|
listTitle = $("#tablePanel").prev().text();
|
||||||
depotString = "|";
|
depotString = "|";
|
||||||
|
//改变宽度和高度
|
||||||
|
$("#searchPanel").panel({width:webW-2});
|
||||||
|
$("#tablePanel").panel({width:webW-2});
|
||||||
var supUrl = path + "/supplier/findBySelect_sup.action"; //供应商接口
|
var supUrl = path + "/supplier/findBySelect_sup.action"; //供应商接口
|
||||||
var cusUrl = path + "/supplier/findBySelect_cus.action"; //客户接口
|
var cusUrl = path + "/supplier/findBySelect_cus.action"; //客户接口
|
||||||
var retailUrl = path + "/supplier/findBySelect_retail.action"; //散户接口
|
var retailUrl = path + "/supplier/findBySelect_retail.action"; //散户接口
|
||||||
|
|||||||
@ -21,20 +21,20 @@
|
|||||||
<script type="text/javascript" src="<%=path %>/js/common/common.js"></script>
|
<script type="text/javascript" src="<%=path %>/js/common/common.js"></script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="userDlg" class="easyui-panel" title="修改密码" style="height:370px;padding:10px 20px;background-color:#EAF2FD; "
|
<div id="userDlg" class="easyui-panel" title="修改密码" style="height:370px;background-color:#EAF2FD; "
|
||||||
iconCls="icon-unlock" collapsible="true" closable="false">
|
iconCls="icon-unlock" collapsible="true" closable="false">
|
||||||
<form id="passwordFM" method="post" novalidate>
|
<form id="passwordFM" method="post" novalidate>
|
||||||
<div class="fitem" style="padding:5px">
|
<div class="fitem" style="padding:10px">
|
||||||
<label id="passwordLabel">原始密码 </label>
|
<label id="passwordLabel">原始密码 </label>
|
||||||
<input type="password" name="orgpassword" id="orgpassword" class="easyui-validatebox" data-options="required:true,validType:'length[5,20]'" style="width: 230px;height: 20px" missingMessage="请输入原始密码"/>
|
<input type="password" name="orgpassword" id="orgpassword" class="easyui-validatebox" data-options="required:true,validType:'length[5,20]'" style="width: 230px;height: 20px" missingMessage="请输入原始密码"/>
|
||||||
<span id="orgTipMsg"></span>
|
<span id="orgTipMsg"></span>
|
||||||
</div>
|
</div>
|
||||||
<div class="fitem" style="padding:5px">
|
<div class="fitem" style="padding:10px">
|
||||||
<label id="newPassword">重设密码 </label>
|
<label id="newPassword">重设密码 </label>
|
||||||
<input type="password" name="password" id="password" class="easyui-validatebox" data-options="required:true,validType:'length[5,20]'" style="width: 230px;height: 20px" missingMessage="请填写新密码"/>
|
<input type="password" name="password" id="password" class="easyui-validatebox" data-options="required:true,validType:'length[5,20]'" style="width: 230px;height: 20px" missingMessage="请填写新密码"/>
|
||||||
<span id="orgTipMsg"></span>
|
<span id="orgTipMsg"></span>
|
||||||
</div>
|
</div>
|
||||||
<div class="fitem" style="padding:5px">
|
<div class="fitem" style="padding:10px">
|
||||||
<label id="repasswordLabel">再输一遍 </label>
|
<label id="repasswordLabel">再输一遍 </label>
|
||||||
<input type="password" name="repassword" id="repassword" class="easyui-validatebox" style="width: 230px;height: 20px" required="true" class="easyui-validatebox" validType="equals['#password']" missingMessage="请再次填写新密码" invalidMessage="两次密码输入不一致"/>
|
<input type="password" name="repassword" id="repassword" class="easyui-validatebox" style="width: 230px;height: 20px" required="true" class="easyui-validatebox" validType="equals['#password']" missingMessage="请再次填写新密码" invalidMessage="两次密码输入不一致"/>
|
||||||
<span id="tipMsg"></span>
|
<span id="tipMsg"></span>
|
||||||
@ -58,7 +58,7 @@
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
$("#userDlg").panel({height:webH-35});
|
$("#userDlg").panel({height:webH-3, width:webW+15});
|
||||||
$("#dlg-buttons").css("padding-left","65px");
|
$("#dlg-buttons").css("padding-left","65px");
|
||||||
});
|
});
|
||||||
//重置
|
//重置
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user