123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- <template>
- <view class="supplier-content clearfix">
- <view class="tui-group-name" >
- <view class="tui-group-title">
- <text> 优质供应商 </text>
- </view>
- <view class="tui-sub__desc">采美正品联盟 质量保证</view>
- </view>
- <view class="supplier-banner">
- <image :src="banner" mode="" @click="BannerNavigateTo(supplierObj.linkType,supplierObj.linkParam.id,supplierObj.wwwLink,supplierObj.linkParam.keyword)"></image>
- </view>
- <view class="swiper-goods-box">
- <view class="goods-box-item" v-for="(item,index) in supplierObj.qualitySupplierList" :key="index" @click="NavToDetailPage(item)">
- <image :src="item.image" mode="" class="box-item-image"></image>
- <view class="box-item-mask">{{ item.supplierName }}</view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default{
- name:"supplierList",
- props:{
- supplierObj:{
- type:Object
- }
- },
- data() {
- return{
- banner:'',
- supplierList:[]
- }
- },
- created(){
- this.initData(this.supplierObj)
- },
- computed: {
-
- },
- methods:{
- initData(data){
- this.banner = data.crmImage
- this.supplierList = data.qualitySupplierList
- },
- BannerNavigateTo(linkType,linkId,linkHref,keyword) {//跳转
- this.$api.BannerNavigateTo(linkType,linkId,linkHref,keyword)
- },
- NavToDetailPage(item) {//跳转
- this.$api.navigateTo(`/supplier/pages/user/my-shop?shopId=${item.linkParam.id}`)
- }
- }
- }
- </script>
- <style lang="scss">
- .supplier-content{
- background-color: #F7F7F7;
- width: 100%;
- height: auto;
- box-sizing: border-box;
- padding: 0 24rpx;
- }
- .tui-group-name {
- width: 100%;
- height: 92rpx;
- padding: 20rpx 0;
- }
- .tui-group-title{
- width: 100%;
- float: left;
- font-size: 34rpx;
- font-weight: bold;
- text-align: left;
- line-height: 49rpx;
- color: #333;
- }
- .tui-sub__desc {
- width: 100%;
- float: left;
- color: rgba(153,153,153,0.9);
- font-size: $font-size-26;
- }
- .supplier-banner{
- width: 100%;
- height: 240rpx;
- float: left;
- margin-top: 24rpx;
- image{
- width: 100%;
- height: 240rpx;
- display: block;
- }
- }
- .swiper-goods-box{
- width: 100%;
- height: auto;
- float: left;
- margin-top: 24rpx;
- .goods-box-item{
- width: 160rpx;
- height: 200rpx;
- float: left;
- margin-right: 20rpx;
- margin-bottom: 20rpx;
- background-color: #FFFFFF;
- &:nth-child(4n){
- margin-right: 0;
- }
- .box-item-image{
- width: 160rpx;
- height: 160rpx;
- display: block;
- float: left;
- }
- .box-item-mask{
- width: 100%;
- height: 40rpx;
- line-height: 40rpx;
- font-size: $font-size-20;
- text-align: center;
- color: #666666;
- background-color: #f9f9f9;
- float: left;
- box-sizing: border-box;
- padding:0 20rpx;
- white-space: normal;
- word-break: break-all;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 1;
- }
- }
- }
- </style>
|