mirror of
				https://github.com/YunaiV/ruoyi-vue-pro.git
				synced 2025-10-31 18:49:06 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			35 lines
		
	
	
		
			593 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			593 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|   <view v-if="params.url">
 | |
|     <web-view :webview-styles="webviewStyles" :src="`${params.url}`"></web-view>
 | |
|   </view>
 | |
| </template>
 | |
| 
 | |
| <script>
 | |
|   export default {
 | |
|     data() {
 | |
|       return {
 | |
|         params: {},
 | |
|         webviewStyles: {
 | |
|           progress: {
 | |
|             color: "#FF3333"
 | |
|           }
 | |
|         }
 | |
|       }
 | |
|     },
 | |
|     props: {
 | |
|       src: {
 | |
|         type: [String],
 | |
|         default: null
 | |
|       }
 | |
|     },
 | |
|     onLoad(event) {
 | |
|       this.params = event
 | |
|       if (event.title) {
 | |
|         uni.setNavigationBarTitle({
 | |
|           title: event.title
 | |
|         })
 | |
|       }
 | |
|     }
 | |
|   }
 | |
| </script>
 | 
