file_widget_setting.html 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. <include file="theme/functions"/>
  2. <include file="public@header"/>
  3. <style>
  4. .form-control-widget-title {
  5. border: none;
  6. padding: 0;
  7. margin: 0;
  8. font-size: inherit;
  9. line-height: inherit;
  10. background: transparent;
  11. }
  12. .form-control-widget-title:focus {
  13. outline: none;
  14. background: #fff;
  15. }
  16. </style>
  17. </head>
  18. <body>
  19. <notempty name="has_file">
  20. <div class="wrap">
  21. <ul class="nav nav-tabs">
  22. <li class="active">
  23. <a href="{:url('theme/fileSetting',['file_id'=>$file_id,'tab'=>'widget'])}">
  24. 组件
  25. </a>
  26. </li>
  27. <notempty name="file.more.vars">
  28. <li>
  29. <a href="{:url('theme/fileSetting',['file_id'=>$file_id,'tab'=>'var'])}">
  30. 设置
  31. </a>
  32. </li>
  33. </notempty>
  34. <notempty name="has_public_var">
  35. <li>
  36. <a href="{:url('theme/fileSetting',['file_id'=>$file_id,'tab'=>'public_var'])}">
  37. 全局设置
  38. </a>
  39. </li>
  40. </notempty>
  41. </ul>
  42. <form method="post" class="js-ajax-form margin-top-20" action="{:url('theme/settingPost')}">
  43. <div class="list-group">
  44. <a href="javascript:parent.openIframeLayer('{:url('admin/Nav/index')}','导航管理')" class="list-group-item">导航管理</a>
  45. <a href="javascript:parent.openIframeLayer('{:url('admin/Slide/index')}','幻灯片管理')"
  46. class="list-group-item">幻灯片管理</a>
  47. <a href="javascript:parent.openIframeLayer('{:url('admin/Link/index')}','友情链接管理')"
  48. class="list-group-item">友情链接管理</a>
  49. </div>
  50. <notempty name="has_widget">
  51. <foreach name="files" item="file">
  52. <notempty name="file['more']['widgets']">
  53. <div class="panel-group" id="accordion" role="tablist" aria-multiselectable="true">
  54. <foreach name="file['more']['widgets']" item="widget" key="widgetName" index="index">
  55. <div class="panel panel-default">
  56. <div class="panel-heading">
  57. <!--<a role="button" data-toggle="collapse" data-parent="#accordion"-->
  58. <!--href="#collapse-{$widgetName}">-->
  59. <!--{$widget.title}-->
  60. <!--</a>-->
  61. <input class="form-control-widget-title" type="text" value="{$widget.title}"
  62. name="files[{$file.id}][widget][{$widgetName}][title]">
  63. <label class="checkbox-inline pull-right">
  64. <php>$display_checked=empty($widget['display'])?'':'checked';</php>
  65. <input type="checkbox"
  66. name="files[{$file.id}][widget][{$widgetName}][display]"
  67. value="1"
  68. {$display_checked}>
  69. 显示
  70. </label>
  71. </div>
  72. <div id="collapse-{$widgetName}" class="panel-collapse collapse in" role="tabpanel">
  73. <div class="panel-body">
  74. {:_parse_vars($widget.vars,'files['.$file['id'].'][widget_vars]['.$widgetName.']',1,$widgetName,$file['id'])}
  75. <notempty name="file.is_public">
  76. <span class="pull-right label label-success">公共组件</span>
  77. <!--<a class="pull-right" title="公共组件" data-toggle="tooltip"><i class="fa fa-question-circle"></i></a>-->
  78. </notempty>
  79. </div>
  80. </div>
  81. </div>
  82. </foreach>
  83. </div>
  84. <else/>
  85. </notempty>
  86. </foreach>
  87. <else/>
  88. </notempty>
  89. <div class="form-group text-center" style="display: none;">
  90. <input type="hidden" name="id" value="{$file.id}">
  91. <button type="submit" class="btn btn-primary js-ajax-submit" id="submit-btn"
  92. data-success="successCallback">
  93. {:lang('SAVE')}
  94. </button>
  95. </div>
  96. </form>
  97. </div>
  98. <include file="theme/scripts"/>
  99. <script>
  100. parent.showDesignBtn();
  101. </script>
  102. </notempty>
  103. <empty name="has_file">
  104. <script>
  105. parent.hideDesignBtn();
  106. </script>
  107. </empty>
  108. <script>
  109. function successCallback(data, statusText, xhr, $form) {
  110. function _refresh() {
  111. if (data.url) {
  112. //返回带跳转地址
  113. window.location.href = data.url;
  114. } else {
  115. if (data.code == 1) {
  116. //刷新当前页
  117. reloadPage(window);
  118. }
  119. }
  120. }
  121. noty({
  122. text: data.msg,
  123. type: 'success',
  124. layout: 'topCenter',
  125. modal: true,
  126. // animation: {
  127. // open: 'animated bounceInDown', // Animate.css class names
  128. // close: 'animated bounceOutUp', // Animate.css class names
  129. // },
  130. timeout: 800,
  131. callback: {
  132. afterClose: function () {
  133. if (parent.afterSaveSetting) {
  134. parent.afterSaveSetting();
  135. }
  136. _refresh();
  137. }
  138. }
  139. });
  140. }
  141. </script>
  142. </body>
  143. </html>