detail.vue 635 B

1234567891011121314151617181920212223242526272829303132
  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>
  7. </template>
  8. </page-theme>
  9. </template>
  10. <script>
  11. import themeMixins from '@/pages/yuecai/mixins/themeMixins.js';
  12. export default {
  13. mixins: [themeMixins],
  14. data() {
  15. return {}
  16. },
  17. methods: {
  18. getDishList() {
  19. this.$u.api.getDishList().then(res=> {
  20. //res.data.records
  21. })
  22. }
  23. },
  24. onLoad(options) {
  25. this.getDishList();
  26. },
  27. }
  28. </script>
  29. <style scoped lang="scss">
  30. </style>