file_var_setting.html 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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 class="active">
  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>
  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. <notempty name="file['more']['vars']">
  29. {:_parse_vars($file.more.vars,'files['.$file['id'].'][vars]')}
  30. <else/>
  31. </notempty>
  32. <div class="form-group text-center" style="display: none;">
  33. <!--<input type="hidden" name="id" value="{$file.id}">-->
  34. <button type="submit" class="btn btn-primary js-ajax-submit" id="submit-btn" data-success="successCallback">
  35. {:lang('SAVE')}
  36. </button>
  37. </div>
  38. </form>
  39. </div>
  40. <include file="theme/scripts"/>
  41. <script>
  42. function successCallback(data, statusText, xhr, $form) {
  43. function _refresh() {
  44. if (data.url) {
  45. //返回带跳转地址
  46. window.location.href = data.url;
  47. } else {
  48. if (data.code == 1) {
  49. //刷新当前页
  50. reloadPage(window);
  51. }
  52. }
  53. }
  54. noty({
  55. text: data.msg,
  56. type: 'success',
  57. layout: 'topCenter',
  58. modal: true,
  59. // animation: {
  60. // open: 'animated bounceInDown', // Animate.css class names
  61. // close: 'animated bounceOutUp', // Animate.css class names
  62. // },
  63. timeout: 800,
  64. callback: {
  65. afterClose: function () {
  66. if (parent.afterSaveSetting) {
  67. parent.afterSaveSetting();
  68. }
  69. _refresh();
  70. }
  71. }
  72. });
  73. }
  74. </script>
  75. </body>
  76. </html>