web.vue 480 B

123456789101112131415161718192021222324252627282930
  1. <template>
  2. <view class="container">
  3. <web-view id="web-view" :src="path" />
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data () {
  9. return {
  10. path: "",
  11. title: ""
  12. }
  13. },
  14. onLoad (opt) {
  15. this.path = opt.path
  16. this.title = opt.title
  17. uni.setNavigationBarTitle({
  18. title: this.title
  19. });
  20. },
  21. }
  22. </script>
  23. <style lang='scss' scoped>
  24. ::v-deep .u-navbar__content,
  25. ::v-deep .u-status-bar {
  26. background-color: #c90700 !important;
  27. }
  28. </style>