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.

users_header.htm 4.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. <!-- 头像上传 -->
  2. <div id="update_mobile_file" style="display: none;">
  3. <form id="form1" style="text-align: center;" >
  4. <input type="button" value="点击上传" onclick="up_f.click();" class="btn btn-primary"/><br>
  5. <p><input type="file" id="up_f" name="up_f" onchange="MobileHeadPic();" style="display:none"/></p>
  6. </form>
  7. </div>
  8. <script type="text/javascript">
  9. function MobileHeadPic(){
  10. $.getScript('__ROOT_DIR__/public/plugins/layer_mobile/layer.js?v={$version}', function(){
  11. // 提示信息,2秒自动关闭
  12. function MsgOpen(msgs){
  13. layer.open({
  14. content: msgs,
  15. skin: 'msg',
  16. time: 2,
  17. });
  18. }
  19. // 提示信息,估计在底部提示,点击空白处关闭
  20. function FooterOpen(msgs){
  21. layer.open({
  22. content: msgs,
  23. skin: 'footer',
  24. });
  25. }
  26. // 提示动画
  27. function LoaDing(){
  28. var loading = layer.open({
  29. type:2,
  30. content: '正在处理',
  31. });
  32. return loading;
  33. }
  34. UpdateMobileHeadPic();
  35. // 移动端更换头像
  36. function UpdateMobileHeadPic()
  37. {
  38. // 正在处理提示动画
  39. var loading = LoaDing();
  40. // 获取表单对象
  41. var data = new FormData($('#form2')[0]);
  42. // 上传类型
  43. var UpFileType = $('#UpFileType').val();
  44. $.ajax({
  45. url: "{eyou:url link='user/Uploadify/imageUp' vars='savepath=allimg&pictitle=head_pic&dir=images'/}",
  46. type: 'post',
  47. data: data,
  48. dataType: 'json',
  49. cache: false,
  50. processData: false,
  51. contentType: false,
  52. success:function(res){
  53. if (res.state == 'SUCCESS') {
  54. layer.closeAll();
  55. MsgOpen('上传成功!');
  56. if (1 == UpFileType) {
  57. parent.$("#litpic_inpiut").val(res.url);
  58. parent.$("#litpic_img").attr('src', res.url);
  59. }else{
  60. MobileHeadPic(res.url);
  61. }
  62. }else{
  63. layer.close(loading);
  64. MsgOpen(res.state);
  65. }
  66. },
  67. error : function(e) {
  68. layer.close(loading);
  69. FooterOpen(e.responseText);
  70. }
  71. });
  72. };
  73. // 上传头像成功后加载到页面
  74. function MobileHeadPic(fileurl_tmp)
  75. {
  76. $("#head_pic").val(fileurl_tmp);
  77. $("#head_pic_a").attr('src', fileurl_tmp);
  78. // 正在处理提示动画
  79. var loading = LoaDing();
  80. $.ajax({
  81. url: "{eyou:url link='user/Users/edit_users_head_pic'/}",
  82. data: {filename:fileurl_tmp},
  83. type:'post',
  84. dataType:'json',
  85. success:function(res){
  86. if (1 == res.code) {
  87. layer.closeAll();
  88. MsgOpen(res.msg);
  89. } else {
  90. layer.close(loading);
  91. MsgOpen(res.msg);
  92. }
  93. }
  94. });
  95. }
  96. })
  97. }
  98. </script>
  99. <!-- 头像上传结束 -->
  100. <!-- 头像默认更换路径 -->
  101. <script type="text/javascript">
  102. var GetUploadify_url = "{eyou:url link='user/Uploadify/upload' /}";
  103. </script>