Commit 6d9a271f57aed16a66b0fd8aecb77ba39d61984b

Authored by fengtao
1 parent 26d819fa

fix:修复告警列表下拉刷新显示无数据图片

Showing 1 changed file with 1 additions and 6 deletions
... ... @@ -31,12 +31,7 @@
31 31 <!-- 吸顶组件 -->
32 32 <!-- 自带分页组件 -->
33 33 <mescroll-body ref="mescrollRef" :up="upOption" @init="mescrollInit" :down="downOption" @down="downCallback" @up="upCallback">
34   - <!-- 无数据图片 -->
35   - <view v-if="list.length == 0" style="position: relative;top: 100rpx;flex-direction: column;" class="u-flex">
36   - <view><image style="width: 280rpx;height: 250rpx;" src="../../static/empty.png"></image></view>
37   - <view style="text-align: center;"><text style="font-size: 12px;color: gray;">~ 空空如也 ~</text></view>
38   - </view>
39   - <view v-else class="device-list">
  34 + <view class="device-list">
40 35 <view @click="openAlertDetail(item)" class="list-item" v-for="(item, index) in list" :key="index">
41 36 <view class="u-flex item">
42 37 <view class="item-text text-clip">
... ...