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> </view>
<view class="" v-if="pageShow"> <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)"> <view class="content" @click="detailInfo(item)">
<image <image
class="image" class="image"
@ -54,7 +54,6 @@
<view class="" @click="productStatusChange(item)">{{ item.status === 30111 ? '下架' : '上架' }}</view> <view class="" @click="productStatusChange(item)">{{ item.status === 30111 ? '下架' : '上架' }}</view>
</view> </view>
</view> </view>
<uGap></uGap>
</view> </view>
</scroll-list> </scroll-list>
</view> </view>
@ -104,7 +103,6 @@ export default {
size: 10, size: 10,
auto: true, auto: true,
emptyText: '暂无数据~', emptyText: '暂无数据~',
background: '#F7F8FA',
disabled: false disabled: false
}, },
pattern: { pattern: {

Loading…
Cancel
Save