chenhaozhe
2026-01-15 72ea36da98e2e5803386257e72242dbc29f6daa6
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
42
43
44
45
46
47
48
49
50
51
<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'
              // #ifdef APP-PLUS
                uni.showLoading({
                    title: "加载中..."
                })
                setTimeout(() => {
                    plus.screen.unlockOrientation();
                    if (pageMode == 'horizontal') {
                        plus.screen.lockOrientation('landscape-primary');
                    } else {
                        plus.screen.lockOrientation('portrait-primary');
                    }
                    uni.hideLoading();
                }, 800)
                //#endif
 
            
 
        },
        async onUnload() {
            // 恢复到竖屏
            plus.screen.unlockOrientation()
            plus.screen.lockOrientation('portrait-primary');
        },
    }
</script>
 
<style lang="scss">
 
</style>