...
|
...
|
@@ -94,7 +94,7 @@ |
|
|
</div>
|
|
|
|
|
|
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
|
|
|
<div class="modal-dialog" style="width:800px">
|
|
|
<div class="modal-dialog" style="width:840px;">
|
|
|
<div class="modal-content" style="width: 140%">
|
|
|
<div class="modal-header">
|
|
|
<button type="button" class="close" data-dismiss="modal"
|
...
|
...
|
@@ -166,7 +166,7 @@ |
|
|
</div>
|
|
|
<div class="form-group" >
|
|
|
<label class="col-sm-2 control-label">模块权限:</label>
|
|
|
<div class="col-sm-10" id="modules_div">
|
|
|
<div class="col-sm-10" id="modules_div" style="width:880px; height:350px; overflow:scroll;">
|
|
|
|
|
|
</div>
|
|
|
</div>
|
...
|
...
|
@@ -244,11 +244,11 @@ |
|
|
for(var groupKey in modulesByGroupMap){
|
|
|
contentHtml += '<tr>';
|
|
|
|
|
|
contentHtml += '<td>'+groupMap[groupKey]+'</td>';
|
|
|
contentHtml += '<td width="80px;" align="center">'+groupMap[groupKey]+'</td>';
|
|
|
contentHtml += '<td style="padding: 0.3em 1em;">';
|
|
|
var arrayModuleUnderGroup=modulesByGroupMap[groupKey];
|
|
|
$.each(arrayModuleUnderGroup,function(n,value) {
|
|
|
if(n>0&&n%7==0){
|
|
|
if(n>0&&n%8==0){
|
|
|
contentHtml+='</br>';
|
|
|
}
|
|
|
contentHtml+='<input type="checkbox" name="modulesCheckBox" value="'+value.moduleName+'">' +value.moduleCName+' ';
|
...
|
...
|
|