开发app页面,页面在浏览器上能显示出来,到了手机上就显示不出来了

img

img


<k-scroll-view ref="k-scroll-view" :refreshType="refreshType" :refreshTip="refreshTip" :loadTip="loadTip"
                :loadingTip="loadingTip" :emptyTip="emptyTip" :touchHeight="touchHeight" :height="height"
                :bottom="bottom" :autoPullUp="autoPullUp" @onPullDown="handlePullDown" @onPullUp="handleLoadMore">
                <view class="main">
                    <view v-for="(item, index) in list" :key="index" :data-index="index" class="order-item"
                        @touchstart="drawStart" @touchmove="drawMove" @touchend="drawEnd"
                        :style="'right:'+item.right+'px'">
                        <view class="content" style="display: flex;" @tap="openDetail(item)">
                            ...
                        </view>
                        <view class="remove" @click="delData(item)" v-if="item.status==0">
                            ...
                        </view>
                    </view>
                </view>
            </k-scroll-view>

1、排查是否有数据
2、排查组件高度问题