record-video.vue 329 B

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