Keine Beschreibung
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

edit.htm 19KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417
  1. {include file="public/layout" /}
  2. <body class="rolecss bodystyle">
  3. <div id="toolTipLayer" style="position: absolute; z-index: 9999; display: none; visibility: visible; left: 95px; top: 573px;"></div>
  4. <div id="append_parent"></div>
  5. <div id="ajaxwaitid"></div>
  6. <div class="page">
  7. <form class="form-horizontal" id="postForm" method="post" action="{:url('AuthRole/edit')}">
  8. <input type="hidden" name="id" value="{$info.id}">
  9. <div class="ncap-form-default">
  10. <dl class="row"><dt class="tit"><label><b>角色信息</b></label></dt></dl>
  11. <dl class="row">
  12. <dt class="tit">
  13. <label for="name"><em>*</em>角色名称</label>
  14. </dt>
  15. <dd class="opt">
  16. <input type="text" name="name" id="name" value="{$info.name|default=''}" class="input-txt" autocomplete="off">
  17. <span class="err"></span>
  18. <p class="notic"></p>
  19. </dd>
  20. </dl>
  21. <dl class="row">
  22. <dt class="tit">
  23. <label for="name">角色模板</label>
  24. </dt>
  25. <dd class="opt">
  26. <p><label><input type="radio" name="tmp_role_id" value="-1" />超级管理员</label></p>
  27. {foreach name="admin_role_list" item="role" key="k"}
  28. <p>
  29. <label><input type="radio" name="tmp_role_id" value="{$role.id}" {eq name="$info.id" value="$role.id"}checked{/eq} />{$role.name}</label>
  30. </p>
  31. {/foreach}
  32. </dd>
  33. </dl>
  34. <dl class="row"><dt class="tit"><label><b>权限设置</b></label></dt></dl>
  35. <dl class="row none">
  36. <dt class="tit">
  37. <label for="name">语言权限</label>
  38. </dt>
  39. <dd class="opt">
  40. <label><input type="checkbox" name="language[]" value="cn" {if condition="! empty($info.language) && in_array('cn', $info.language)"} checked="checked"{/if} />简体中文</label>
  41. <span class="err"></span>
  42. <p class="notic"></p>
  43. </dd>
  44. </dl>
  45. <dl class="row">
  46. <dt class="tit">
  47. <label for="name">在线升级</label>
  48. </dt>
  49. <dd class="opt">
  50. <label><input type="checkbox" name="online_update" value="1" {eq name="$info.online_update" value="1"} checked="checked"{/eq} />允许操作</label>
  51. <span class="err"></span>
  52. <p class="notic"></p>
  53. </dd>
  54. </dl>
  55. <dl class="row">
  56. <dt class="tit">
  57. <label for="name">功能地图</label>
  58. </dt>
  59. <dd class="opt">
  60. <label><input type="checkbox" name="switch_map" value="1" {eq name="$info.switch_map" value="1"} checked="checked"{/eq} />允许操作</label>
  61. <span class="err"></span>
  62. <p class="notic"></p>
  63. </dd>
  64. </dl>
  65. <dl class="row" id="dl_only_oneself">
  66. <dt class="tit">
  67. <label for="name">文档权限</label>
  68. </dt>
  69. <dd class="opt">
  70. <label><input type="checkbox" name="only_oneself" value="1" {eq name="$info.only_oneself" value="1"} checked="checked"{/eq} />只允许查看自己发布的文档</label>
  71. <span class="err"></span>
  72. <p class="notic"></p>
  73. </dd>
  74. </dl>
  75. <dl class="row" id="dl_check_oneself">
  76. <dt class="tit">
  77. <label for="name">文档审核</label>
  78. </dt>
  79. <dd class="opt">
  80. <label><input type="checkbox" name="check_oneself" value="1" {eq name="$info.check_oneself" value="1"} checked="checked"{/eq} />发布文档自动通过审核</label>
  81. <span class="err"></span>
  82. <p class="notic"></p>
  83. </dd>
  84. </dl>
  85. <dl class="row">
  86. <dt class="tit">
  87. <label for="name">操作权限</label>
  88. </dt>
  89. <dd class="opt">
  90. <p><label><input type="checkbox" id="select_cud"{if condition="! empty($info.cud) && count($info.cud)>=3"} checked="checked"{/if} />完全控制</label></p>
  91. <p><label><input type="checkbox" name="cud[]" value="add"{if condition="! empty($info.cud) && in_array('add', $info.cud)"} checked="checked"{/if} />添加信息</label></p>
  92. <p><label><input type="checkbox" name="cud[]" value="edit"{if condition="! empty($info.cud) && in_array('edit', $info.cud)"} checked="checked"{/if} />修改信息</label></p>
  93. <p><label><input type="checkbox" name="cud[]" value="del"{if condition="! empty($info.cud) && in_array('del', $info.cud)"} checked="checked"{/if} />删除信息</label></p>
  94. <p><label><input type="checkbox" name="cud[]" value="changetableval"{if condition="! empty($info.cud) && in_array('changetableval', $info.cud)"} checked="checked"{/if} />审核信息</label></p>
  95. <span class="err"></span>
  96. <p class="notic"></p>
  97. </dd>
  98. </dl>
  99. <dl class="row">
  100. <dt class="tit">
  101. <label for="name"><em>*</em>功能权限</label>
  102. </dt>
  103. <dd class="opt">
  104. <p>
  105. <label><input type="checkbox" id="select_all_permission" />全部选择</label>
  106. </p>
  107. {foreach name="modules" item="vo"}
  108. {foreach name="vo.child" item="vo2"}
  109. {if condition="1 == $vo2['is_modules'] AND ! empty($auth_rule_list[$vo2.id])"}
  110. {if condition="1002 == $vo2['id']"}
  111. <div class="admin_poplistdiv">
  112. <h2>{$vo2.name}</h2>
  113. {if condition="! empty($arctype_p_html)"}
  114. <p>
  115. {$arctype_p_html}
  116. </p>
  117. {$arctype_child_html}
  118. {/if}
  119. </div>
  120. {else /}
  121. <div class="admin_poplistdiv">
  122. <h2>{$vo2.name}</h2>
  123. <p>
  124. {foreach name="auth_rule_list[$vo2.id]" item="rule"}
  125. <label><input type="checkbox" name="permission[rules][]" value="{$rule.id}" {if condition="! empty($info.permission.rules) && in_array($rule.id, $info.permission.rules)"} checked="checked"{/if} />{$rule.name}</label>
  126. {/foreach}
  127. </p>
  128. </div>
  129. {/if}
  130. {/if}
  131. {/foreach}
  132. {/foreach}
  133. {if condition="! empty($plugins)"}
  134. <div class="admin_poplistdiv">
  135. <h2>插件应用</h2>
  136. <ul>
  137. {foreach name="plugins" item="plugin"}
  138. <li>
  139. <label><input type="checkbox" name="permission[plugins][{$plugin.code}][code]" value="{$plugin.code}" {if condition="!empty($info.permission.plugins[$plugin['code']]) || !empty($info.permission.plugins[$plugin['code']]['child'])"} checked="checked"{/if} />{$plugin.name}</label>
  140. {php}$config = json_decode($plugin['config'], true);{/php}
  141. {if condition="! empty($config['permission'])"}
  142. <p style="padding-left:10px;">
  143. <span class="button level1 switch center_docu"></span>
  144. {foreach $config['permission'] as $index => $text}
  145. <label><input type="checkbox" name="permission[plugins][{$plugin.code}][child][]" {if condition="! empty($info.permission.plugins[$plugin['code']]['child']) && in_array($index, $info.permission.plugins[$plugin['code']]['child'])"} checked="checked"{/if} value="{$index}" />{$text}</label>
  146. {/foreach}
  147. </p>
  148. {/if}
  149. </li>
  150. {/foreach}
  151. </ul>
  152. </div>
  153. {/if}
  154. </dd>
  155. </dl>
  156. <div class="bot2">
  157. <input type="hidden" name="arctype_str" id="arctype_str" value="">
  158. <a href="JavaScript:void(0);" onclick="postSubmit();" class="ncap-btn-big ncap-btn-green" id="submitBtn">确认提交</a>
  159. </div>
  160. </div>
  161. </form>
  162. </div>
  163. <script type="text/javascript">
  164. var admin_role_list = {$admin_role_list|json_encode};
  165. $(function(){
  166. $('#postForm input[name="tmp_role_id"]').bind('click', function(){
  167. changeRole($(this).val());
  168. });
  169. $(".rolecss").on("click",".arctype_bg",function(){
  170. var acid = $(this).next().find('input').val(), input = 'arctype_child_' + acid;
  171. $('.arctype_child').hide();
  172. if( $(this).attr('class').indexOf('expandable') == -1 ){
  173. $(this).removeClass('collapsable').addClass('expandable');
  174. }else{
  175. $('.arctype_bg').removeClass('collapsable').addClass('expandable');
  176. $(this).removeClass('expandable').addClass('collapsable');
  177. $('#'+input).show();
  178. }
  179. });
  180. //循环判断选中上级
  181. function checked_pid(pid) {
  182. if (0 < $('input[data-pid="'+pid+'"]:checked').length) {
  183. $('.arctype_id_'+pid).prop('checked', 'checked');
  184. var pid1 = $('.arctype_id_'+pid).data('pid');
  185. if (pid1){
  186. checked_pid(pid1);
  187. }
  188. }
  189. return false;
  190. }
  191. //循环判断取消上级
  192. function cancel_pid(pid) {
  193. if (1 > $('#arctype_child_'+pid).find('input[type="checkbox"]:checked').length) {
  194. $('.arctype_id_'+pid).removeAttr('checked');
  195. var pid1 = $('.arctype_id_'+pid).data('pid');
  196. if (pid1){
  197. cancel_pid(pid1);
  198. }
  199. }
  200. return false;
  201. }
  202. $(".rolecss").on("click",".arctype_cbox",function () {
  203. var acid = $(this).val(), input = 'arctype_child_' + acid;
  204. var pid = $(this).data('pid');
  205. var tpid = $(this).data('tpid');
  206. if($(this).prop('checked')){ //选中,所有直系上级全部选中,所有管辖下级选中
  207. checked_pid(pid);
  208. $('#'+input).find('input[type="checkbox"]').prop('checked', 'checked'); //选中所有下级
  209. }else{ //取消,判断同级是否全部为取消状态,取消直系上级
  210. $('#'+input).find('input[type="checkbox"]').removeAttr('checked'); //取消所有下级
  211. cancel_pid(pid);
  212. }
  213. });
  214. $('#select_cud').bind('click', function(){
  215. if($(this).prop('checked')){
  216. $('#postForm input[name^="cud"]').prop('checked', 'checked');
  217. }else{
  218. $('#postForm input[name^="cud"]').removeAttr('checked');
  219. }
  220. });
  221. $('#select_all_permission').bind('click', function(){
  222. if($(this).prop('checked')){
  223. $('#postForm input[name^="permission"]').prop('checked', 'checked');
  224. $('#postForm .arctype_cbox').prop('checked', 'checked');
  225. }else{
  226. $('#postForm input[name^="permission"]').removeAttr('checked');
  227. $('#postForm .arctype_cbox').removeAttr('checked');
  228. }
  229. });
  230. $('#postForm input[name^="permission"],#postForm .arctype_cbox,#postForm input[name^="cud"]').bind('click', function(){
  231. hasSelectAll();
  232. });
  233. hasSelectAll();
  234. });
  235. function hasSelectAll(){
  236. var c = true;
  237. $('#postForm input[name^="permission"],#postForm .arctype_cbox').each(function(idx, ele){
  238. if(! $(ele).prop('checked')){
  239. c = false;
  240. return;
  241. }
  242. });
  243. if(c){
  244. $('#select_all_permission').prop('checked', 'checked');
  245. }else{
  246. $('#select_all_permission').removeAttr('checked');
  247. }
  248. var c = true;
  249. $('#postForm input[name^="cud"]').each(function(idx, ele){
  250. if(! $(ele).prop('checked')){
  251. c = false;
  252. return;
  253. }
  254. });
  255. if(c){
  256. $('#select_cud').prop('checked', 'checked');
  257. }else{
  258. $('#select_cud').removeAttr('checked');
  259. }
  260. }
  261. function changeRole(value){
  262. if (-1 == value) {
  263. $('#postForm input[type="checkbox"]').attr("checked","checked");
  264. // $('#postForm input[name="only_oneself"]').removeAttr('checked');
  265. return;
  266. }
  267. $('#postForm input[type="checkbox"]').removeAttr('checked');
  268. for(var i in admin_role_list){
  269. var item = admin_role_list[i];
  270. if(item.id == value){
  271. if(item.language){
  272. item.language.map(function(row){
  273. $('#postForm input[name^="language"][value="'+row+'"]').prop('checked', 'checked');
  274. });
  275. }
  276. if(item.online_update){
  277. $('#postForm input[name="online_update"]').prop('checked', 'checked');
  278. };
  279. if(item.switch_map){
  280. $('#postForm input[name="switch_map"]').prop('checked', 'checked');
  281. };
  282. // if(item.editor_visual){
  283. // $('#postForm input[name="editor_visual"]').prop('checked', 'checked');
  284. // };
  285. if(item.only_oneself){
  286. $('#postForm input[name="only_oneself"]').prop('checked', 'checked');
  287. };
  288. if(item.check_oneself){
  289. $('#postForm input[name="check_oneself"]').prop('checked', 'checked');
  290. };
  291. if(item.cud){
  292. item.cud.map(function(row){
  293. $('#postForm input[name^="cud"][value="'+row+'"]').prop('checked', 'checked');
  294. });
  295. }
  296. if(item.permission){
  297. for(var p in item.permission){
  298. if(p == 'plugins'){
  299. if(item.permission[p]){
  300. for(var pluginId in item.permission[p]){
  301. $('#postForm input[name="permission['+p+']['+pluginId+'][code]"][value="'+pluginId+'"]').prop('checked', 'checked');
  302. if(item.permission[p][pluginId].child){
  303. item.permission[p][pluginId].child.map(function(row){
  304. $('#postForm input[name="permission['+p+']['+pluginId+'][child][]"][value="'+row+'"]').prop('checked', 'checked');
  305. });
  306. }
  307. }
  308. }
  309. } else if (p == 'arctype') {
  310. item.permission[p].map(function(row){
  311. $('#postForm .arctype_id_'+row).prop('checked', 'checked');
  312. });
  313. }else{
  314. item.permission[p].map(function(row){
  315. $('#postForm input[name="permission['+p+'][]"][value="'+row+'"]').prop('checked', 'checked');
  316. });
  317. }
  318. }
  319. }
  320. hasSelectAll();
  321. break;
  322. }
  323. }
  324. }
  325. function postSubmit(){
  326. if($('#name').val() == '' ){
  327. showErrorMsg('角色名称不能为空!');
  328. $('input[name=name]').focus();
  329. return false;
  330. }
  331. var a = [];
  332. $('input[name^=permission],#postForm .arctype_cbox').each(function(i,o){
  333. if($(o).is(':checked')){
  334. a.push($(o).val());
  335. }
  336. })
  337. if(a.length == 0){
  338. showErrorMsg('请具体分配权限!');
  339. return false;
  340. }
  341. var arctype_arr = new Array();
  342. $(".arctype_cbox:checked").each(function(i){
  343. arctype_arr[i] = $(this).val();
  344. });
  345. var arctype_str = arctype_arr.join(",");
  346. $('#arctype_str').val(arctype_str);
  347. var parentObj = parent.layer.getFrameIndex(window.name); //先得到当前iframe层的索引
  348. layer_loading('正在处理');
  349. {lt name="$Request.param.iframe" value="1"}
  350. $.ajax({
  351. type : 'post',
  352. url : "{:url('AuthRole/edit', ['_ajax'=>1])}",
  353. data : $('#postForm').serialize(),
  354. dataType : 'json',
  355. success : function(res){
  356. layer.closeAll();
  357. if(res.code == 1){
  358. var _parent = parent;
  359. _parent.layer.close(parentObj);
  360. _parent.layer.msg(res.msg, {shade: layer_shade, time: 1000}, function(){
  361. _parent.window.location.reload();
  362. });
  363. }else{
  364. showErrorMsg(res.msg);
  365. }
  366. },
  367. error: function(e){
  368. layer.closeAll();
  369. layer.alert(e.responseText, {icon: 5, title:false});
  370. }
  371. });
  372. {else /}
  373. $.ajax({
  374. url: "{:url('AuthRole/edit', ['_ajax'=>1])}",
  375. type: 'POST',
  376. dataType: 'JSON',
  377. data: $('#postForm').serialize(),
  378. success: function(res){
  379. layer.closeAll();
  380. if (res.code == 1) {
  381. var str = '<p><label><input type="radio" name="role_id" value="'+res.data.role_id+'" checked="checked" />'+res.data.role_name+'</label></p>';
  382. parent.custom_role(str);
  383. parent.layer.close(parentObj);
  384. parent.layer.msg(res.msg, {shade: layer_shade, time: 1000});
  385. } else {
  386. parent.showErrorMsg(res.msg);
  387. }
  388. return false;
  389. },
  390. error: function(e){
  391. layer.closeAll();
  392. layer.msg('操作失败', {icon:5, time:1500});
  393. return false;
  394. }
  395. });
  396. {/lt}
  397. }
  398. </script>
  399. {include file="public/footer" /}