index.vue 495 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <template>
  2. <view class="content">
  3. sdfdf
  4. </view>
  5. </template>
  6. <script>
  7. import {
  8. checkLogin
  9. } from '@/api/login.js'
  10. import {
  11. getMapStoreList
  12. } from '@/api/store.js'
  13. import {
  14. getLookUpDatas
  15. } from '@/api/data.js'
  16. import {
  17. getUnFinishedOrder
  18. } from '@/api/order.js'
  19. export default {
  20. components: {
  21. },
  22. data() {
  23. return {
  24. }
  25. },
  26. onReady() {
  27. },
  28. onShow() {
  29. },
  30. onLoad() {
  31. },
  32. methods: {
  33. }
  34. }
  35. </script>
  36. <style lang="scss" scoped>
  37. .content {
  38. }
  39. </style>