12345678910111213141516171819202122232425262728293031323334 |
- <template>
- <div>
- <view class="navbar">
- <navbar ref="navbar" :config="config" backColor="#666"></navbar>
- </view>
- <web-view :src="url"></web-view>
- </div>
- </template>
- <script>
- export default {
- data(){
- return{
- config: {
- title: '松河生活平台',
- color: '#333',
- //背景颜色;参数一:透明度(0-1);参数二:背景颜色(array则为线性渐变,string为单色背景)
- backgroundColor: [1, '#ffffff'],
- statusBarFontColor: '#333',
- },
- url:""
- }
- },
- onLoad(options) {
- if(options.linkUrl){
- this.url = options.linkUrl
- }
- }
- }
- </script>
- <style>
- </style>
|