accommodation.vue 323 B

123456789101112131415161718192021222324252627282930313233
  1. <template>
  2. <view>
  3. </view>
  4. </template>
  5. <script>
  6. var that
  7. export default {
  8. data() {
  9. return {
  10. };
  11. },
  12. onLoad(){
  13. that = this
  14. },
  15. onShow: function() {
  16. if (uni.getStorageSync("userInfo").phone) {
  17. } else {
  18. }
  19. },
  20. methods:{
  21. }
  22. }
  23. </script>
  24. <style lang="scss" scoped>
  25. </style>