暫無描述
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.

eyou.js 16KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485
  1. var oldhtml = ''; // 原始内容
  2. var epageJson = {}; // 页面标识,建议是文件名
  3. jQuery(function($){
  4. // 去除所有A标签链接
  5. // function remove_a_href()
  6. // {
  7. // $('a').each(function(index, item){
  8. // $(item).attr('href', 'javascript:void(0);');
  9. // });
  10. // }
  11. /**
  12. * 页面右上角显示还原数据的操作
  13. */
  14. $('body').prepend('<div e-id="clearall" class="uiset_back-btn" title="还原设置" onclick="eyou_clear();"></div>');
  15. /**
  16. * Make the elements editable
  17. */
  18. $('.eyou-edit').mouseenter(function(e){ // 鼠标移入选中状态,只针对该绑定元素
  19. e.stopPropagation();
  20. var that = this;
  21. eyou_mouseenter(that);
  22. })
  23. .mouseleave(function(e){ // 鼠标移出消除选中状态,只针对该绑定元素
  24. e.stopPropagation();
  25. var that = this;
  26. eyou_mouseleave(that);
  27. });
  28. // 鼠标移入选中状态,只针对该绑定元素
  29. function eyou_mouseenter(that)
  30. {
  31. $(that).addClass('uiset');
  32. $('body').find('b.ui_icon').remove();
  33. $(that).prepend('<b class="ui_icon"></b>');
  34. $(that).find('b.ui_icon').on("click", function(e){
  35. e.stopPropagation();
  36. var that = $(this).parent();
  37. var e_type = $(that).attr('e-type');
  38. if (e_type == 'text') {
  39. oldhtml = $(that).html();
  40. eyou_text(that);
  41. } else if (e_type == 'html') {
  42. oldhtml = $(that).html();
  43. oldhtml = oldhtml.replace('<b class="ui_icon"></b>', '');
  44. eyou_html(that);
  45. } else if (e_type == 'type') {
  46. eyou_type(that);
  47. } else if (e_type == 'arclist' || e_type == 'artlist') {
  48. eyou_arclist(that);
  49. } else if (e_type == 'channel' || e_type == 'models') {
  50. eyou_channel(that);
  51. } else if (e_type == 'upload') {
  52. eyou_upload(that);
  53. } else if (e_type == 'adv') {
  54. eyou_adv(that);
  55. } else if (e_type == 'map') {
  56. eyou_map(that);
  57. } else if (e_type == 'code') {
  58. oldhtml = $(that).html();
  59. oldhtml = oldhtml.replace('<b class="ui_icon"></b>', '');
  60. eyou_code(that);
  61. } else if (e_type == 'background') {
  62. eyou_background(that);
  63. }
  64. // eyou_mouseleave(that);
  65. });
  66. if (that.nodeName == 'A') {
  67. $(that).attr('href', 'javascript:void(0);');
  68. }
  69. }
  70. // 鼠标移出消除选中状态,只针对该绑定元素
  71. function eyou_mouseleave(that)
  72. {
  73. $(that).removeClass('uiset');
  74. $(that).find('b.ui_icon').remove();
  75. $(that).bind('mouseenter');
  76. }
  77. // 递归获取最近含有e-page的元素对象
  78. function get_epage(obj)
  79. {
  80. if ($(obj).attr('e-page') == undefined) {
  81. var parentObj = $(obj).parent();
  82. if (parentObj.find('body').length > 0) {
  83. epageJson = {
  84. e_page: ''
  85. };
  86. return false;
  87. } else {
  88. get_epage(parentObj);
  89. }
  90. } else {
  91. epageJson = {
  92. e_page: $(obj).attr('e-page')
  93. };
  94. return false;
  95. }
  96. }
  97. // 纯文本编辑
  98. function eyou_text(that)
  99. {
  100. get_epage(that);
  101. var e_page = epageJson.e_page;
  102. var e_id = $(that).attr('e-id');
  103. if (e_page == '' || e_id == undefined) {
  104. eyou_showErrorAlert('html报错:uitext标签的外层html元素缺少属性 e-page | e-id');
  105. return false;
  106. }
  107. var textval = $(that).html();
  108. //textval = textval.replace(/[\r\n]/g, "");//去掉回车换行)
  109. textval = textval.replace(/<b class="ui_icon"><\/b>/g, "");//去掉回车换行)
  110. textval = $.trim(textval);
  111. layer.prompt({
  112. title: '纯文本编辑',
  113. value: textval,
  114. formType: 2,
  115. area: ['500px', '300px']
  116. }, function(text, index){
  117. layer.close(index);
  118. text = text.replace(/[\r\n]/g, "");//去掉回车换行)
  119. text = text.replace(/<b class="ui_icon"><\/b>/g, "");//去掉回车换行)
  120. text = $.trim(text);
  121. if( $.trim(text) != '' ) {
  122. eyou_layer_loading('正在处理');
  123. $.ajax({
  124. url: __root_dir__+'/index.php?m=api&c=Uiset&a=submit&v='+v+'&_ajax=1&lang='+__lang__,
  125. type: 'POST',
  126. dataType: 'JSON',
  127. data: {
  128. content: text
  129. ,id: e_id
  130. ,page: e_page
  131. ,type: 'text'
  132. ,oldhtml: oldhtml
  133. ,lang: __lang__
  134. ,urltypeid: __urltypeid__
  135. ,urlaid: __urlaid__
  136. },
  137. success: function(res) {
  138. layer.closeAll();
  139. if (res.code == 1) {
  140. layer.msg(res.msg, {icon: 1, shade: 0.3, time: 1000}, function(){
  141. window.location.reload();
  142. });
  143. } else {
  144. eyou_showErrorAlert(res.msg);
  145. }
  146. return false;
  147. },
  148. error: function(e){
  149. layer.closeAll();
  150. eyou_showErrorAlert(e.responseText);
  151. return false;
  152. }
  153. });
  154. }
  155. });
  156. }
  157. // 带html的富文本编辑器
  158. function eyou_html(that)
  159. {
  160. get_epage(that);
  161. var e_page = epageJson.e_page;
  162. var e_id = $(that).attr('e-id');
  163. if (e_page == '' || e_id == undefined) {
  164. eyou_showErrorAlert('html报错:uihtml标签的外层html元素缺少属性 e-page | e-id');
  165. return false;
  166. }
  167. layer.open({
  168. type: 2,
  169. title: '富文本内容编辑',
  170. fixed: true,
  171. shadeClose: false,
  172. shade: 0.3,
  173. maxmin: false,
  174. area: ['700px', '580px'],
  175. content: __root_dir__+'/index.php?m=api&c=Uiset&a=html&id='+e_id+'&page='+e_page+'&urltypeid='+__urltypeid__+'&urlaid='+__urlaid__+'&v='+v+'&lang='+__lang__
  176. });
  177. }
  178. // 栏目编辑
  179. function eyou_type(that)
  180. {
  181. get_epage(that);
  182. var e_page = epageJson.e_page;
  183. var e_id = $(that).attr('e-id');
  184. if (e_page == '' || e_id == undefined) {
  185. eyou_showErrorAlert('html报错:uitype标签的外层html元素缺少属性 e-page | e-id');
  186. return false;
  187. }
  188. //iframe窗
  189. layer.open({
  190. type: 2,
  191. title: '栏目编辑',
  192. fixed: true,
  193. shadeClose: false,
  194. shade: 0.3,
  195. maxmin: false,
  196. area: ['350px', '200px'],
  197. content: __root_dir__+'/index.php?m=api&c=Uiset&a=type&id='+e_id+'&page='+e_page+'&urltypeid='+__urltypeid__+'&urlaid='+__urlaid__+'&v='+v+'&lang='+__lang__
  198. });
  199. }
  200. // 文章栏目编辑
  201. function eyou_arclist(that)
  202. {
  203. get_epage(that);
  204. var e_page = epageJson.e_page;
  205. var e_id = $(that).attr('e-id');
  206. if (e_page == '' || e_id == undefined) {
  207. eyou_showErrorAlert('html报错:uiarclist标签的外层html元素缺少属性 e-page | e-id');
  208. return false;
  209. }
  210. layer.open({
  211. type: 2,
  212. title: '内容栏目编辑',
  213. fixed: true,
  214. shadeClose: false,
  215. shade: 0.3,
  216. maxmin: false,
  217. area: ['350px', '200px'],
  218. content: __root_dir__+'/index.php?m=api&c=Uiset&a=arclist&id='+e_id+'&page='+e_page+'&urltypeid='+__urltypeid__+'&urlaid='+__urlaid__+'&v='+v+'&lang='+__lang__
  219. });
  220. }
  221. // 栏目列表编辑
  222. function eyou_channel(that)
  223. {
  224. get_epage(that);
  225. var e_page = epageJson.e_page;
  226. var e_id = $(that).attr('e-id');
  227. if (e_page == '' || e_id == undefined) {
  228. eyou_showErrorAlert('html报错:uichannel标签的外层html元素缺少属性 e-page | e-id');
  229. return false;
  230. }
  231. layer.open({
  232. type: 2,
  233. title: '栏目列表编辑',
  234. fixed: true,
  235. shadeClose: false,
  236. shade: 0.3,
  237. maxmin: false,
  238. area: ['350px', '200px'],
  239. content: __root_dir__+'/index.php?m=api&c=Uiset&a=channel&id='+e_id+'&page='+e_page+'&urltypeid='+__urltypeid__+'&urlaid='+__urlaid__+'&v='+v+'&lang='+__lang__
  240. });
  241. }
  242. // 图片编辑
  243. function eyou_upload(that)
  244. {
  245. get_epage(that);
  246. var e_page = epageJson.e_page;
  247. var e_id = $(that).attr('e-id');
  248. if (e_page == '' || e_id == undefined) {
  249. eyou_showErrorAlert('html报错:uiupload标签的外层html元素缺少属性 e-page | e-id');
  250. return false;
  251. }
  252. var imgsrc = $(that).find('img').attr('src');
  253. var oldhtml = $.trim($(that).html());
  254. oldhtml = encodeURI(oldhtml);
  255. //iframe窗
  256. layer.open({
  257. type: 2,
  258. title: '图片编辑',
  259. fixed: true,
  260. shadeClose: false,
  261. shade: 0.3,
  262. maxmin: false,
  263. area: ['400px', '280px'],
  264. content: __root_dir__+'/index.php?m=api&c=Uiset&a=upload&id='+e_id+'&page='+e_page+'&urltypeid='+__urltypeid__+'&urlaid='+__urlaid__+'&v='+v+'&lang='+__lang__,
  265. success: function(layero, index){
  266. var body = layer.getChildFrame('body', index);
  267. body.find('input[name=oldhtml]').val(oldhtml);
  268. body.find('.imgsrc img').attr('src',imgsrc);
  269. }
  270. });
  271. }
  272. // 背景图片编辑
  273. function eyou_background(that)
  274. {
  275. get_epage(that);
  276. var e_page = epageJson.e_page;
  277. var e_id = $(that).attr('e-id');
  278. if (e_page == '' || e_id == undefined) {
  279. eyou_showErrorAlert('html报错:uibackground标签的外层html元素缺少属性 e-page | e-id');
  280. return false;
  281. }
  282. var imgsrc = $(that).css("backgroundImage").replace('url(', '').replace(')', '');
  283. re = new RegExp("'","g");
  284. imgsrc = imgsrc.replace(re, "");
  285. re2 = new RegExp("\"","g");
  286. imgsrc = imgsrc.replace(re2, "");
  287. imgsrc = $.trim(imgsrc);
  288. //iframe窗
  289. layer.open({
  290. type: 2,
  291. title: '背景图片编辑',
  292. fixed: true,
  293. shadeClose: false,
  294. shade: 0.3,
  295. maxmin: false,
  296. area: ['400px', '280px'],
  297. content: __root_dir__+'/index.php?m=api&c=Uiset&a=background&id='+e_id+'&page='+e_page+'&urltypeid='+__urltypeid__+'&urlaid='+__urlaid__+'&v='+v+'&lang='+__lang__,
  298. success: function(layero, index){
  299. var body = layer.getChildFrame('body', index);
  300. body.find('.imgsrc img').attr('src',imgsrc);
  301. }
  302. });
  303. }
  304. // 广告设置
  305. function eyou_adv(that)
  306. {
  307. var e_id = $(that).attr('e-id');
  308. var url = admin_basefile+'?m=admin&c=Other&a=ui_edit&id='+e_id+'&urltypeid='+__urltypeid__+'&urlaid='+__urlaid__+'&v='+v+'&lang='+__lang__;
  309. layer.open({
  310. type: 2,
  311. title: '广告编辑',
  312. fixed: true,
  313. shadeClose: false,
  314. shade: 0.3,
  315. maxmin: true,
  316. area: ['800px', '500px'],
  317. content: url
  318. });
  319. }
  320. // 百度地图
  321. function eyou_map(that)
  322. {
  323. get_epage(that);
  324. var e_page = epageJson.e_page;
  325. var e_id = $(that).attr('e-id');
  326. if (e_page == '' || e_id == undefined) {
  327. eyou_showErrorAlert('html报错:uimap标签的外层html元素缺少属性 e-page | e-id');
  328. return false;
  329. }
  330. layer.open({
  331. type: 2,
  332. title: '百度地图定位',
  333. fixed: true,
  334. shadeClose: false,
  335. shade: 0.3,
  336. maxmin: false,
  337. area: ['80%', '80%'],
  338. content: __root_dir__+'/index.php?m=api&c=Uiset&a=map&id='+e_id+'&page='+e_page+'&urltypeid='+__urltypeid__+'&urlaid='+__urlaid__+'&v='+v+'&lang='+__lang__
  339. });
  340. }
  341. // 源代码编辑
  342. function eyou_code(that)
  343. {
  344. get_epage(that);
  345. var e_page = epageJson.e_page;
  346. var e_id = $(that).attr('e-id');
  347. if (e_page == '' || e_id == undefined) {
  348. eyou_showErrorAlert('html报错:uicode标签的外层html元素缺少属性 e-page | e-id');
  349. return false;
  350. }
  351. layer.open({
  352. type: 2,
  353. title: '源代码编辑',
  354. fixed: true,
  355. shadeClose: false,
  356. shade: 0.3,
  357. maxmin: false,
  358. area: ['700px', '580px'],
  359. content: __root_dir__+'/index.php?m=api&c=Uiset&a=code&id='+e_id+'&page='+e_page+'&urltypeid='+__urltypeid__+'&urlaid='+__urlaid__+'&v='+v+'&lang='+__lang__
  360. });
  361. }
  362. });
  363. /**
  364. * 获取修改之前的内容
  365. */
  366. function eyou_getOldHtml()
  367. {
  368. return oldhtml;
  369. }
  370. // 清除全部数据
  371. function eyou_clear()
  372. {
  373. layer.confirm('此操作不可逆,确定还原?', {
  374. title: false,
  375. closeBtn: false,
  376. btn: ['确定', '取消'] //按钮
  377. }, function(){
  378. eyou_layer_loading('正在处理');
  379. var e_type = 'all';
  380. $.ajax({
  381. url: __root_dir__+'/index.php?m=api&c=Uiset&a=clear_data&lang='+__lang__,
  382. type: 'POST',
  383. dataType: 'JSON',
  384. data: {
  385. type: e_type
  386. ,v: v
  387. ,urltypeid: __urltypeid__
  388. ,urlaid: __urlaid__
  389. ,_ajax: 1
  390. },
  391. success: function(res) {
  392. layer.closeAll();
  393. if (res.code == 1) {
  394. layer.msg(res.msg, {icon: 1, shade: 0.3, time: 1000}, function(){
  395. window.location.reload();
  396. });
  397. } else {
  398. eyou_showErrorAlert(res.msg);
  399. }
  400. return false;
  401. },
  402. error: function(e){
  403. layer.closeAll();
  404. eyou_showErrorAlert(e.responseText);
  405. return false;
  406. }
  407. });
  408. }, function(index){
  409. layer.close(index);
  410. return false;// 取消
  411. }
  412. );
  413. }
  414. function eyou_showErrorMsg(msg){
  415. layer.msg(msg, {icon: 5,time: 2000});
  416. }
  417. function eyou_showSuccessMsg(msg){
  418. layer.msg(msg, {time: 1000});
  419. }
  420. function eyou_showErrorAlert(msg, icon){
  421. if (!icon && icon != 0) {
  422. icon = 5;
  423. }
  424. layer.alert(msg, {icon: icon, title: false, closeBtn: false});
  425. }
  426. /**
  427. * 封装的加载层
  428. */
  429. function eyou_layer_loading(msg){
  430. var loading = layer.msg(
  431. msg+'...&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;请勿刷新页面',
  432. {
  433. icon: 1,
  434. time: 3600000,
  435. shade: [0.2]
  436. });
  437. var index = layer.load(3, {
  438. shade: [0.1,'#fff']
  439. });
  440. return loading;
  441. }
  442. /**
  443. * 封装的加载层,用于iframe
  444. */
  445. function eyou_iframe_layer_loading(msg){
  446. var loading = parent.layer.msg(
  447. msg+'...&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;请勿刷新页面',
  448. {
  449. icon: 1,
  450. time: 3600000,
  451. shade: [0.2]
  452. });
  453. var index = parent.layer.load(3, {
  454. shade: [0.1,'#fff']
  455. });
  456. return loading;
  457. }