index.vue 549 B

12345678910111213141516171819202122232425
  1. <template>
  2. <page-theme :theme="theme">
  3. <template>
  4. <view class="f-30 p-40 flex-dir-column flex-x-center">
  5. <view class="col-info-d t-c m-b-30">搜索框</view>
  6. <view class="col-info-d t-c m-b-30">名店列表</view>
  7. </view>
  8. </template>
  9. </page-theme>
  10. </template>
  11. <script>
  12. import themeMixins from '@/pages/yuecai/mixins/themeMixins.js';
  13. export default {
  14. mixins: [themeMixins],
  15. data() {
  16. return {}
  17. },
  18. methods: {},
  19. onLoad(options) {},
  20. }
  21. </script>
  22. <style scoped lang="scss">
  23. </style>