截流自动化的商城平台
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.

choose_page.html 4.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. {layout name="layout1" /}
  2. <style>
  3. .container {
  4. display: flex;
  5. justify-content: center;
  6. align-items: center;
  7. flex-direction: column;
  8. width: 100%;
  9. height: 100%;
  10. }
  11. .container p {
  12. margin-top: 30px;
  13. margin-bottom: 20px;
  14. font-size: 18px;
  15. }
  16. .container button {
  17. margin-top: 10px;
  18. width: 300px;
  19. }
  20. .layui-btn + .layui-btn {
  21. margin-left: 0;
  22. }
  23. </style>
  24. <div class="container">
  25. <p>系统是否进行过二次开发?</p>
  26. <button class="layui-btn layui-btn-normal" id="update">未做过二次开发,直接更新</button>
  27. <button class="layui-btn layui-btn-primary" id="secondary">已做过二次开发</button>
  28. <button class="layui-btn layui-btn-primary" id="cancle">取消更新</button>
  29. </div>
  30. <script>
  31. var versionData = [];
  32. function setVersionData(data) {
  33. versionData = data;
  34. }
  35. layui.config({
  36. version:"{$front_version}",
  37. base: '/static/plug/layui-admin/dist/layuiadmin/'
  38. }).extend({
  39. index: 'lib/index' //主入口模块
  40. }).use(['index','layer', 'like'], function() {
  41. var layer = layui.layer;
  42. var $ = layui.$;
  43. var like = layui.like;
  44. // 更新
  45. $('#update').click(function() {
  46. layer.confirm('一键更新导致的系统问题,欢迎前往社区反馈,请做好系统备份!', {
  47. time: 0, //不自动关闭
  48. btn: ['确定更新', '取消更新'],
  49. title: '注意',
  50. area: ['60%','60%'],
  51. yes: function(index) {
  52. like.ajax({
  53. url:'{:url("system.Upgrade/handleUpgrade")}',
  54. data:versionData,
  55. type:"post",
  56. success:function(res)
  57. {
  58. if(res.code == 1)
  59. {
  60. layui.layer.msg(res.msg, {
  61. offset: '15px'
  62. , icon: 1
  63. , time: 2000
  64. },function () {
  65. layer.close(index);
  66. window.parent.location.reload();
  67. });
  68. }
  69. }
  70. });
  71. }
  72. });
  73. });
  74. // 已做过二次开发
  75. $('#secondary').click(function() {
  76. layer.confirm('二次开发后请谨慎使用一键更新功能!\n' +
  77. '\n' + '二次开发后一键更新导致的系统问题,官方无法处理,请做好系统备份', {
  78. time: 0, //不自动关闭
  79. btn: ['确定更新', '下载更新包,手动更新','取消更新'],
  80. title: '注意',
  81. area: ['60%','60%'],
  82. yes: function(index) {
  83. like.ajax({
  84. url:'{:url("system.Upgrade/handleUpgrade")}',
  85. data:versionData,
  86. type:"post",
  87. success:function(res)
  88. {
  89. if(res.code == 1)
  90. {
  91. layui.layer.msg(res.msg, {
  92. offset: '15px'
  93. , icon: 1
  94. , time: 2000
  95. },function () {
  96. layer.close(index);
  97. window.parent.location.reload();
  98. });
  99. }
  100. }
  101. });
  102. },
  103. btn2: function(index, layero) {
  104. versionData.update_type = 2; //服务端更新包类型
  105. // 写入更新日志
  106. $.ajax({
  107. url: '{:url("system.upgrade/getPkg")}',
  108. type: 'post',
  109. data: versionData,
  110. success: function(res) {
  111. if(res.code == 1) {
  112. // 下载更新包
  113. window.location.href = res.data.link;
  114. }
  115. }
  116. });
  117. },
  118. btn3: function(index, layero) {
  119. layer.close(index);
  120. }
  121. });
  122. });
  123. // 取消更新
  124. $('#cancle').click(function() {
  125. var index = parent.layer.getFrameIndex(window.name); //先得到当前iframe层的索引
  126. parent.layer.close(index); //再执行关闭
  127. });
  128. });
  129. </script>