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; + } + } + } + }