1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
| <script>
| export default {
| name: "index",
| data() {
| return {
| webviewUrl: `https://test-half.zrgy-bbg.com?orderNo=2017082991934296064&customerId=2017082994761068546&appId=94e898c4-7eba-4c7d-88c5-852b4f2e4c6e&unControl=true&returnUrl=null&showImage=1&items=60&title=星享购&protocol=0`, // 默认地址
| webviewStyles: {
| progress: {
| color: 'transparent'
| }
| }
| }
| },
| onLoad(option) {
| // 如果页面传了参数,可以拼接到 url
| if (option && option.path) {
| this.webviewUrl = `${this.webviewUrl}${option.path}`;
| }
| }
| }
| </script>
|
| <template>
| <view class="container">
| <web-view
| :webview-styles="webviewStyles"
| :src="webviewUrl"
| />
| </view>
| </template>
|
| <style scoped lang="scss">
| .container {
| width: 100%;
| height: 100vh;
| display: flex;
| }
| web-view {
| flex: 1; // 自适应填满
| }
| </style>
|
|