| | |
| | | <view v-for="(item,index) of listFilter" :key="item.id" class="canteen-item list"
|
| | | @click.stop="toDetailList(item)">
|
| | | <view class="m-r-10">
|
| | | <image :src="item.imageUrl" mode="scaleToFill" class="cover" :lazy-load="true"
|
| | | @click.stop="previewImg(item.imageUrl)">
|
| | | <!-- @click.stop="previewImg(item.imageUrl)" -->
|
| | | <image :src="item.imageUrl" mode="scaleToFill" class="cover" :lazy-load="true">
|
| | | </image>
|
| | | </view>
|
| | | <view class="cateen_infos list">
|
| | | <view class="title">{{item.name}}</view>
|
| | | <view class="price">¥{{minWeightPrice(item)}}-{{maxWeightPrice(item)}}</view>
|
| | |
|
| | | <view class="desc">在售 {{item.stock||'-'}} 扎</view>
|
| | |
|
| | | </view>
|
| | |
| | | font-weight: 500;
|
| | | font-size: 28rpx;
|
| | | color: #000000;
|
| | | line-height: 40rpx;
|
| | | line-height: 40rpx; |
| | | min-height: 80rpx; |
| | | text-align:center;
|
| | | }
|
| | |
|
| | | .desc {
|
| | |
| | | font-size: 24rpx;
|
| | | color: #CF0000;
|
| | | line-height: 34rpx;
|
| | | text-align: left;
|
| | | text-align: center;
|
| | | }
|
| | |
|
| | |
|