order.vue 257 B

123456789101112131415161718192021222324
  1. <template>
  2. <view class="order-index">
  3. order page
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. }
  11. },
  12. methods: {
  13. }
  14. }
  15. </script>
  16. <style lang="scss">
  17. .order-index {
  18. background: #fff;
  19. }
  20. </style>