shop.vue 407 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <template>
  2. <view class="box">
  3. <view>商城</view>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. components: {
  9. },
  10. data() {
  11. return {
  12. userInfo:'',
  13. }
  14. },
  15. onLoad() {
  16. this.userInfo = uni.getStorageSync("userInfo");
  17. //this.getOrderTimes()
  18. },
  19. methods: {
  20. }
  21. }
  22. </script>
  23. <style scoped lang="less">
  24. .box{
  25. background: #F4F5F7;
  26. min-height: 100vh;
  27. }
  28. </style>