App.vue 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <script>
  2. export default {
  3. onLaunch: function() {
  4. console.log('App Launch')
  5. // #ifdef MP-WEIXIN
  6. if (uni.getStorageSync("token") && uni.getStorageSync("hx_username")) {
  7. this.$WebIM.conn.open({
  8. user: uni.getStorageSync("hx_username"),
  9. pwd: "999999",
  10. }).then(() => {
  11. console.log("login success");
  12. }).catch((reason) => {
  13. console.log("login fail", reason);
  14. });
  15. }
  16. this.$u.post('/api/Index/platform_config').then(res => {
  17. if (res.code == 1) {
  18. this.$store.commit('setconfig', res.data)
  19. }
  20. })
  21. this.$u.post('/api/Index/popularity').then(res => {
  22. this.$store.commit('setpopularity', res.data)
  23. })
  24. this.$amapPlugin.getRegeo({
  25. success: (res) => {
  26. //成功回调
  27. // console.log(res[0].regeocodeData.addressComponent);
  28. this.$store.commit('setcity', res[0].regeocodeData.addressComponent)
  29. },
  30. fail: function(info) {
  31. //失败回调
  32. // console.log(info)
  33. this.$store.commit('setcity', '定位失败')
  34. }
  35. })
  36. // #endif
  37. },
  38. onShow: function() {
  39. console.log('App Show')
  40. },
  41. onHide: function() {
  42. console.log('App Hide')
  43. }
  44. }
  45. </script>
  46. <style lang="scss">
  47. /*每个页面公共css */
  48. /* 注意要写在第一行,同时给style标签加入lang="scss"属性 */
  49. @import "uview-ui/index.scss";
  50. </style>