App.vue 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <script>
  2. export default {
  3. onLaunch: function() {
  4. console.log('App Launch',this.$WebIM)
  5. if (uni.getStorageSync("token")) {
  6. this.$u.post('/api/Member/member_info').then(res => {
  7. if (res.code == 1) {
  8. if (uni.getStorageSync("token") && uni.getStorageSync("hx_username")) {
  9. this.$WebIM.conn.open({
  10. user: uni.getStorageSync("hx_username"),
  11. pwd: "888888",
  12. }).then(() => {
  13. console.log("login success");
  14. }).catch((reason) => {
  15. console.log("login fail", reason);
  16. });
  17. }
  18. } else {
  19. this.$u.toast(res.msg)
  20. uni.removeStorageSync("token")
  21. uni.removeStorageSync("hx_username")
  22. }
  23. })
  24. }
  25. if (uni.getStorageSync("city") && uni.getStorageSync("city").city_id) {
  26. this.$store.commit('setdefaultcity', uni.getStorageSync("city"))
  27. }
  28. this.$u.post('/api/Index/platform_config').then(res => {
  29. if (res.code == 1) {
  30. this.$store.commit('setconfig', res.data)
  31. if (!uni.getStorageSync("config")) {
  32. uni.setStorageSync("config", res.data)
  33. } else {
  34. var config = uni.getStorageSync("config")
  35. config.floor_price_switch = res.data.floor_price_switch
  36. config.sunlight_appraisal_switch = res.data.sunlight_appraisal_switch
  37. config.room_price_switch = res.data.room_price_switch
  38. uni.setStorageSync("config", config)
  39. }
  40. }
  41. })
  42. this.$u.post('/api/Index/popularity').then(res => {
  43. this.$store.commit('setpopularity', res.data)
  44. })
  45. },
  46. onShow: function() {
  47. console.log('App Show')
  48. },
  49. onHide: function() {
  50. console.log('App Hide')
  51. }
  52. }
  53. </script>
  54. <style lang="scss">
  55. /*每个页面公共css */
  56. /* 注意要写在第一行,同时给style标签加入lang="scss"属性 */
  57. @import "uview-ui/index.scss";
  58. </style>