pang.jiabao
2025-04-25 c85e0e256d32dd2b040443380feb808012994512
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
52
53
54
55
56
57
58
59
 
<template>
    <view>
        <view> 
            <swiper style="height: 500px;" circular="true" vertical="true" display-multiple-items="16" :autoplay="autoplay" :interval="interval" :duration="duration">
                <swiper-item v-for="(item,index) in list" :key="index">
                    <view>{{item}}</view>
                </swiper-item>
            </swiper>
        </view>
    </view>
</template>
 
<script>
    export default{
        name:'',
        data(){
            return{
                autoplay:true,
                interval:1000,
                duration:1000,
                list:[
                    '请点击发行菜单进行发布',
                    '1',
                    '体积较大;若要正式发布',
                    '2',
                    '运行模式下不压缩代码且含有sourcemap',
                    '3',
                    '检查是否启动多个微信开发者工具,如果是则关闭所有打开的微信开发者工具,',
                    '4',
                    '然后再重新运行',
                    '5',
                    '如果出现微信开发者工具启动后白屏的问题',
                    '6',
                    '或者关闭微信开发者工具,然后再从HBuilderX中启动指定页面',
                    '7',
                    '可以通过微信开发者工具切换pages.json中condition配置的页面',
                    '8',
                    '中修改文件并保存,会自动刷新微信模拟器',
                    '9',
                    '微信开发者工具已启动,在HBuilderX',
                    '10',
                ],
            }
        },
    }
</script>
 
<style scoped lang="scss">
    .scroll_box{
        background: #FFFFFF;
        margin: 30rpx;
        border-radius: 10rpx;
        .swiper{
            margin-top: 200px;
            height: 70px;
        }
    }
</style>