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
| <template>
| <view>
| <web-view :src="targetSrc"></web-view>
| </view>
| </template>
|
| <script>
| export default {
| data() {
| return {
| targetSrc: '',
| pageMode: '',
| };
| },
| onLoad(e) {
| this.targetSrc = e.src
| if (e.pageTitle) {
| uni.setNavigationBarTitle({
| title: e.pageTitle
| })
| }
| let pageMode = e.pageMode || 'vertical'
| if (pageMode == 'horizontal') {
| plus.screen.lockOrientation('landscape-primary');
| } else {
| plus.screen.lockOrientation('portrait-primary');
| }
|
| },
| onUnload() {
| // 恢复到竖屏
| plus.screen.lockOrientation('portrait-primary');
| }
| }
| </script>
|
| <style lang="scss">
|
| </style>
|
|