| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204 |
- <template>
- <view class="diy-assembleproduct" v-if="itemData.data.product_list.length>0">
- <view class="diy-head d-b-c" :style="'background-image: url('+itemData.style.background_image+');'">
- <view class="right" @click="gotoList">
- <text class="f26 gray9">更多</text>
- <text class="iconfont icon-jiantou"></text>
- </view>
- </view>
- <view class="diy-body">
- <scroll-view scroll-x="true">
- <view class="product-list column__3">
- <view class="product-item" v-for="(item, index) in itemData.data.product_list" :key="index" @click="gotoDetail(item)">
- <!-- 两列三列 -->
- <template>
- <view class="product-cover pr">
- <image :src="item.product.file_path" mode="aspectFit"></image>
- <view class="assemble-num"><text>{{ item.assemble_num }}人团</text></view>
- </view>
- <view class="product-info p-0-10">
- <view class="product-title" v-if="itemData.style.show.productName === true">{{ item.product.product_name }}</view>
- <view class="product-price" v-if="itemData.style.show.assemblePrice == true">
- <text class="red f20">¥</text>
- <text class="red fb f32">{{ item.assemble_price }}</text>
- <text class="ml10 gray9 text-d-line f20" v-if="itemData.style.show.linePrice == true">¥</text>
- <text class="gray9 f24 text-d-line" v-if="itemData.style.show.linePrice == true">{{ item.product_price }}</text>
- </view>
- </view>
- <view class="assemble_btn">去开团</view>
- </template>
- </view>
- </view>
- </scroll-view>
- </view>
- </view>
- </template>
- <script>
- export default {
- components: {},
- data() {
- return {};
- },
- props: ['itemData'],
- created() {
- console.log(this.$props.itemData)
- },
- methods: {
- scroll(e) {},
- /*跳转列表*/
- gotoList() {
- let url = '/pages/plus/assemble/list/list';
- this.gotoPage(url);
- },
- /*跳转产品详情*/
- gotoDetail(e) {
- let url = '/pages/plus/assemble/detail/detail?assemble_product_id=' + e.assemble_product_id;
- this.gotoPage(url);
- }
- }
- };
- </script>
- <style lang="scss">
- .diy-assembleproduct {
- margin: 20rpx;
- border-radius: 20rpx;
- padding: 0 20rpx 20rpx;
- background: #FFFFFF;
- }
- .diy-assembleproduct .diy-head {
- height: 90rpx;
- display: flex;
- justify-content: flex-end;
- align-items: center;background-size: 100% 100%;
-
- }
- .diy-assembleproduct .diy-head .name {
- font-size: 32rpx;
- font-weight: bold;
- }
- .diy-assembleproduct .diy-head .datetime {
- margin-left: 40rpx;
- }
- .diy-assembleproduct .diy-head .datetime::v-deep>span {
- display: inline-block;
- }
- .diy-assembleproduct .diy-head .datetime::v-deep text {
- font-size: 24rpx;
- color: #F6220C;
- }
- .diy-assembleproduct .diy-head .datetime::v-deep .box {
- padding: 4rpx;
- font-size: 22rpx;
- background: #F6220C;
- color: #F6220C;
- }
- .diy-assembleproduct .diy-head .icon-jiantou {
- margin-left: 8rpx;
- color: #999999;
- font-size: 22rpx;
- }
- .diy-assembleproduct .product-list {
- flex-wrap: nowrap;
- }
- .diy-assembleproduct .product-list .product-item {
- flex-shrink: 0;
- border-radius: 12rpx;
- width: 245rpx;
- overflow: hidden;
- }
- .diy-assembleproduct .product-list image {
- width: 100%;
- height: 100%;
- background-color: #f6f6f6;
- }
- .diy-assembleproduct .product-list .product-title {
- margin: 0 auto;
- margin-top: 32rpx;
- width: 80%;
- height: 30rpx;
- display: -webkit-box;
- overflow: hidden;
- -webkit-line-clamp: 1;
- -webkit-box-orient: vertical;
- font-size: 30rpx;
- }
- .diy-assembleproduct .product-list .product-price {
- margin: 0 auto;
- margin-top: 16rpx;
- margin-bottom: 24rpx;
- width: 80%;
- // line-height: 24rpx;
- display: -webkit-box;
- overflow: hidden;
- -webkit-line-clamp: 1;
- -webkit-box-orient: vertical;
- text-align: left;
- }
- .diy-assembleproduct .product-list.column__3 .product-title {
- height: 30rpx;
- line-height: 30rpx;
- font-size: 30rpx;
- }
- .diy-assembleproduct .product-list.column__2,
- .diy-assembleproduct .product-list.column__3 {
- display: flex;
- justify-content: flex-start;
- align-items: center;
- }
- .diy-assembleproduct .product-list .assemble-num {
- padding: 0rpx 16rpx;
- font-size: 24rpx;
- color: #ffffff;
- position: absolute;
- bottom: -2rpx;
- left:0;
- background-color: #fd5456;
- border-top-right-radius: 12rpx;
- height: 33rpx;
- line-height: 33rpx;
- }
- .diy-assembleproduct .column__3 .product-item {
- width: 245rpx;
- margin-right: 20rpx;
- }
- .diy-assembleproduct .column__3 .product-cover {
- width: 244rpx;
- height: 226rpx;
- margin: 0 auto;
- border-radius: 12rpx;
- overflow: hidden;
- }
- .diy-assembleproduct .column__3 .assemble_btn {
- background: #fe3c30;
- width: 202rpx;
- height: 46rpx;
- line-height: 46rpx;
- font-size: 22rpx;
- text-align: center;
- color: #FFFFFF;
- margin: 0 auto;
- border-radius: 24rpx;
- }
- </style>
|