App.vue 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. <script>
  2. import {
  3. SET_SYSTEM_INFO,
  4. SET_PAGE_CONFIG
  5. } from './store/mutation-types'
  6. import {
  7. initUser
  8. } from './utils'
  9. import store from '@/store'
  10. import {
  11. SET_PID,
  12. SET_CHANNEL,
  13. SET_ADID,
  14. SET_CLICKID,
  15. SET_CALLBACK,
  16. SET_PAYINFO
  17. } from '@/store/mutation-types'
  18. export default {
  19. onLaunch: function() {
  20. const res = uni.getSystemInfoSync()
  21. this.$store.commit(SET_SYSTEM_INFO, res)
  22. this.updateVersion()
  23. },
  24. onShow: function(option) {
  25. // uni.login({
  26. // scopes: 'auth_base',
  27. // success: async (result) => {
  28. // if (result.code) {
  29. // this.$service.user.updateSession(result.code)
  30. // }
  31. // }
  32. // })
  33. this.$event.emit(this.$event.key.APP_SHOW)
  34. if (this.$common.isLogin()) {
  35. this.$service.user.info()
  36. }
  37. this.pageConfig('magic_luck')
  38. this.pageConfig('index_banner')
  39. this.pageConfig('index_icon')
  40. this.pageConfig('box_banner')
  41. this.pageConfig('super_ad')
  42. let page = this.$common.currentPage()
  43. if (page && page.$vm && page.$vm.poolIn) {
  44. page.$vm.poolIn()
  45. }
  46. if (option.query) {
  47. if (option.query.pid) {
  48. store.commit(SET_PID, option.query.pid)
  49. }
  50. if (option.query.channel) {
  51. store.commit(SET_CHANNEL, option.query.channel)
  52. }
  53. if (option.query.adid) {
  54. store.commit(SET_ADID, option.query.adid)
  55. }
  56. if (option.query.gdt_vid || option.query.qz_gdt) {
  57. store.commit(SET_CLICKID, option.query.gdt_vid || option.query.qz_gdt)
  58. }
  59. if (option.query.callback) {
  60. store.commit(SET_CALLBACK, option.query.callback)
  61. }
  62. }
  63. if (option.referrerInfo && option.referrerInfo.extraData && option.referrerInfo.extraData.action ==
  64. 'epPay') {
  65. store.commit(SET_PAYINFO, option.referrerInfo.extraData)
  66. }
  67. if (this.$common.isLogin()) {
  68. this.$service.user.getHide()
  69. }
  70. },
  71. onHide: function() {
  72. this.$service.award.poolOut()
  73. },
  74. methods: {
  75. async updateVersion() {
  76. const local = await this.getLocalVersion()
  77. const res = await this.$service.base.getLatest()
  78. if (local !== res.version) {
  79. this.downloadPackage(res.upgradeUrl)
  80. }
  81. },
  82. getLocalVersion() {
  83. return new Promise((resolve, reject) => {
  84. plus.runtime.getProperty(plus.runtime.appid, function(widgetInfo) {
  85. const version = widgetInfo.version
  86. resolve(version)
  87. })
  88. }).catch(err => {
  89. console.err(err);
  90. })
  91. },
  92. downloadPackage(url) {
  93. var dtask = plus.downloader.createDownload(url, {}, function(res, status) {
  94. // 下载完成
  95. if (status === 200) {
  96. plus.runtime.install(res.filename)
  97. }
  98. });
  99. //dtask.add
  100. dtask.start()
  101. },
  102. async pageConfig(key) {
  103. const res = await this.$service.base.pageConfig(key)
  104. let pageConfig = this.$store.state.pageConfig || {}
  105. pageConfig[key] = res
  106. this.$store.commit(SET_PAGE_CONFIG, {
  107. ...pageConfig
  108. })
  109. }
  110. }
  111. }
  112. </script>
  113. <style lang="scss">
  114. @import "@/uni_modules/uview-ui/index.scss";
  115. /*每个页面公共css */
  116. .wrapper {
  117. padding: 0 20rpx;
  118. }
  119. @import '@/assets/sass/global.scss';
  120. @import 'colorui/main.css';
  121. @import 'colorui/icon.css';
  122. </style>