|
17 | 17 | <view v-for="(item, index) in goods" :key="index" class="list" @click="toDetailsTap"> |
18 | 18 | <image :src="item.pic" class="image" mode="aspectFill" lazy-load="true" @click="goDetail(item)" /> |
19 | 19 | <view class="r"> |
20 | | - <view class="goods-title" @click="goDetail(item)">{{item.name}}</view> |
| 20 | + <view class="goods-title u-line-3 pt16" @click="goDetail(item)"> |
| 21 | + <u-tag v-if="item.supplyType == 'vop_jd' || item.supplyType == 'jdJoycityPoints'" text="京东自营" bgColor="#e64340" borderColor="#e64340" size="mini" class="goods-title-tag"></u-tag> |
| 22 | + <text class="goods-title">{{ item.name }}</text> |
| 23 | + </view> |
21 | 24 | <u--text v-if="item.characteristic" class="goods-title" :text="item.characteristic" size="28rpx" |
22 | 25 | color="#c95060"></u--text> |
23 | 26 | <view class="price-score"> |
24 | 27 | <view v-if="item.minPrice" class="item"><text>¥</text>{{item.minPrice}}</view> |
25 | | - <view v-if="item.minScore" class="item"><text>∮</text>{{item.minScore}}</view> |
| 28 | + <view v-if="item.minScore" class="item"><text><image class="score-icon" src="/static/images/score.png"></image></text>{{item.minScore}}</view> |
26 | 29 | </view> |
27 | 30 | </view> |
28 | 31 |
|
|
34 | 37 | <view class="img-box"> |
35 | 38 | <image :src="item.pic" class="image" mode="aspectFill" lazy-load="true" @click="goDetail(item)" /> |
36 | 39 | </view> |
37 | | - <u--text class="goods-title" :text="item.name" :lines="3" size="28rpx" color="#333" @click="goDetail(item)"></u--text> |
| 40 | + <view class="goods-title u-line-3 pt16" @click="goDetail(item)"> |
| 41 | + <u-tag v-if="item.supplyType == 'vop_jd' || item.supplyType == 'jdJoycityPoints'" text="京东自营" bgColor="#e64340" borderColor="#e64340" size="mini" class="goods-title-tag"></u-tag> |
| 42 | + <text class="goods-title">{{ item.name }}</text> |
| 43 | + </view> |
38 | 44 | <u--text v-if="item.characteristic" class="goods-title" :text="item.characteristic" size="28rpx" |
39 | 45 | color="#c95060"></u--text> |
40 | 46 | <view class="price-score"> |
41 | 47 | <view v-if="item.minPrice" class="item"><text>¥</text>{{item.minPrice}}</view> |
42 | | - <view v-if="item.minScore" class="item"><text>∮</text>{{item.minScore}}</view> |
| 48 | + <view v-if="item.minScore" class="item"><text><image class="score-icon" src="/static/images/score.png"></image></text>{{item.minScore}}</view> |
43 | 49 | </view> |
44 | 50 | </view> |
45 | 51 | </view> |
|
0 commit comments