No Description
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.

article_images_add.htm 5.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. <div class="item-from-row" id="tupianji">
  2. <div class="from-row-l">
  3. <label>图片集:</label>
  4. </div>
  5. <div class="from-row-r">
  6. <div class="images_upload_main" id="tab_imgupload">
  7. <!-- <a href="javascript:void(0);" onClick="GetUploadify(30,'','allimg','imgupload_call_back');" class="el-button el-button--primary is-plain el-button--small" title="拖动修改排序">
  8. <i class="el-icon-picture"></i>上传图片
  9. </a> -->
  10. <div class="sort-list mt10 images_upload_list" style="display: none;">
  11. <div class="images_upload"></div>
  12. </div>
  13. <a href="javascript:void(0);" onClick="GetUploadify(30,'','allimg','imgupload_call_back');" class="img-upload" title="点击上传">
  14. <div class="y-line"></div>
  15. <div class="x-line"></div>
  16. </a>
  17. </div>
  18. <!-- 上传图片显示的样板 start -->
  19. <div class="images_upload_tpl" style="display: none;">
  20. <div class="images_upload">
  21. <div class="images_upload_item">
  22. <input type="hidden" name="imgupload[]" value="" />
  23. <a href="javascript:void(0);" onClick="" title="拖动修改排序">
  24. <img src="__STATIC__/admin/images/add-button.jpg" width="120" height="120" />
  25. </a>
  26. <a href="javascript:void(0)" class="delete" title="删除">&nbsp;&nbsp;</a>
  27. </div>
  28. <textarea rows="5" cols="60" name="imgintro[]" style="height:28px; width: 120px;" placeholder="图片注释" ></textarea>
  29. </div>
  30. </div>
  31. <!-- 上传图片显示的样板 end -->
  32. </div>
  33. </div>
  34. <script type="text/javascript">
  35. // 单图上传 2021.01.05
  36. function upload_single_pic_1609837252(e,input_id){
  37. var file = $(e)[0].files[0];
  38. if (!file) {
  39. return false;
  40. }
  41. var formData = new FormData();
  42. formData.append('file',file);
  43. formData.append('_ajax',1);
  44. layer_loading('正在处理');
  45. $.ajax({
  46. type: 'post',
  47. url: eyou_basefile + "?m=user&c=Uploadify&a=imageUp",
  48. data: formData,
  49. contentType: false,
  50. processData: false,
  51. dataType: 'json',
  52. success: function (res) {
  53. if (res.state == 'SUCCESS') {
  54. $("#single_pic_input_"+input_id).val(res.url)
  55. $(".img1_"+input_id).attr('src',res.url);
  56. layer.closeAll();
  57. } else {
  58. layer.closeAll();
  59. showErrorAlert(res.state);
  60. }
  61. },
  62. error : function(e) {
  63. layer.closeAll();
  64. showErrorAlert(e.responseText);
  65. }
  66. })
  67. }
  68. function img_call_back(fileurl_tmp)
  69. {
  70. $("#litpic_local").val(fileurl_tmp);
  71. $("#img_a").attr('href', fileurl_tmp);
  72. $("#img_i").attr('onmouseover', "layer_tips=layer.tips('<img src="+fileurl_tmp+" class=\\'layer_tips_img\\'>',this,{tips: [1, '#fff']});");
  73. $("input[name=is_litpic]").attr('checked', true); // 自动勾选属性[图片]
  74. }
  75. // 上传图集相册回调函数
  76. function imgupload_call_back(paths){
  77. var last_div = $(".images_upload_tpl").html();
  78. // var last_div = $(".images_upload:last").prop("outerHTML");
  79. for (var i=0;i<paths.length ;i++ )
  80. {
  81. $(".images_upload:eq(0)").before(last_div); // 插入一个 新图片
  82. $(".images_upload:eq(0)").find('a:eq(0)').attr('href',paths[i]).attr('onclick','').attr('target', "_blank");// 修改他的链接地址
  83. $(".images_upload:eq(0)").find('img').attr('src',paths[i]);// 修改他的图片路径
  84. $(".images_upload:eq(0)").find('a:eq(1)').attr('onclick',"ClearPicArr2(this,'"+paths[i]+"')").text('');
  85. $(".images_upload:eq(0)").find('input').val(paths[i]); // 设置隐藏域 要提交的值
  86. }
  87. if ($("#tab_imgupload input[type=hidden]").length > 0) {
  88. $('#tab_imgupload .images_upload_list').show();
  89. }
  90. }
  91. /*
  92. * 上传之后删除组图input
  93. * @access public
  94. * @val string 删除的图片input
  95. */
  96. function ClearPicArr2(obj,path)
  97. {
  98. // 删除数据库记录
  99. $.ajax({
  100. type:'POST',
  101. url:"{:url('user/UsersRelease/del_channelimgs', ['_ajax'=>1])}",
  102. data:{filename:path},
  103. success:function(){
  104. $(obj).parent().parent().remove(); // 删除完服务器的, 再删除 html上的图片
  105. if ($("#tab_imgupload input[type=hidden]").length == 0) {
  106. $('#tab_imgupload .images_upload_list').hide();
  107. }
  108. $.ajax({
  109. type:'POST',
  110. url:"{:url('Uploadify/delupload', ['_ajax'=>1])}",
  111. data:{action:"del", filename:path},
  112. success:function(){}
  113. });
  114. }
  115. });
  116. }
  117. /** 以下 图集相册的拖动排序相关 js*/
  118. $( ".sort-list" ).sortable({
  119. start: function( event, ui) {
  120. }
  121. ,stop: function( event, ui ) {
  122. }
  123. });
  124. //因为他们要拖动,所以尽量设置他们的文字不能选择。
  125. $( ".sort-list" ).disableSelection();
  126. </script>