From a5290e30e2059423cd20c16f6f16b1f79ab72b6b Mon Sep 17 00:00:00 2001 From: weipengfei <2187978347@qq.com> Date: Sat, 30 Mar 2024 13:42:44 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E6=89=B9=E5=8F=91=E4=BA=91?= =?UTF-8?q?=E5=B8=82=E5=9C=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/cloud_warehouse/market/market.vue | 2 +- pages/whole_sale/index.vue | 199 ++++++++++++++++++++++-- 2 files changed, 184 insertions(+), 17 deletions(-) diff --git a/pages/cloud_warehouse/market/market.vue b/pages/cloud_warehouse/market/market.vue index 1fa0feb..ba69c05 100644 --- a/pages/cloud_warehouse/market/market.vue +++ b/pages/cloud_warehouse/market/market.vue @@ -499,7 +499,7 @@ import { Toast } from '../../../libs/uniApi'; }) }, merClassifly() { - merClassifly(259).then(res => { + merClassifly().then(res => { this.store_category = [{ category_name: '全部', merchant_category_id: '', diff --git a/pages/whole_sale/index.vue b/pages/whole_sale/index.vue index a77fc65..5c7c7d2 100644 --- a/pages/whole_sale/index.vue +++ b/pages/whole_sale/index.vue @@ -207,6 +207,56 @@ height: 305rpx; } } + .goods_list { + .goods { + width: 690rpx; + height: 200rpx; + margin: 30rpx auto; + margin-top: 0; + background-color: #fff; + border-radius: 24rpx; + display: flex; + + .avatar { + height: 160rpx; + width: 160rpx; + margin: 20rpx; + border-radius: 12rpx; + overflow: hidden; + position: relative; + } + + .content { + margin: 20rpx 0; + width: 470rpx; + display: flex; + flex-direction: column; + justify-content: space-between; + + .content-head { + width: 470rpx; + display: flex; + justify-content: space-between; + align-items: flex-end; + font-size: 28rpx; + color: #333; + + .title { + width: 360rpx; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + } + } + + .content-two { + display: flex; + font-size: 24rpx; + color: #666; + } + } + } + }