launch.vue 577 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <template>
  2. <view class="content">
  3. </view>
  4. </template>
  5. <script>
  6. export default {
  7. data() {
  8. return {
  9. loading: null,
  10. outUserId: null,
  11. qwUserId: null,
  12. currentPath: null,
  13. baseUrl:uni.getStorageSync('requestPath')
  14. };
  15. },
  16. onShow() {
  17. this.navigatHandler();
  18. },
  19. methods: {
  20. navigatHandler() {
  21. uni.reLaunch({
  22. url: '../user/customerDetail',
  23. })
  24. },
  25. }
  26. };
  27. </script>
  28. <style>
  29. page{
  30. background-color: #fff;
  31. }
  32. .content {
  33. background-color: #fff;
  34. height: 100%;
  35. width: 100%;
  36. position: relative;
  37. }
  38. </style>