Нема описа
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_edit.htm 6.3KB

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