webView.vue 635 B

12345678910111213141516171819202122232425262728293031323334
  1. <template>
  2. <div>
  3. <view class="navbar">
  4. <navbar ref="navbar" :config="config" backColor="#666"></navbar>
  5. </view>
  6. <web-view :src="url"></web-view>
  7. </div>
  8. </template>
  9. <script>
  10. export default {
  11. data(){
  12. return{
  13. config: {
  14. title: '松河生活平台',
  15. color: '#333',
  16. //背景颜色;参数一:透明度(0-1);参数二:背景颜色(array则为线性渐变,string为单色背景)
  17. backgroundColor: [1, '#ffffff'],
  18. statusBarFontColor: '#333',
  19. },
  20. url:""
  21. }
  22. },
  23. onLoad(options) {
  24. if(options.linkUrl){
  25. this.url = options.linkUrl
  26. }
  27. }
  28. }
  29. </script>
  30. <style>
  31. </style>