webview.vue 507 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <template>
  2. <view class="app-container">
  3. <web-view :webview-styles="webviewStyles" :src="link"></web-view>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. webviewStyles: {
  11. progress: {
  12. color: '#FF3333'
  13. }
  14. },
  15. link: '',
  16. }
  17. },
  18. onLoad({link}) {
  19. this.link = link;
  20. },
  21. methods: {
  22. }
  23. }
  24. </script>
  25. <style lang="scss">
  26. .app-container {
  27. background: #F4F2F2;
  28. padding: 0 30rpx;
  29. padding-top: 20rpx;
  30. box-sizing: border-box;
  31. }
  32. </style>