order.vue 292 B

12345678910111213141516171819202122232425
  1. <template>
  2. <view class="order-index">
  3. </view>
  4. </template>
  5. <script>
  6. export default {
  7. data() {
  8. return {
  9. }
  10. },
  11. onReady() {},
  12. methods: {}
  13. }
  14. </script>
  15. <style lang="scss">
  16. .order-index {
  17. width: 100%;
  18. height: 100%;
  19. position: absolute;
  20. }
  21. </style>