web.vue 322 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <view>
  3. <web-view :src="'https://tran.jsshuita.cn/'+type+'.html'"></web-view>
  4. </view>
  5. </template>
  6. <script>
  7. var app;
  8. export default {
  9. data() {
  10. return {
  11. type:"service"
  12. }
  13. },
  14. onLoad({lk}) {
  15. app = this;
  16. app.type = lk;
  17. },
  18. methods: {
  19. }
  20. }
  21. </script>
  22. <style>
  23. </style>