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.

upload.js 20KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569
  1. // 当前窗口的对象
  2. var parentObj = parent.layer.getFrameIndex(window.name);
  3. /*----------------------------- 图片目录的树形结构 start ----------------------------------*/
  4. var zNodes;
  5. var myLayout;
  6. jQuery(document).ready(function () {
  7. myLayout = jQuery("body").layout({
  8. /* 全局配置 */
  9. closable: false /* 是否显示点击关闭隐藏按钮*/
  10. , resizable: true /* 是否允许拉动*/
  11. , maskContents: true /* 加入此参数,框架内容页就可以拖动了*/
  12. /* 顶部配置 */
  13. , north__spacing_open: 0 /* 顶部边框大小*/
  14. /* 底部配置 */
  15. , south__spacing_open: 0 /* 底部边框大小*/
  16. , west__spacing_open: 0 /* 左部边框大小*/
  17. , east__spacing_open: 1 /* 右部边框大小*/
  18. /* some pane-size settings*/
  19. , west__minSize: 140 /*左侧最小宽度*/
  20. , west__maxSize: 143 /*左侧最大宽度*/
  21. /* 左侧配置 */
  22. , west__slidable: false
  23. , west__animatePaneSizing: false
  24. , west__fxSpeed_size: "slow" /* 'fast' animation when resizing west-pane*/
  25. , west__fxSpeed_open: 1000 /* 1-second animation when opening west-pane*/
  26. , west__fxSettings_open: { easing: "easeOutBounce" } // 'bounce' effect when opening*/
  27. , west__fxName_close: "none" /* NO animation when closing west-pane*/
  28. , stateManagement__enabled: false /*是否读取cookies*/
  29. , showDebugMessages: false ,
  30. });
  31. });
  32. var setting = {
  33. view:{
  34. dblClickExpand:false
  35. ,showLine:true
  36. // ,showIcon: false
  37. },
  38. data:{
  39. simpleData:{
  40. enable:true
  41. }
  42. },
  43. callback:{
  44. beforeExpand:beforeExpand
  45. ,onExpand:onExpand
  46. ,onClick:onClick
  47. }
  48. };
  49. var curExpandNode=null;
  50. function beforeExpand(treeId,treeNode) {
  51. var pNode=curExpandNode?curExpandNode.getParentNode():null;
  52. var treeNodeP=treeNode.parentTId?treeNode.getParentNode():null;
  53. var zTree=$.fn.zTree.getZTreeObj("tree");
  54. for(var i=0,l=!treeNodeP?0:treeNodeP.children.length;i<l; i++){
  55. if(treeNode!==treeNodeP.children[i]){zTree.expandNode(treeNodeP.children[i],false);}
  56. };
  57. while (pNode){
  58. if(pNode===treeNode){break;}
  59. pNode=pNode.getParentNode();
  60. };
  61. if(!pNode){singlePath(treeNode);}
  62. };
  63. function singlePath(newNode) {
  64. if (newNode === curExpandNode) return;
  65. if (curExpandNode && curExpandNode.open==true) {
  66. var zTree = $.fn.zTree.getZTreeObj("tree");
  67. if (newNode.parentTId === curExpandNode.parentTId) {
  68. zTree.expandNode(curExpandNode, false);
  69. } else {
  70. var newParents = [];
  71. while (newNode) {
  72. newNode = newNode.getParentNode();
  73. if (newNode === curExpandNode) {
  74. newParents = null;
  75. break;
  76. } else if (newNode) {
  77. newParents.push(newNode);
  78. }
  79. }
  80. if (newParents!=null) {
  81. var oldNode = curExpandNode;
  82. var oldParents = [];
  83. while (oldNode) {
  84. oldNode = oldNode.getParentNode();
  85. if (oldNode) {
  86. oldParents.push(oldNode);
  87. }
  88. }
  89. if (newParents.length>0) {
  90. zTree.expandNode(oldParents[Math.abs(oldParents.length-newParents.length)-1], false);
  91. } else {
  92. zTree.expandNode(oldParents[oldParents.length-1], false);
  93. }
  94. }
  95. }
  96. }
  97. curExpandNode = newNode;
  98. };
  99. function onExpand(event,treeId,treeNode){curExpandNode=treeNode;};
  100. function onClick(e,treeId,treeNode){
  101. // var zTree=$.fn.zTree.getZTreeObj("tree");
  102. // zTree.expandNode(treeNode,null,null,null,true);
  103. }
  104. function get_treedir(selectType)
  105. {
  106. $.ajax({
  107. type : 'get',
  108. url : eyou_basefile + "?m="+module_name+"&c=Uploadimgnew&a=ajax_get_treedir&lang=" + __lang__,
  109. data : {num:num, _ajax:1},
  110. dataType : 'json',
  111. beforeSend: function(xhr){
  112. $('#tree').html('<div style="text-align: center;"><img src="'+__root_dir__+'/public/static/common/images/loading.gif" style="width: 15px;"></div>');
  113. },
  114. success : function(res){
  115. $('#tree').html('');
  116. zNodes = JSON.parse(res.data.zNodes);
  117. $.fn.zTree.init($("#tree"),setting, zNodes);
  118. $(".ui-layout-north li:first-child").click();
  119. if (2 == selectType) {
  120. var src = '';
  121. var treeCurObj = $('#tree a.curSelectedNode');
  122. if (treeCurObj.length == 1) {
  123. src = treeCurObj.attr('href');
  124. } else {
  125. src = $('#tree_1_a').attr('href');
  126. }
  127. $('#content_body').attr('src', src);
  128. }
  129. },
  130. error: function(e){
  131. showErrorMsg(e.responseText);
  132. }
  133. });
  134. }
  135. $(function(){
  136. // get_treedir(0);
  137. // $.fn.zTree.init($("#tree"),setting,zNodes);
  138. // $(".ui-layout-north li:first-child").click();
  139. });
  140. /*----------------------------- 图片目录的树形结构 end ----------------------------------*/
  141. var init_treedir = 0;
  142. $(function(){
  143. // 左侧分组、图片目录选项卡切换
  144. $('#tab>li').click(function(){
  145. if (!$(this).hasClass('active')) {
  146. var value = $(this).data('value');
  147. $('#container>div').hide();
  148. $('#container>div#content'+value).show();
  149. $('#tab>li').removeClass('active');
  150. $(this).addClass('active');
  151. $.cookie("img_id_upload", ""); // 清除选中的图片
  152. $.cookie("imgname_id_upload", "");
  153. if (1 == value) {
  154. var type_id = $('#input_type_id').val();
  155. $('#typename_'+type_id).trigger("click");
  156. } else if (2 == value) {
  157. if (0 == init_treedir) {
  158. get_treedir(2);
  159. init_treedir = 1;
  160. } else {
  161. var src = '';
  162. var treeCurObj = $('#tree a.curSelectedNode');
  163. if (treeCurObj.length == 1) {
  164. src = treeCurObj.attr('href');
  165. } else {
  166. src = $('#tree_1_a').attr('href');
  167. }
  168. $('#content_body').attr('src', src);
  169. }
  170. }
  171. }
  172. });
  173. // 分组列表
  174. // $(".upload-group-con").scrollBar({
  175. // barWidth: 4,
  176. // position: "y",
  177. // wheelDis: 15
  178. // });
  179. // 远程图片切换
  180. $("#tiqu").click(function() {
  181. $('#input_top_tab').val('tiqu');
  182. // $.cookie("img_id_upload", "");
  183. // $("#file_list li").each(function() {
  184. // var val = $(this).attr("data-img");
  185. // indx = arrimg.indexOf(val);
  186. // if (indx != -1) $(this).removeClass('up-over');
  187. // arrimg.splice(indx, 1);
  188. // });
  189. });
  190. // 切换本地图片时清空远程图片链接
  191. $("#bendi").click(function() {
  192. $('input[name=imgremoteurl]').val('');
  193. $('#input_top_tab').val('bendi');
  194. });
  195. // 远程图片链接
  196. $('input[name=imgremoteurl]').on('input', function(e) {
  197. // var val = $('input[name=imgremoteurl]').val();
  198. // arrimg.push(val);
  199. });
  200. // 确定选中图片
  201. $(".layui-btn-yes").click(function() {
  202. var fileurl_tmp = [];
  203. var filename_tmp = [];
  204. if (callback != "undefined") {
  205. var arrimg = new Array();
  206. var arrimgname = new Array();
  207. var input_top_tab = $('#input_top_tab').val();
  208. var imgremoteurl = $.trim($('input[name=imgremoteurl]').val());
  209. var errmsg = '';
  210. if ('tiqu' == input_top_tab) { // 不提取图片,而直接点击确定,获取远程图片地址
  211. if (imgremoteurl == '') {
  212. errmsg = '请输入图片地址!';
  213. } else {
  214. arrimg.push(imgremoteurl);
  215. arrimgname.push("");
  216. }
  217. }
  218. else {
  219. var img_id_upload = $.cookie("img_id_upload");
  220. if (undefined != img_id_upload && img_id_upload.length > 0) {
  221. arrimg = img_id_upload.split(",");
  222. if ('uploadImgProimgCallBack' === String(callback)) {
  223. if (arrimg.length > 6) {
  224. layer.msg('本次最多允许选择6张', {icon: 5, time: 1500});
  225. return false;
  226. } else {
  227. $.cookie("img_id_upload", "");
  228. }
  229. } else {
  230. $.cookie("img_id_upload", "");
  231. }
  232. }
  233. var imgname_id_upload = $.cookie("imgname_id_upload");
  234. if (undefined != imgname_id_upload && imgname_id_upload.length > 0) {
  235. arrimgname = imgname_id_upload.split(",");
  236. $.cookie("imgname_id_upload", "");
  237. }
  238. errmsg = '请至少选择一张图片!';
  239. }
  240. if (num > 1) {
  241. $.each(arrimg, function(index, item) {
  242. fileurl_tmp[index] = item;
  243. });
  244. $.each(arrimgname, function(index, item) {
  245. filename_tmp[index] = item;
  246. });
  247. } else {
  248. if ($.isArray(arrimg)) {
  249. fileurl_tmp = arrimg[0];
  250. } else {
  251. fileurl_tmp = arrimg;
  252. }
  253. if ($.isArray(arrimgname)) {
  254. filename_tmp = arrimgname[0];
  255. } else {
  256. filename_tmp = arrimgname;
  257. }
  258. }
  259. // 防止图片上传过程中用户点击确定,导致获取图片失败 by 小虎哥
  260. if (fileurl_tmp == undefined || fileurl_tmp.length == 0) {
  261. if ('tiqu' == input_top_tab) {
  262. $('input[name=imgremoteurl]').focus();
  263. }
  264. layer.msg(errmsg, {icon: 5,time: 1500});
  265. return false;
  266. }
  267. // 记录最近使用图片
  268. var images_array = [];
  269. if ($.isArray(arrimg)) {
  270. images_array = arrimg;
  271. } else {
  272. images_array = [arrimg];
  273. }
  274. $.ajax({
  275. type:'POST',
  276. url:eyou_basefile + "?m="+module_name+"&c=Uploadimgnew&a=update_pic&lang=" + __lang__,
  277. data:{images_array:images_array, _ajax:1},
  278. success: function(res) {
  279. }
  280. });
  281. // 加载解析方法
  282. var evaljs = '';
  283. evaljs += 'if (undefined != window.top.$("iframe#workspace")[0]) {'; // 一级框架内,比如:栏目管理
  284. evaljs += ' if (undefined != window.top.$("iframe#workspace")[0].contentWindow.$("iframe#content_body")[0]) {'; // 二级框架,比如:内容管理框架
  285. evaljs += ' if (undefined != window.top.$("iframe#workspace")[0].contentWindow.$("iframe#content_body")[0].contentWindow.$("iframe[name^=layui-layer-iframe]")[0]) {'; // 内容管理的下一级框架
  286. evaljs += ' console.log(1);window.top.$("iframe#workspace")[0].contentWindow.$("iframe#content_body")[0].contentWindow.$("iframe[name^=layui-layer-iframe]")[0].contentWindow.'+callback+'(fileurl_tmp,filename_tmp)';
  287. evaljs += ' } else {';
  288. evaljs += ' console.log(2);window.top.$("iframe#workspace")[0].contentWindow.$("iframe#content_body")[0].contentWindow.'+callback+'(fileurl_tmp,filename_tmp)';
  289. evaljs += ' }';
  290. evaljs += ' } else {'; // 二级的layer框架里,比如:广告管理的新增广告,是额外弹出一个 layer.open
  291. evaljs += ' if (undefined != window.top.$("iframe#workspace")[0].contentWindow.$("iframe[name^=layui-layer-iframe]")[0]) {'; // 二级框架,新增广告
  292. evaljs += ' console.log(3);window.top.$("iframe#workspace")[0].contentWindow.$("iframe[name^=layui-layer-iframe]")[0].contentWindow.'+callback+'(fileurl_tmp,filename_tmp)';
  293. evaljs += ' } else {';
  294. evaljs += ' console.log(4);window.top.$("iframe#workspace")[0].contentWindow.'+callback+'(fileurl_tmp,filename_tmp)';
  295. evaljs += ' }';
  296. evaljs += ' }';
  297. evaljs += '} else {';
  298. evaljs += ' console.log(5);window.parent.'+callback+'(fileurl_tmp,filename_tmp)';
  299. evaljs += '}';
  300. eval(evaljs);
  301. if ('uploadImgProimgCallBack' !== String(callback)) {
  302. window.parent.layer.closeAll();
  303. }
  304. // eval('window.parent.'+callback+'(fileurl_tmp,filename_tmp)');
  305. return;
  306. } else {
  307. showErrorMsg('图片地址不能为空!');
  308. }
  309. if ('uploadImgProimgCallBack' !== String(callback)) {
  310. window.parent.layer.closeAll();
  311. }
  312. });
  313. // 关闭图片选择框
  314. $(".layui-btn-off").click(function(){
  315. $.cookie("img_id_upload", "");
  316. $.cookie("imgname_id_upload", "");
  317. if ('uploadImgProimgCallBack' !== String(callback)) {
  318. window.parent.layer.closeAll();
  319. }
  320. });
  321. });
  322. // 远程图片本地化
  323. function remote_to_imglocal() {
  324. var imgremoteurl = $.trim($('input[name=imgremoteurl]').val());
  325. if (imgremoteurl == '') {
  326. showErrorMsg('图片地址不能为空!');
  327. $('input[name=imgremoteurl]').focus();
  328. return false;
  329. } else {
  330. if (!checkURL(imgremoteurl)) {
  331. showErrorMsg('请输入有效的图片地址!');
  332. $('input[name=imgremoteurl]').focus();
  333. return false;
  334. }
  335. }
  336. var arrimg = new Array();
  337. var arrimgname = new Array();
  338. if (num > 1) {
  339. var img_id_upload_tmp = $.cookie("img_id_upload");
  340. if (undefined != img_id_upload_tmp && img_id_upload_tmp.length > 0) {
  341. arrimg = img_id_upload_tmp.split(",");
  342. } else {
  343. arrimg = [];
  344. }
  345. var imgname_id_upload_tmp = $.cookie("imgname_id_upload");
  346. if (undefined != imgname_id_upload_tmp && imgname_id_upload_tmp.length > 0) {
  347. arrimgname = imgname_id_upload_tmp.split(",");
  348. } else {
  349. arrimgname = [];
  350. }
  351. }
  352. var type_id = $('#input_type_id').val();
  353. layer_loading('提取中');
  354. $.ajax({
  355. type: 'POST',
  356. url : eyou_basefile + "?m="+module_name+"&c=Uploadimgnew&a=ajax_remote_to_imglocal&lang=" + __lang__,
  357. data: {imgremoteurl: imgremoteurl, type_id: type_id, _ajax: 1},
  358. dataType: "JSON",
  359. success: function(res) {
  360. layer.closeAll();
  361. if (res.code == 1) {
  362. arrimg.push(res.data.image_url);
  363. $.cookie("img_id_upload", arrimg.join());
  364. arrimgname.push(res.data.title);
  365. $.cookie("imgname_id_upload", arrimgname.join());
  366. layer.msg(res.msg, {icon: 6, time: 1000}, function() {
  367. $('#bendi').trigger("click");
  368. $('#li_tag_item_group').trigger("click");
  369. $('#typename_'+type_id).trigger("click");
  370. });
  371. } else {
  372. showErrorMsg(res.msg);
  373. }
  374. },
  375. error: function(e) {
  376. layer.closeAll();
  377. showErrorAlert(e.responseText);
  378. }
  379. });
  380. }
  381. //同步旧数据
  382. function syn_old_imgdata(is_estop)
  383. {
  384. if (is_estop) {
  385. event.stopPropagation(); // 阻止事件冒泡
  386. }
  387. var index = layer.open({
  388. type: 2,
  389. title: '开始同步',
  390. area: ['500px', '300px'],
  391. fix: false,
  392. maxmin: false,
  393. content: eyou_basefile + "?m="+module_name+"&c=Uploadimgnew&a=site&lang=" + __lang__,
  394. end: function(){
  395. window.location.reload();
  396. }
  397. });
  398. }
  399. /**
  400. * 切换分组
  401. * @param {[type]} obj [description]
  402. * @return {[type]} [description]
  403. */
  404. function openIframes(obj)
  405. {
  406. $('#input_type_id').val($(obj).data('type_id'));
  407. $('#content1>.upload-group-con .group-item').removeClass('active');
  408. $(obj).parent().parent().addClass('active');
  409. var src = $(obj).data('src');
  410. $('#content_body').attr('src', src);
  411. }
  412. // 新增分组
  413. function addcate(obj) {
  414. layer.prompt({
  415. title: '添加分组'
  416. }, function(val, index) {
  417. layer_loading('正在处理');
  418. $.ajax({
  419. type: 'post',
  420. url : eyou_basefile + "?m="+module_name+"&c=Uploadimgnew&a=Addtype&lang=" + __lang__,
  421. data: {upload_type: val, _ajax: 1},
  422. dataType: 'json',
  423. success: function (res) {
  424. layer.closeAll();
  425. if (res.code == 1) {
  426. layer.msg(res.msg, {icon: 6, time: 1000}, function() {
  427. window.location.reload();
  428. });
  429. } else {
  430. layer.msg(res.msg, {icon: 5});
  431. }
  432. },
  433. error : function(e) {
  434. layer.closeAll();
  435. showErrorAlert(e.responseText);
  436. }
  437. });
  438. layer.close(index);
  439. });
  440. }
  441. // 编辑分组
  442. function editcate(obj, type_id) {
  443. layer.prompt({
  444. title: '编辑分组',
  445. value: $('#typename_' + type_id).html(),
  446. }, function(val, index) {
  447. layer_loading('正在处理');
  448. $.ajax({
  449. type: 'post',
  450. url : eyou_basefile + "?m="+module_name+"&c=Uploadimgnew&a=EditType&lang=" + __lang__,
  451. data: {upload_type: val, type_id: type_id, _ajax: 1},
  452. dataType: 'json',
  453. success: function (res) {
  454. layer.closeAll();
  455. if (res.code == 1) {
  456. $('#typename_'+type_id).html(val);
  457. layer.msg(res.msg, {icon: 6 ,time: 1000});
  458. } else {
  459. showErrorMsg(res.msg);
  460. }
  461. },
  462. error : function(e) {
  463. layer.closeAll();
  464. showErrorAlert(e.responseText);
  465. }
  466. });
  467. layer.close(index);
  468. });
  469. }
  470. // 删除分组
  471. function delcate(obj, type_id) {
  472. layer.confirm('此操作不可恢复,确定删除?', {
  473. title: false,
  474. btn: ['确定', '取消']
  475. }, function() {
  476. layer_loading('正在处理');
  477. $.ajax({
  478. type: 'post',
  479. url : eyou_basefile + "?m="+module_name+"&c=Uploadimgnew&a=DelType&lang=" + __lang__,
  480. data: {type_id: type_id, _ajax: 1},
  481. dataType: 'json',
  482. success: function (res) {
  483. layer.closeAll();
  484. if (res.code == 1) {
  485. $('#typename_'+type_id).parent().parent().remove();
  486. layer.msg(res.msg, {icon: 6, time: 1000}, function(){
  487. $('#typename_0').trigger("click");
  488. });
  489. } else {
  490. showErrorMsg(res.msg);
  491. }
  492. },
  493. error : function(e) {
  494. layer.closeAll();
  495. showErrorAlert(e.responseText);
  496. }
  497. });
  498. });
  499. }
  500. // 加载框
  501. function layer_loading(msg) {
  502. var loading = layer.msg(
  503. msg+'...&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;请勿刷新页面',
  504. {
  505. icon: 6,
  506. time: 3600000, //1小时后后自动关闭
  507. shade: [0.2] //0.1透明度的白色背景
  508. });
  509. //loading层
  510. var index = layer.load(3, {
  511. shade: [0.1,'#fff'] //0.1透明度的白色背景
  512. });
  513. return loading;
  514. }
  515. function showErrorMsg(msg){
  516. layer.msg(msg, {icon: 5,time: 2000});
  517. }
  518. function showErrorAlert(msg, icon){
  519. if (!icon && icon != 0) {
  520. icon = 5;
  521. }
  522. layer.alert(msg, {icon: icon, title: false, closeBtn: false});
  523. }
  524. /**
  525. * 判断URL是否合法http(s)
  526. * @param {[type]} URL [description]
  527. * @return {[type]} [description]
  528. */
  529. function checkURL(URL) {
  530. var str = URL,
  531. Expression = /http(s)?:\/\/([\w-]+\.)+[\w-]+(\/[\w- .\/?%&=]*)?/,
  532. objExp = new RegExp(Expression);
  533. if(objExp.test(str) == true) {
  534. return true
  535. } else {
  536. return false
  537. }
  538. }