List-link.vue 342 B

12345678910111213141516171819202122232425262728293031
  1. <template>
  2. <view>
  3. <web-view :src="paths"></web-view>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. paths:''
  11. }
  12. },
  13. onLoad(e) {
  14. console.log(1111111,e)
  15. // uni.setNavigationBarTitle({
  16. // title:e.name
  17. // })
  18. this.paths=e.link;
  19. },
  20. methods: {
  21. }
  22. }
  23. </script>
  24. <style>
  25. </style>