file_public_var_setting.html 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. <include file="theme/functions"/>
  2. <include file="public@header"/>
  3. </head>
  4. <body>
  5. <div class="wrap">
  6. <ul class="nav nav-tabs">
  7. <li>
  8. <a href="{:url('theme/fileSetting',['file_id'=>$file_id,'tab'=>'widget'])}">
  9. 组件
  10. </a>
  11. </li>
  12. <notempty name="file.more.vars">
  13. <li>
  14. <a href="{:url('theme/fileSetting',['file_id'=>$file_id,'tab'=>'var'])}">
  15. 设置
  16. </a>
  17. </li>
  18. </notempty>
  19. <notempty name="has_public_var">
  20. <li class="active">
  21. <a href="{:url('theme/fileSetting',['file_id'=>$file_id,'tab'=>'public_var'])}">
  22. 全局设置
  23. </a>
  24. </li>
  25. </notempty>
  26. </ul>
  27. <form method="post" class="js-ajax-form margin-top-20" action="{:url('theme/settingPost')}">
  28. <foreach name="files" item="file">
  29. <if condition="$file.id neq $file_id">
  30. <notempty name="file['more']['vars']">
  31. {:_parse_vars($file.more.vars,'files['.$file['id'].'][vars]',1,'',$file['id'])}
  32. <else/>
  33. </notempty>
  34. </if>
  35. </foreach>
  36. <div class="form-group text-center" style="display: none;">
  37. <!--<input type="hidden" name="id" value="{$file.id}">-->
  38. <button type="submit" class="btn btn-primary js-ajax-submit" id="submit-btn" data-success="successCallback">
  39. {:lang('SAVE')}
  40. </button>
  41. </div>
  42. </form>
  43. </div>
  44. <include file="theme/scripts"/>
  45. <script>
  46. function successCallback(data, statusText, xhr, $form) {
  47. function _refresh() {
  48. if (data.url) {
  49. //返回带跳转地址
  50. window.location.href = data.url;
  51. } else {
  52. if (data.code == 1) {
  53. //刷新当前页
  54. reloadPage(window);
  55. }
  56. }
  57. }
  58. noty({
  59. text: data.msg,
  60. type: 'success',
  61. layout: 'topCenter',
  62. modal: true,
  63. // animation: {
  64. // open: 'animated bounceInDown', // Animate.css class names
  65. // close: 'animated bounceOutUp', // Animate.css class names
  66. // },
  67. timeout: 800,
  68. callback: {
  69. afterClose: function () {
  70. if (parent.afterSaveSetting) {
  71. parent.afterSaveSetting();
  72. }
  73. _refresh();
  74. }
  75. }
  76. });
  77. }
  78. </script>
  79. </body>
  80. </html>