Nessuna descrizione
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

users_left.htm 2.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {eyou:eq name='is_mobile' value='2'}
  2. {eyou:static file="/public/plugins/layer-v3.1.0/layer.js"/}
  3. <script type="text/javascript">
  4. // 头像加载
  5. function head_pic_call_back(fileurl_tmp)
  6. {
  7. $("#head_pic").val(fileurl_tmp);
  8. $("#head_pic_a").attr('src', fileurl_tmp);
  9. layer_loading('正在处理');
  10. $.ajax({
  11. url: "{eyou:url link='user/Users/edit_users_head_pic'/}",
  12. data: {filename:fileurl_tmp},
  13. type:'post',
  14. dataType:'json',
  15. success:function(res){
  16. if (1 == res.code) {
  17. layer.msg(res.msg, {icon:6, time:1500});
  18. } else {
  19. layer.closeAll();
  20. showErrorAlert(res.msg);
  21. }
  22. }
  23. });
  24. }
  25. </script>
  26. <div class="col-sm-2 sidebar panel" >
  27. <div class="sidebar-box">
  28. <div class="sidebar-header d-flex align-items-center">
  29. <div class="avatar">
  30. <a href="javascript:void(0);">
  31. <img id="head_pic_a" class="img-fluid rounded-circle" style="width: 100%;" src="{$users.head_pic|get_head_pic=###}" {eyou:eq name='is_mobile' value='1'} onClick="GetUploadify_mobile(1)" {eyou:else/} onClick="GetUploadify(1,'','allimg','head_pic_call_back')" {/eyou:eq}/>
  32. </a>
  33. <input type="hidden" name="head_pic" id="head_pic" value="{$users.head_pic}">
  34. </div>
  35. <div class="title">
  36. <h1 class="h4">{$nickname}</h1>
  37. <p>{$users.level_name}</p>
  38. </div>
  39. </div>
  40. <div class="list-group">
  41. <!-- 扩展菜单 -->
  42. {eyou:include file="/public/static/template/users/users_leftmenu.htm" /}
  43. <!-- 扩展菜单 -->
  44. </div>
  45. </div>
  46. </div>
  47. {/eyou:eq}