123456789101112131415161718192021222324252627282930313233343536373839 |
- <template>
- <view class="box">
- <view>商城</view>
- </view>
- </template>
- <script>
-
- export default {
- components: {
-
- },
-
- data() {
- return {
- userInfo:'',
- }
- },
- onLoad() {
-
- this.userInfo = uni.getStorageSync("userInfo");
- //this.getOrderTimes()
- },
-
- methods: {
-
-
- }
- }
- </script>
- <style scoped lang="less">
- .box{
- background: #F4F5F7;
- min-height: 100vh;
- }
- </style>
|