buffeyu 4 years ago
parent
commit
4df6ffc20c
1 changed files with 2 additions and 4 deletions
  1. 6
      pages/mall/index.vue

6
pages/mall/index.vue

@ -20,8 +20,8 @@
</view>
</view>
<view class="" v-if="pageShow">
<scroll-list ref="list" :option="option" @load="upCallback" @refresh="downCallback" style="background-color: #ffffff">
<view v-for="(item, index) in listData" :key="index">
<scroll-list ref="list" :option="option" @load="upCallback" @refresh="downCallback">
<view v-for="(item, index) in listData" :key="index" style="margin-bottom: 20rpx">
<view class="content" @click="detailInfo(item)">
<image
class="image"
@ -54,7 +54,6 @@
<view class="" @click="productStatusChange(item)">{{ item.status === 30111 ? '下架' : '上架' }}</view>
</view>
</view>
<uGap></uGap>
</view>
</scroll-list>
</view>
@ -104,7 +103,6 @@ export default {
size: 10,
auto: true,
emptyText: '暂无数据~',
background: '#F7F8FA',
disabled: false
},
pattern: {

Loading…
Cancel
Save