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.

theme_welcome_conf.htm 6.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. {eq name="'Index@theme_welcome_conf'|is_check_access" value="1"}
  2. {eq name='$main_lang' value='$admin_lang'}
  3. <form class="form-horizontal" id="postForm2" action="{:url('Index/theme_welcome_conf')}" method="post">
  4. <div class="hDiv">
  5. <div class="hDivBox">
  6. <table cellspacing="0" cellpadding="0" style="width: 100%">
  7. <thead>
  8. <tr>
  9. <th class="sign w10" axis="col0">
  10. <div class="tc"></div>
  11. </th>
  12. <th abbr="article_title" axis="col3" class="w10">
  13. <div class="tc">欢迎页设置</div>
  14. </th>
  15. <th abbr="ac_id" axis="col4">
  16. <div class=""></div>
  17. </th>
  18. </tr>
  19. </thead>
  20. </table>
  21. </div>
  22. </div>
  23. <div class="ncap-form-default">
  24. <dl class="row">
  25. <dt class="tit">
  26. <label for="welcome_tplname">模板选择</label>
  27. </dt>
  28. <dd class="opt">
  29. <span class="theme_style" id="welcome_tplname">
  30. {volist name="$welcome_list" id="vo"}
  31. <span id="per_welcome_tplname_{$vo.theme_id}">
  32. <label class="theme_style_li curpoin" {$vo.disabled_tips}><input name="welcome_tplname" value="{$vo.welcome_tplname}" data-theme_id="{$vo.theme_id}" type="radio" {if condition="$vo['welcome_tplname'] == $global['web_theme_welcome_tplname']"} checked="checked" {/if} {$vo.disabled}><span id="welcome_tplname_{$vo.theme_id}">{$vo.theme_title}</span></label>&nbsp;{if condition="empty($vo['is_system'])"}<a class="curpoin" title="编辑" href="javascript:void(0);" onclick="welcome_tplname_edit(this);" data-theme_id="{$vo.theme_id}"><i class="iconfont e-bianji"></i></a>{/if}&nbsp;&nbsp;
  33. </span>
  34. {/volist}
  35. </span>
  36. <p class="notic">模板格式:welcome_自定义.htm<br/>模板目录:__ROOT_DIR__/application/admin/template/theme/</p>
  37. &nbsp;<a href="javascript:void(0);" onclick="welcome_tplname_add();" class="ncap-btn ncap-btn-green">新建模板</a>
  38. </dd>
  39. </dl>
  40. <dl class="row">
  41. <div class="bot">
  42. <a href="JavaScript:void(0);" onclick="checkSubmit2();" class="ncap-btn-big ncap-btn-green" id="submitBtn">确认提交</a>
  43. </div>
  44. </dl>
  45. </div>
  46. </form>
  47. {/eq}
  48. <script type="text/javascript">
  49. $(document).ready(function(){
  50. // 主题风格切换
  51. $('#welcome_tplname label.theme_style_li').on('click',function(){
  52. var disabled = $(this).find('input[type=radio]').attr('disabled');
  53. if (disabled == 'disabled') {
  54. var msg = $(this).attr('title');
  55. showErrorMsg(msg);
  56. return false;
  57. }
  58. $(this).find('input[type=radio]').attr('checked', true);
  59. var theme_id = $(this).find('input[type=radio]').attr('data-theme_id');
  60. $.ajax({
  61. type: "GET",
  62. url: "{:url('Index/ajax_get_theme_info', ['_ajax'=>1])}",
  63. data: {theme_id:theme_id},
  64. dataType: 'json',
  65. success: function (res) {
  66. layer.closeAll();
  67. if (res.code == 1) {
  68. var info = res.data.info;
  69. $('input[name=welcome_tplname]').val(info.welcome_tplname);
  70. } else {
  71. showErrorAlert(res.msg);
  72. }
  73. },
  74. error:function(e){
  75. layer.closeAll();
  76. showErrorAlert(e.responseText);
  77. }
  78. });
  79. });
  80. });
  81. function welcome_tplname_add()
  82. {
  83. var url = "{:url('Index/ajax_theme_tplfile_add',['type'=>'welcome'])}";
  84. //iframe窗
  85. layer.open({
  86. type: 2,
  87. title: '新建欢迎页模板',
  88. fixed: true, //不固定
  89. shadeClose: false,
  90. shade: layer_shade,
  91. maxmin: false, //开启最大化最小化按钮
  92. area: ['100%', '100%'],
  93. content: url
  94. });
  95. }
  96. function welcome_tplname_edit(obj)
  97. {
  98. var theme_id = $(obj).data('theme_id');
  99. var url = "{:url('Index/ajax_theme_tplfile_edit',['type'=>'welcome'])}";
  100. if (url.indexOf('?') > -1) {
  101. url += '&';
  102. } else {
  103. url += '?';
  104. }
  105. url += 'theme_id='+theme_id;
  106. //iframe窗
  107. layer.open({
  108. type: 2,
  109. title: '编辑欢迎页模板',
  110. fixed: true, //不固定
  111. shadeClose: false,
  112. shade: layer_shade,
  113. maxmin: false, //开启最大化最小化按钮
  114. area: ['100%', '100%'],
  115. content: url
  116. });
  117. }
  118. function checkSubmit2(){
  119. layer_loading('正在处理');
  120. $.ajax({
  121. type : 'post',
  122. url : "{:url('Index/theme_welcome_conf', ['_ajax'=>1])}",
  123. data : $('#postForm2').serialize(),
  124. dataType : 'json',
  125. success : function(res){
  126. layer.closeAll();
  127. if(res.code == 1){
  128. layer.msg(res.msg, {shade: layer_shade, time: 1000});
  129. }else{
  130. showErrorMsg(res.msg);
  131. }
  132. },
  133. error: function(e){
  134. layer.closeAll();
  135. layer.alert(e.responseText, {icon: 5, title:false});
  136. }
  137. });
  138. }
  139. </script>
  140. {/eq}