order.vue 362 B

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