123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- <template>
- <view
- class="product-list"
- >
- <view
- class="product-item"
- :style="{width:itemWidth+'px',marginTop:gap+'px'}"
- v-for="(item,index) in list"
- :key="item.id" >
- <view @click="toDetail(item)">
- <image mode="aspectFit" :src="item.productImage+'?x-oss-process=image/resize,p_30'" style="height: 140px;width: 100%;"></image>
- <view class="product-code"><text :max-lines="1" overflow="ellipsis">{{item.productCode}}</text></view>
- </view>
- <view>
- <view class="product-name">{{item.productName}}</view>
- <view class="product-guige"><text :max-lines="2" overflow="ellipsis">{{item.productOrigCode}}</text></view>
- <view class="product-button">
- <view class="price-txt">¥<text>{{Number(item.cost).toFixed(2).toString().split('.')[0]}}</text>.{{Number(item.cost).toFixed(2).toString().split('.')[1]}}</view>
- <view class="flex align_center rebate-tag" v-if="index==1">
- 返<text>{{item.promoRuleValue}}</text>元
- </view>
- <view class="flex align_center rebate-tag" v-if="index==2">
- 买3赠2
- </view>
- <view class="flex align_center tejia-tag" v-if="index==3">
- 特价<text>¥20</text>
- </view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- name: 'productItemSkline',
- props: {
- list: {
- type: Array,
- default: () => []
- },
- index:{
- type: [Number,String],
- default: 0
- },
- gap:{
- type: [Number,String],
- default: 10
- },
- itemWidth:{
- type: [Number,String],
- default: 0
- }
- },
- data() {
- return {
-
- }
- },
- methods: {
- toDetail(item){
- uni.navigateTo({
- url:'/pagesB/shopiing/productDetail?sn='+item.productSn
- })
- this.$emit('detail',item)
- }
- },
- }
- </script>
- <style lang="less">
- .product-list{
- display:flex;
- flex-wrap: wrap;
- justify-content: space-between;
- padding: 0 2%;
- }
- .product-item{
- background: #ffffff;
- border-radius: 10upx;
- box-shadow: 1px 1px 3px #EEEEEE;
- width: 48%;
- margin: 10px 0 0 0;
- display: flex;
- flex-direction: column;
- .price-txt{
- color: red;
- display: flex;
- align-items: baseline;
- font-size: 12px;
- text{
- font-size: 36rpx;
- }
- }
- > view{
- &:first-child{
- position: relative;
- overflow: hidden;
- .product-code{
- color: #666;
- position: absolute;
- width: 100%;
- left:0;
- bottom:0;
- background: rgba(255,255,255,0.7);
- text-align: center;
- }
- }
- &:last-child{
- position: relative;
- flex-grow: 1;
- padding: 10px 10px 35px;
- .product-name{
- font-size: 28rpx;
- color: #333;
- }
- .product-guige{
- margin: 10rpx 0;
- color: #2196F3;
- }
- }
- .product-button{
- position: absolute;
- left: 5%;
- bottom: 0;
- width: 90%;
- padding: 5px 0 10px;
- display: flex;
- align-items: center;
- .rebate-tag{
- background: #ffe7df;
- color: #E91E63;
- padding: 2px 5px;
- font-size: 10px;
- border-radius: 3px;
- margin-left: 6px;
- }
- .tejia-tag{
- color: #E91E63;
- margin-left: 6px;
- font-size: 12px;
- text{
- font-size: 12px;
- color: #999;
- margin-left: 5px;
- }
- }
- }
- }
- }
- </style>
|