123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <template>
- <view class="content">
- <u-swiper height="200" :list="imageTopList"></u-swiper>
- <view class="goods">
- <u-section title="人气零食" :show-line="false" sub-title="更多"></u-section>
- </view>
- </view>
- </template>
- <script>
- import {
- checkLogin
- } from '@/api/login.js'
- import {
- getMapStoreList
- } from '@/api/store.js'
- import {
- getLookUpDatas
- } from '@/api/data.js'
- import {
- getUnFinishedOrder
- } from '@/api/order.js'
- export default {
- components: {
- },
- data() {
- return {
- imageTopList:[
- {photo:''},
- {photo:''}
- ]
- }
- },
- onReady() {
- },
- onShow() {
- },
- onLoad() {
- },
- methods: {
- }
- }
- </script>
- <style lang="scss" scoped>
- .content {
- .goods{
- padding: 30upx 0;
- }
- }
- </style>
|