design_panel.html 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. <div class="wrap">
  20. <ul class="nav nav-tabs">
  21. <li class="active">
  22. <a href="{:url('theme/fileSetting',['file_id'=>$file_id,'tab'=>'widget'])}">
  23. 组件设置
  24. </a>
  25. </li>
  26. <li>
  27. <a href="{:url('theme/fileSetting',['file_id'=>$file_id,'tab'=>'var'])}">
  28. 变量设置
  29. </a>
  30. </li>
  31. </ul>
  32. <form method="post" class="js-ajax-form margin-top-20" action="{:url('theme/settingPost')}">
  33. <notempty name="file['more']['widgets']">
  34. <div class="panel-group" id="accordion" role="tablist" aria-multiselectable="true">
  35. <foreach name="file['more']['widgets']" item="widget" key="widgetName" index="index">
  36. <div class="panel panel-default">
  37. <div class="panel-heading">
  38. <!--<a role="button" data-toggle="collapse" data-parent="#accordion"-->
  39. <!--href="#collapse-{$widgetName}">-->
  40. <!--{$widget.title}-->
  41. <!--</a>-->
  42. <input class="form-control-widget-title" type="text" value="{$widget.title}"
  43. name="widget[{$widgetName}][title]">
  44. <label class="checkbox-inline pull-right">
  45. <php>$display_checked=empty($widget['display'])?'':'checked';</php>
  46. <input type="checkbox" name="widget[{$widgetName}][display]" value="1"
  47. {$display_checked}>
  48. 显示
  49. </label>
  50. </div>
  51. <div id="collapse-{$widgetName}" class="panel-collapse collapse in" role="tabpanel">
  52. <div class="panel-body">
  53. {:_parse_vars($widget.vars,'widget_vars['.$widgetName.']',1,$widgetName)}
  54. </div>
  55. </div>
  56. </div>
  57. </foreach>
  58. </div>
  59. <else/>
  60. <div>本页面没有设置任何组件</div>
  61. </notempty>
  62. <div class="form-group" style="display:none;">
  63. <input type="hidden" name="id" value="{$file.id}">
  64. <button type="submit" class="btn btn-primary js-ajax-submit" id="submit-btn">{:lang('SAVE')}</button>
  65. </div>
  66. </form>
  67. </div>
  68. <include file="theme/scripts"/>
  69. </body>
  70. </html>