c616677bd5126247b3f97e52afbfaea2.php 5.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <?php if (!defined('THINK_PATH')) exit();?><div class="bjui-pageContent">
  2. <form action="/jdxf/admin1.php<?php echo ($action); ?>" data-toggle="ajaxform" data-options="{closeCurrent:true}" >
  3. <input type="hidden" name="id" value="<?php echo ($Userlist["id"]); ?>">
  4. <div class="pageFormContent" data-layout-h="0" style="overflow: auto;">
  5. <table class="table table-condensed table-hover" width="100%">
  6. <tbody>
  7. <tr><td>
  8. <label for="j_title" class="control-label x85">登录账号:</label>
  9. <input type="text" size="25" disabled="" name="usernames" value="<?php echo ($Userlist["username"]); ?>" class="form-control" >
  10. <span style="color:red;" >*</span>
  11. </td></tr>
  12. <tr><td>
  13. <label for="j_title" class="control-label x85">登录密码:</label>
  14. <input type="password" size="25" name="password" value="<?php echo ($Userlist["password"]); ?>" class="form-control" >
  15. <span style="color:red;" >*</span>
  16. </td></tr>
  17. <tr><td>
  18. <label for="j_title" class="control-label x85">确认密码:</label>
  19. <input type="password" size="25" name="repassword" value="<?php echo ($Userlist["password"]); ?>" class="form-control" >
  20. <span style="color:red;" >*</span>
  21. </td></tr>
  22. <tr><td>
  23. <label for="j_title" class="control-label x85">真实姓名:</label>
  24. <input type="text" size="25" name="truename" value="<?php echo ($Userlist["truename"]); ?>" class="form-control" >
  25. <span style="color:red;" >*</span>
  26. </td></tr>
  27. <!--<tr><td>
  28. <label class="control-label x85">座席号:</label>
  29. <input type="text" size="25" name="agentid" data-rule="number" value="<?php echo ($Userlist["agentid"]); ?>" data-width="250" class="form-control" >
  30. <span style="color:red;" >*</span>
  31. </td></tr>-->
  32. <tr><td>
  33. <label class="control-label x85">部门:</label>
  34. <input type="text" name="depname" data-toggle="selectztree" value="<?php echo ($Userlist["depname"]); ?>" size="20" data-tree="#gtree_ue" readonly > <span style="color:red;" >*</span>
  35. <ul id="gtree_ue" class="ztree hide" data-toggle="ztree" data-expand-all="true" data-check-enable="true"
  36. data-chk-style="radio" data-radio-type="all" data-on-check="ztrCheck" data-on-click="ztrClick">
  37. <?php if(is_array($group)): $i = 0; $__LIST__ = $group;if( count($__LIST__)==0 ) : echo "" ;else: foreach($__LIST__ as $key=>$gvo): $mod = ($i % 2 );++$i;?><li data-id="<?php echo ($gvo["id"]); ?>" data-pid="<?php echo ($gvo["pid"]); ?>"><?php echo ($gvo["title"]); ?></li><?php endforeach; endif; else: echo "" ;endif; ?>
  38. </ul>
  39. </td></tr>
  40. <tr><td>
  41. <label class="control-label x85">角色:</label>
  42. <input type="text" name="posname" data-toggle="selectztree" value="<?php echo ($Userlist["posname"]); ?>" size="20" data-tree="#tree_ue" readonly > <span style="color:red;" >*</span>
  43. <ul id="tree_ue" class="ztree hide" data-toggle="ztree" data-expand-all="true" data-check-enable="true"
  44. data-chk-style="radio" data-radio-type="all" data-on-check="ztrCheck" data-on-click="ztrClick">
  45. <?php if(is_array($role)): $i = 0; $__LIST__ = $role;if( count($__LIST__)==0 ) : echo "" ;else: foreach($__LIST__ as $key=>$vo): $mod = ($i % 2 );++$i;?><li data-id="<?php echo ($vo["id"]); ?>" data-pid="<?php echo ($vo["pid"]); ?>"><?php echo ($vo["title"]); ?></li><?php endforeach; endif; else: echo "" ;endif; ?>
  46. </ul>
  47. </td></tr>
  48. <!--<tr><td>
  49. <label class="control-label x85">分机:</label>
  50. <input type="text" name="extension" value="<?php echo ($Userlist["extension"]); ?>" data-toggle="selectztree" size="20" > <span style="color:red;" >*</span>
  51. </td></tr>-->
  52. <tr><td>
  53. <label class="control-label x85">移动电话:</label>
  54. <input type="text" size="25" name="phone" value="<?php echo ($Userlist["phone"]); ?>" data-rule="mobile" data-width="250" class="form-control" >
  55. </td></tr>
  56. <tr><td>
  57. <label class="control-label x85">电子邮箱:</label>
  58. <input type="text" size="25" name="email" value="<?php echo ($Userlist["email"]); ?>" data-rule="email" data-width="250" class="form-control" >
  59. </td></tr>
  60. <tr><td>
  61. <label class="control-label x85">家庭住址:</label>
  62. <input type="text" size="25" name="address" value="<?php echo ($Userlist["address"]); ?>" data-width="250" class="form-control" >
  63. </td></tr>
  64. </tbody>
  65. </table>
  66. </div>
  67. </div>
  68. <div class="bjui-pageFooter">
  69. <ul>
  70. <li><button type="button" class="btn-close" data-icon="close">取消</button></li>
  71. <li><button type="submit" class="btn-default" data-icon="save">保存</button></li>
  72. </ul>
  73. </div>
  74. </from>