瑶都万能墙
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
630 B

7 months ago
  1. <template>
  2. <view class="page">
  3. <navbar title="美食" leftClick @leftClick="$utils.navigateBack" />
  4. <view class="list">
  5. <gourmetItem
  6. :key="index"
  7. v-for="(item, index) in list"
  8. :item="item"
  9. />
  10. </view>
  11. </view>
  12. </template>
  13. <script>
  14. import mixinsList from '@/mixins/list.js'
  15. import gourmetItem from '../components/list/gourmet/gourmetItem.vue'
  16. export default {
  17. mixins: [mixinsList],
  18. components : {
  19. gourmetItem,
  20. },
  21. data() {
  22. return {
  23. mixinsListApi : 'getStorePage',
  24. }
  25. },
  26. methods: {
  27. }
  28. }
  29. </script>
  30. <style scoped lang="scss">
  31. .page{
  32. .list{
  33. padding: 20rpx;
  34. }
  35. }
  36. </style>