index.vue 754 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <template>
  2. <view class="content">
  3. <u-swiper height="200" :list="imageTopList"></u-swiper>
  4. <view class="goods">
  5. <u-section title="人气零食" :show-line="false" sub-title="更多"></u-section>
  6. </view>
  7. </view>
  8. </template>
  9. <script>
  10. import {
  11. checkLogin
  12. } from '@/api/login.js'
  13. import {
  14. getMapStoreList
  15. } from '@/api/store.js'
  16. import {
  17. getLookUpDatas
  18. } from '@/api/data.js'
  19. import {
  20. getUnFinishedOrder
  21. } from '@/api/order.js'
  22. export default {
  23. components: {
  24. },
  25. data() {
  26. return {
  27. imageTopList:[
  28. {photo:''},
  29. {photo:''}
  30. ]
  31. }
  32. },
  33. onReady() {
  34. },
  35. onShow() {
  36. },
  37. onLoad() {
  38. },
  39. methods: {
  40. }
  41. }
  42. </script>
  43. <style lang="scss" scoped>
  44. .content {
  45. .goods{
  46. padding: 30upx 0;
  47. }
  48. }
  49. </style>