Ei kuvausta
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_mobile_tpl.js 8.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270
  1. var oldhtml = '';
  2. var odlimgstr = '';
  3. // 纯文本编辑
  4. function eyou_text(that, e_id, e_page, html)
  5. {
  6. var textval = $(that).html();
  7. //textval = textval.replace(/[\r\n]/g, "");//去掉回车换行)
  8. textval = textval.replace(/<b class="ui_icon"><\/b>/g, "");//去掉回车换行)
  9. oldhtml = $.trim(textval);
  10. var url = __root_dir__+'/index.php?m=api&c=Uiset&a=text&id='+e_id+'&page='+e_page+'&iframe='+__iframe__+'&urltypeid='+__urltypeid__+'&urlaid='+__urlaid__+'&v='+v+'&lang='+__lang__;
  11. $('#workspace_right').attr('src', url);
  12. $('.admincp-container-right').addClass('right-show');
  13. return false;
  14. var textval = $(that).html();
  15. //textval = textval.replace(/[\r\n]/g, "");//去掉回车换行)
  16. textval = textval.replace(/<b class="ui_icon"><\/b>/g, "");//去掉回车换行)
  17. textval = $.trim(textval);
  18. layer.prompt({
  19. title: '纯文本编辑',
  20. value: textval,
  21. formType: 2,
  22. area: ['500px', '300px'],
  23. anim: 3
  24. }, function(text, index){
  25. layer.close(index);
  26. text = text.replace(/[\r\n]/g, "");//去掉回车换行)
  27. text = text.replace(/<b class="ui_icon"><\/b>/g, "");//去掉回车换行)
  28. text = $.trim(text);
  29. if( $.trim(text) != '' ) {
  30. eyou_layer_loading('正在处理');
  31. $.ajax({
  32. url: __root_dir__+'/index.php?m=api&c=Uiset&a=submit&v='+v+'&_ajax=1&lang='+__lang__,
  33. type: 'POST',
  34. dataType: 'JSON',
  35. data: {
  36. content: text
  37. ,id: e_id
  38. ,page: e_page
  39. ,type: 'text'
  40. ,oldhtml: html
  41. ,lang: __lang__
  42. ,urltypeid: __urltypeid__
  43. ,urlaid: __urlaid__
  44. },
  45. success: function(res) {
  46. layer.closeAll();
  47. if (res.code == 1) {
  48. layer.msg(res.msg, {icon: 1, shade: 0.3, time: 1000}, function(){
  49. $('#workspace').attr('src', $('#workspace').attr('src'));
  50. });
  51. } else {
  52. eyou_showErrorAlert(res.msg);
  53. }
  54. return false;
  55. },
  56. error: function(e){
  57. layer.closeAll();
  58. eyou_showErrorAlert(e.responseText);
  59. return false;
  60. }
  61. });
  62. }
  63. });
  64. }
  65. // 带html的富文本编辑器
  66. function eyou_html(that, e_id, e_page, html)
  67. {
  68. oldhtml = html;
  69. var url = __root_dir__+'/index.php?m=api&c=Uiset&a=html&id='+e_id+'&page='+e_page+'&iframe='+__iframe__+'&urltypeid='+__urltypeid__+'&urlaid='+__urlaid__+'&v='+v+'&lang='+__lang__;
  70. $('#workspace_right').attr('src', url);
  71. $('.admincp-container-right').addClass('right-show');
  72. }
  73. // 栏目编辑
  74. function eyou_type(that, e_id, e_page)
  75. {
  76. var url = __root_dir__+'/index.php?m=api&c=Uiset&a=type&id='+e_id+'&page='+e_page+'&iframe='+__iframe__+'&urltypeid='+__urltypeid__+'&urlaid='+__urlaid__+'&v='+v+'&lang='+__lang__;
  77. $('#workspace_right').attr('src', url);
  78. $('.admincp-container-right').addClass('right-show');
  79. }
  80. // 文章栏目编辑
  81. function eyou_arclist(that, e_id, e_page)
  82. {
  83. var url = __root_dir__+'/index.php?m=api&c=Uiset&a=arclist&id='+e_id+'&page='+e_page+'&iframe='+__iframe__+'&urltypeid='+__urltypeid__+'&urlaid='+__urlaid__+'&v='+v+'&lang='+__lang__;
  84. $('#workspace_right').attr('src', url);
  85. $('.admincp-container-right').addClass('right-show');
  86. }
  87. // 栏目列表编辑
  88. function eyou_channel(that, e_id, e_page)
  89. {
  90. var url = __root_dir__+'/index.php?m=api&c=Uiset&a=channel&id='+e_id+'&page='+e_page+'&iframe='+__iframe__+'&urltypeid='+__urltypeid__+'&urlaid='+__urlaid__+'&v='+v+'&lang='+__lang__;
  91. $('#workspace_right').attr('src', url);
  92. $('.admincp-container-right').addClass('right-show');
  93. }
  94. // 图片编辑
  95. function eyou_upload(that, e_id, e_page, html, imgsrc)
  96. {
  97. oldhtml = html;
  98. oldimgsrc = imgsrc;
  99. var url = __root_dir__+'/index.php?m=api&c=Uiset&a=upload&id='+e_id+'&page='+e_page+'&iframe='+__iframe__+'&urltypeid='+__urltypeid__+'&urlaid='+__urlaid__+'&v='+v+'&lang='+__lang__;
  100. $('#workspace_right').attr('src', url);
  101. $('.admincp-container-right').addClass('right-show');
  102. }
  103. // 背景图片编辑
  104. function eyou_background(that, e_id, e_page, imgsrc)
  105. {
  106. oldimgsrc = imgsrc;
  107. var url = __root_dir__+'/index.php?m=api&c=Uiset&a=background&id='+e_id+'&page='+e_page+'&iframe='+__iframe__+'&urltypeid='+__urltypeid__+'&urlaid='+__urlaid__+'&v='+v+'&lang='+__lang__;
  108. $('#workspace_right').attr('src', url);
  109. $('.admincp-container-right').addClass('right-show');
  110. }
  111. // 广告设置
  112. function eyou_adv(that, e_id)
  113. {
  114. var url = admin_basefile+'?m=admin&c=Other&a=ui_edit&id='+e_id+'&iframe='+__iframe__+'&urltypeid='+__urltypeid__+'&urlaid='+__urlaid__+'&v='+v+'&lang='+__lang__;
  115. $('#workspace_right').attr('src', url);
  116. $('.admincp-container-right').addClass('right-show');
  117. }
  118. // 百度地图
  119. function eyou_map(that, e_id, e_page)
  120. {
  121. var url = __root_dir__+'/index.php?m=api&c=Uiset&a=map&id='+e_id+'&page='+e_page+'&iframe='+__iframe__+'&urltypeid='+__urltypeid__+'&urlaid='+__urlaid__+'&v='+v+'&lang='+__lang__;
  122. $('#workspace_right').attr('src', url);
  123. $('.admincp-container-right').addClass('right-show');
  124. /*
  125. layer.open({
  126. type: 2,
  127. title: '百度地图定位',
  128. fixed: true,
  129. shadeClose: false,
  130. shade: 0.3,
  131. maxmin: false,
  132. area: ['80%', '80%'],
  133. content: __root_dir__+'/index.php?m=api&c=Uiset&a=map&id='+e_id+'&page='+e_page+'&iframe='+__iframe__+'&urltypeid='+__urltypeid__+'&urlaid='+__urlaid__+'&v='+v+'&lang='+__lang__
  134. });
  135. */
  136. }
  137. // 源代码编辑
  138. function eyou_code(that, e_id, e_page, html)
  139. {
  140. oldhtml = html;
  141. var url = __root_dir__+'/index.php?m=api&c=Uiset&a=code&id='+e_id+'&page='+e_page+'&iframe='+__iframe__+'&urltypeid='+__urltypeid__+'&urlaid='+__urlaid__+'&v='+v+'&lang='+__lang__;
  142. $('#workspace_right').attr('src', url);
  143. $('.admincp-container-right').addClass('right-show');
  144. }
  145. // 清除全部数据
  146. function eyou_clear()
  147. {
  148. layer.confirm('确定要初始化数据?', {
  149. title: false,
  150. closeBtn: false,
  151. btn: ['确定', '取消'] //按钮
  152. }, function(){
  153. eyou_layer_loading('正在处理');
  154. var e_type = 'all';
  155. $.ajax({
  156. url: __root_dir__+'/index.php?m=api&c=Uiset&a=clear_data&lang='+__lang__,
  157. type: 'POST',
  158. dataType: 'JSON',
  159. data: {
  160. type: e_type
  161. ,v: v
  162. ,urltypeid: __urltypeid__
  163. ,urlaid: __urlaid__
  164. ,_ajax: 1
  165. },
  166. success: function(res) {
  167. layer.closeAll();
  168. if (res.code == 1) {
  169. layer.msg(res.msg, {icon: 1, shade: 0.3, time: 1000}, function(){
  170. $('.admincp-container-right').removeClass('right-show');
  171. $('#workspace').attr('src', $('#workspace').attr('src'));
  172. });
  173. } else {
  174. eyou_showErrorAlert(res.msg);
  175. }
  176. return false;
  177. },
  178. error: function(e){
  179. layer.closeAll();
  180. eyou_showErrorAlert(e.responseText);
  181. return false;
  182. }
  183. });
  184. }, function(index){
  185. layer.close(index);
  186. return false;// 取消
  187. }
  188. );
  189. }
  190. /**
  191. * 获取修改之前的内容
  192. */
  193. function eyou_getOldHtml()
  194. {
  195. return oldhtml;
  196. }
  197. /**
  198. * 获取修改之前的图片路径
  199. */
  200. function eyou_getOldImgsrc()
  201. {
  202. return oldimgsrc;
  203. }
  204. function eyou_showErrorMsg(msg){
  205. layer.msg(msg, {icon: 5,time: 2000});
  206. }
  207. function eyou_showSuccessMsg(msg){
  208. layer.msg(msg, {time: 1000});
  209. }
  210. function eyou_showErrorAlert(msg, icon){
  211. if (!icon && icon != 0) {
  212. icon = 5;
  213. }
  214. layer.alert(msg, {icon: icon, title: false, closeBtn: false});
  215. }
  216. /**
  217. * 封装的加载层
  218. */
  219. function eyou_layer_loading(msg){
  220. var loading = layer.msg(
  221. msg+'...&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;请勿刷新页面',
  222. {
  223. icon: 1,
  224. time: 3600000,
  225. shade: [0.2]
  226. });
  227. var index = layer.load(3, {
  228. shade: [0.1,'#fff']
  229. });
  230. return loading;
  231. }
  232. /**
  233. * 封装的加载层,用于iframe
  234. */
  235. function eyou_iframe_layer_loading(msg){
  236. var loading = parent.layer.msg(
  237. msg+'...&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;请勿刷新页面',
  238. {
  239. icon: 1,
  240. time: 3600000,
  241. shade: [0.2]
  242. });
  243. var index = parent.layer.load(3, {
  244. shade: [0.1,'#fff']
  245. });
  246. return loading;
  247. }