webview.vue 501 B

123456789101112131415161718192021222324252627282930313233343536
  1. <template>
  2. <view>
  3. <web-view :src="vuex_webs.url"></web-view>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. onLoad() {
  9. uni.setNavigationBarColor({
  10. frontColor: this.theme.color,
  11. backgroundColor: this.theme.bgColor,
  12. animation: {
  13. duration: 400,
  14. timingFunc: 'easeIn'
  15. }
  16. })
  17. uni.setNavigationBarTitle({
  18. title: this.vuex_webs.title
  19. });
  20. },
  21. data() {
  22. return {
  23. }
  24. },
  25. methods: {
  26. }
  27. }
  28. </script>
  29. <style>
  30. </style>