123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463 |
- <template>
- <view :style="{ paddingTop: mbConfig + 'rpx'}" v-if="tempArr.length">
- <view class="index-product-wrapper" :style="{ background: themeColor,borderRadius: bgStyle+'rpx'}">
-
- <block v-if="itemStyle == 0">
- <view class="list-box animated listA" :class="tempArr.length > 0 ? 'fadeIn on' : ''">
- <view class="item" v-for="(item, index) in tempArr" :key="index" @click="goDetail(item)">
- <view class="pictrue" :class="'cont'+conStyle">
- <easy-loadimage mode="widthFix" :image-src="item.image"></easy-loadimage>
- <view v-if="item.stock == 0" class="sell_out">已售罄</view>
- <view v-if="item.border_pic" :style="{ backgroundImage: `url(${item.border_pic})` }" class="border-picture"></view>
- </view>
- <view class="text-info" style="display: flex; flex-direction: column; justify-content: space-between;">
- <view>
- <view v-if="titleShow" class="title line2">{{ item.store_name }}</view>
- <view class="merchant_info">
- <view v-if="item.merchant && item.merchant.type_name" :style="'background:'+labelColor" class="font-bg-red">{{item.merchant.type_name}}</view>
- <view class="txt" :style="'border-color:'+priceColor+';color:'+priceColor+';'" v-if="item.issetCoupon && couponShow">领券</view>
- <view class="txt delivery" v-if="item.delivery_free">包邮</view>
- </view>
- </view>
- <view v-if="priceShow" class="price acea-row" :style="'color:'+priceColor">
- <view>
- ¥
- <text>{{ item.price }}</text>
- </view>
- </view>
- </view>
- </view>
- </view>
- </block>
-
- <block v-if="itemStyle == 1">
- <view class="list-box listS animated" :class="tempArr.length > 0 ? 'fadeIn on' : ''">
- <view class="item" v-for="(item, index) in tempArr" :key="index" @click="goDetail(item)" :class="'bg'+conStyle">
- <view class="pictrue picture1" :class="'cont'+conStyle">
-
- <easy-loadimage mode="widthFix" :image-src="item.image"></easy-loadimage>
- <view v-if="item.stock == 0" class="sell_out">已售罄</view>
- <view v-if="item.border_pic" :style="{ backgroundImage: `url(${item.border_pic})` }" class="border-picture"></view>
- </view>
- <view class="text-info">
- <view v-if="titleShow" class="title line1">{{ item.store_name }}</view>
- <view v-if="priceShow" class="price acea-row" :style="'color:'+priceColor">
- <view>¥<text>{{ item.price }}</text></view>
- </view>
- </view>
- </view>
- </view>
- </block>
-
- <block v-if="itemStyle == 2">
- <view class="list-box animated listB" :class="tempArr.length > 0 ? 'fadeIn on' : ''">
- <view class="item" v-for="(item, index) in tempArr" :key="index" @click="goDetail(item)">
- <view class="pictrue" :class="'cont'+conStyle">
-
- <easy-loadimage mode="widthFix" :image-src="item.image"></easy-loadimage>
- <view v-if="item.stock == 0" class="sell_out">已售罄</view>
- <view v-if="item.border_pic" :style="{ backgroundImage: `url(${item.border_pic})` }" class="border-picture"></view>
- </view>
- <view class="text-info" style="display: flex; flex-direction: column; justify-content: space-between;">
- <view v-if="titleShow" class="title line1">{{ item.store_name }}</view>
- <view v-if="priceShow" class="price">
- <view v-if="priceShow" :style="'color:'+priceColor">
- ¥<text>{{ item.price }}</text>
- </view>
- </view>
- </view>
- </view>
- </view>
- </block>
-
- <block v-if="itemStyle == 3">
- <view class="list-box animated listC" :class="tempArr.length > 0 ? 'fadeIn on' : ''">
- <view class="item" v-for="(item, index) in tempArr" :key="index" @click="goDetail(item)" :style="'border-radius:'+bgStyle+'rpx;'">
- <view class="pictrue" :class="'cont'+conStyle">
- <easy-loadimage mode="widthFix" :image-src="item.image"></easy-loadimage>
- </view>
- <view class="text-info" style="display: flex; flex-direction: column; justify-content: space-between;">
- <view v-if="titleShow" class="title line2">{{ item.store_name }}</view>
- <view v-if="priceShow || opriceShow" class="price">
- <view v-if="priceShow" :style="'color:'+priceColor">
- <text>¥</text>
- {{ item.price }}
- </view>
- </view>
- </view>
- </view>
- </view>
- </block>
- </view>
- </view>
- </template>
- <script>
- import { getProductData } from '@/api/api.js';
- export default {
- name: 'goodList',
- props: {
- dataConfig: {
- type: Object,
- default: () => {}
- },
- merId: {
- type: String || Number,
- default: ''
- }
- },
- data() {
- return {
- tempArr: [],
- mbConfig: this.dataConfig.mbConfig.val*2,
- numConfig: this.dataConfig.numConfig.val ? this.dataConfig.numConfig.val : this.dataConfig.numConfig.val,
- themeColor: this.dataConfig.themeColor.color[0].item,
- priceColor: this.dataConfig.fontColor.color[0].item,
- labelColor: this.dataConfig.labelColor.color[0].item,
- itemStyle: this.dataConfig.itemStyle.type,
- sortType: this.dataConfig.goodsSort.type,
- conStyle: this.dataConfig.conStyle.type,
- bgStyle: this.dataConfig.bgStyle.type ? '20' : '0',
- type: this.dataConfig.tabConfig.tabVal || 0,
- selectId: this.dataConfig.selectConfig.activeValue || 0,
- productIds: this.dataConfig.goodsList.ids || [],
- titleShow: this.dataConfig.titleShow.val,
- priceShow: this.dataConfig.priceShow.val,
- couponShow: this.dataConfig.couponShow.val,
- diy_id: this.dataConfig.did,
- unique: this.dataConfig.timestamp,
- };
- },
- created() {},
- mounted() {
- this.productslist();
- },
- methods: {
- productslist() {
- let data = {};
- if (this.type == 1) {
- data = {
- diy_id: this.diy_id,
- unique: this.unique,
- mer_id: this.merId,
- product_ids: this.productIds.toString(),
- limit: this.productIds.length,
- };
- } else {
- data = {
- diy_id: this.diy_id,
- unique: this.unique,
- mer_id: this.merId,
- order: this.sortType == 2 ? 'price_asc' : this.sortType == 1 ? 'sales' : '',
- limit: this.numConfig,
- };
- if(this.merId){
- data.mer_cate_id = (this.selectId&&this.selectId.toString()) || ''
- }else{
- data.cate_pid = (this.selectId&&this.selectId.toString()) || ''
- }
- }
- getProductData(data).then(res => {
- this.tempArr = res.data.list;
- });
- },
- goDetail(item) {
- this.$emit('detail', item);
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- .index-product-wrapper {
- margin: 0 20rpx;
- padding: 20rpx 20rpx 0;
- .list-box {
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
- .item {
- width: 328rpx;
- margin-bottom: 20rpx;
- overflow: hidden;
- position: relative;
- &.on {
- border-radius: 0;
- }
- .pictrue_log {
- width: 92rpx;
- height: 44rpx;
- font-size: 26rpx;
- line-height: 44rpx;
- }
- .pictrue,/deep/image,/deep/.easy-loadimage,/deep/uni-image {
- width: 100%;
- display: block;
- position: relative;
- .border-picture {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background: center/cover no-repeat;
- }
- }
- .picture1,/deep/.picture1 image,/deep/.picture1 .easy-loadimage,/deep/.picture1 uni-image {
- height: 346rpx;
- position: relative;
- .border-picture {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background: center/cover no-repeat;
- }
- .sell_out {
- display: flex;
- width: 150rpx;
- height: 150rpx;
- align-items: center;
- justify-content: center;
- border-radius: 100%;
- background: rgba(0,0,0,.6);
- color: #fff;
- font-size: 30rpx;
- position: absolute;
- top: 50%;
- left: 50%;
- margin: -75rpx 0 0 -75rpx;
- &::before{
- content: "";
- display: block;
- width: 140rpx;
- height: 140rpx;
- border-radius: 100%;
- border: 1px dashed #fff;
- position: absolute;
- top: 5rpx;
- left: 5rpx;
- }
- }
- }
- .cont1,/deep/.cont1 image,/deep/.cont1 .easy-loadimage,/deep/.cont1 uni-image,.cont1 .border-picture{
- border-radius: 16rpx;
- }
- .text-info {
- padding: 10rpx 20rpx 15rpx;
- .title {
- color: #222222;
- }
- .old-price {
- margin-top: 4rpx;
- font-size: 26rpx;
- color: #999;
- text-decoration: line-through;
- text {
- margin-right: 2px;
- font-size: 20rpx;
- }
- }
- .price {
- display: flex;
- margin-top: 20rpx;
- font-size: 26rpx;
- align-items: center;
- text {
- font-size: 36rpx;
- font-weight: 550;
- }
- .ot-price{
- color: #aaa;
- font-size: 26rpx;
- text-decoration: line-through;
- margin-left: 6rpx;
- font-weight: normal;
- margin-top: 10rpx;
- }
- }
- }
- .pictrue {
- position: relative;
- }
- .border-picture {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- border-radius: 8rpx;
- background: center/cover no-repeat;
- }
- }
- .merchant_info{
- display: flex;
- align-items: center;
- margin-top: 20rpx;
- .merchant_type{
- color: #fff;
- line-height: 30rpx;
- padding: 0 10rpx;
- border-radius: 2rpx;
- font-size: 22rpx;
- }
- .txt {
- display: flex;
- align-items: center;
- justify-content: center;
- padding: 0 4rpx;
- height: 28rpx;
- margin-left: 15rpx;
- border: 1px solid $theme-color;
- border-radius: 4rpx;
- font-size: 20rpx;
- font-weight: normal;
- &.delivery{
- color: #FF9000;
- border-color: #FF9000;
- }
- }
- }
- &.on {
- display: flex;
- }
- &.listA {
- .item {
- display: flex;
- width: 100%;
- .pictrue,/deep/image,/deep/.easy-loadimage,/deep/uni-image {
- width: 220rpx;
- height: 220rpx;
- }
- .sell_out {
- display: flex;
- width: 110rpx;
- height: 110rpx;
- align-items: center;
- justify-content: center;
- border-radius: 100%;
- background: rgba(0,0,0,.6);
- color: #fff;
- font-size: 24rpx;
- position: absolute;
- top: 50%;
- left: 50%;
- margin: -55rpx 0 0 -55rpx;
- &::before{
- content: "";
- display: block;
- width: 100rpx;
- height: 100rpx;
- border-radius: 100%;
- border: 1px dashed #fff;
- position: absolute;
- top: 5rpx;
- left: 5rpx;
- }
- }
- .text-info {
- width: 490rpx;
- }
- }
- }
- &.listB {
- justify-content: inherit;
- .item {
- width: 31.3%;
- margin-right: 3.05%;
- .pictrue,/deep/image,/deep/.easy-loadimage,/deep/uni-image {
- height: 220rpx;
- }
- .sell_out {
- display: flex;
- width: 110rpx;
- height: 110rpx;
- align-items: center;
- justify-content: center;
- border-radius: 100%;
- background: rgba(0,0,0,.6);
- color: #fff;
- font-size: 24rpx;
- position: absolute;
- top: 50%;
- left: 50%;
- margin: -55rpx 0 0 -55rpx;
- &::before{
- content: "";
- display: block;
- width: 100rpx;
- height: 100rpx;
- border-radius: 100%;
- border: 1px dashed #fff;
- position: absolute;
- top: 5rpx;
- left: 5rpx;
- }
- }
- &:nth-child(3n) {
- margin-right: 0;
- }
- .price{
- font-size: 20rpx;
- text{
- font-size: 28rpx;
- }
- }
- .text-info{
- padding: 10rpx 4rpx;
- }
- }
- }
- &.listC{
- .item{
- width: 100%;
- .pictrue,/deep/image,/deep/.easy-loadimage,/deep/uni-image{
- height: 320rpx;
- }
- .price{
- margin-top: 20rpx;
- font-size: 40rpx;
- display: flex;
- align-items: center;
- .old-price{
- font-weight: normal;
- font-size: 22rpx;
- margin-left: 10rpx;
- }
- }
- }
- }
- &.listS{
- .item{
- background: #ffffff;
- }
- .price{
- font-size: 40rpx;
- display: flex;
- align-items: baseline;
- .old-price{
- font-weight: normal;
- font-size: 22rpx;
- margin-left: 10rpx;
- }
- }
- .cont1,/deep/.cont1 image,/deep/.cont1 .easy-loadimage,/deep/.cont1 uni-image,.cont1 .border-picture{
- border-radius: 16rpx 16rpx 0 0;
- }
- .bg1{
- border-radius: 16rpx;
- }
- }
- }
- }
- </style>
|