App.vue 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. <script>
  2. export default {
  3. onLaunch: function() {
  4. const that = this;
  5. that.forceUpdate();
  6. },
  7. onShow: function() {
  8. console.log('App Show')
  9. },
  10. onHide: function() {
  11. console.log('App Hide')
  12. },
  13. methods: {
  14. // 强制更新
  15. forceUpdate() {
  16. let system = uni.getSystemInfoSync();
  17. if (system.uniPlatform == 'mp-weixin') {
  18. const updateManager = uni.getUpdateManager();
  19. updateManager.onCheckForUpdate(function(res) {
  20. // 请求完新版本信息的回调
  21. console.log(res.hasUpdate);
  22. });
  23. updateManager.onUpdateReady(function(res) {
  24. uni.showModal({
  25. title: '更新提示',
  26. content: '新版本已经准备好,是否重启应用?',
  27. success(res) {
  28. if (res.confirm) {
  29. uni.clearStorage();
  30. updateManager.applyUpdate();
  31. }
  32. }
  33. });
  34. });
  35. updateManager.onUpdateFailed(function(res) {
  36. console.log(res);
  37. console.log('更新失败');
  38. });
  39. }
  40. }
  41. }
  42. }
  43. </script>
  44. <style lang="scss">
  45. @import "uview-plus/index.scss";
  46. @import './static/iconfont-weapp/iconfont-weapp-icon.css';
  47. /* 公用 */
  48. .container {
  49. display: flex;
  50. flex-direction: column;
  51. box-sizing: border-box;
  52. width: 100vw;
  53. height: 100vh;
  54. }
  55. .textOne {
  56. overflow: hidden;
  57. white-space: nowrap;
  58. text-overflow: ellipsis;
  59. -o-text-overflow: ellipsis;
  60. }
  61. .textOver {
  62. overflow: hidden;
  63. text-overflow: ellipsis;
  64. word-break: break-all;
  65. display: -webkit-box;
  66. -webkit-box-orient: vertical;
  67. -webkit-line-clamp: 2;
  68. }
  69. /* 设置整个项目的公用样式*/
  70. page {
  71. // font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  72. /* 窗口可用高度 */
  73. /* 有头有底 */
  74. --oneHeight: 100vh;
  75. /* 有头无底 */
  76. --twoHeight: 92vh;
  77. /* 可用窗口背景颜色 */
  78. --mainColor: #ffffff;
  79. /* 底部菜单背景颜色 */
  80. --footColor: #f1f1f1;
  81. /* 字体大小 */
  82. --font20Size: 20px;
  83. --font19Size: 19px;
  84. --font18Size: 18px;
  85. --font17Size: 17px;
  86. --font16Size: 16px;
  87. --font15Size: 15px;
  88. --font14Size: 14px;
  89. --font13Size: 13px;
  90. --font12Size: 12px;
  91. /* 颜色 */
  92. --f1Color: #f1f1f1;
  93. --f2Color: #f2f2f2;
  94. --f3Color: #f3f3f3;
  95. --f4Color: #f4f4f4;
  96. --f5Color: #f5f5f5;
  97. --f6Color: #f6f6f6;
  98. --f7Color: #f7f7f7;
  99. --f8Color: #f8f8f8;
  100. --f9Color: #f9f9f9;
  101. --f99Color: #999999;
  102. --f85Color: #858585;
  103. --f69Color: #696969;
  104. --f80Color: #808080;
  105. --f33Color: #333333;
  106. --fFB1Color: #7A7E83;
  107. --f828Color: #82848a;
  108. --fDCColor: #DCDCDC;
  109. --fcColor: #cccccc;
  110. --f00Color: #000000;
  111. --fffColor: #ffffff;
  112. --fF0Color: #FF0000;
  113. --fFFColor: #2979ff;
  114. --f3CColor: #007AFF;
  115. --f35BColor: #35BD7B;
  116. }
  117. </style>