中品加油
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

219 lines
5.4 KiB

2 years ago
<template>
2 years ago
<!-- :style="{height:siteItem.oilProductCodeAndPrices && siteItem.oilProductCodeAndPrices.length>3?'220rpx !important':listHeight?listHeight + 'rpx !important':''}" -->
<view class="site-item">
<view class="radius"
:style="'background-image:url('+(siteItem.siteImages?siteItem.siteImages:defaultLogo)+');'">
</view>
<view class="content">
<view class="action">
<view class="text-grey text-sm " style="padding-top: 6rpx;">
<!-- <my-icon iconName="sy-der-icon.png" class="padding-right-xs text-sm"></my-icon> -->
2 years ago
<!-- {{siteItem.juli|distanceFilter}} -->
<text v-if="!location">暂无信息</text>
1 year ago
<text v-else>{{siteItem.juli|distanceFilter}}</text>
2 years ago
</view>
</view>
2 years ago
<view>
2 years ago
<view class="text-cut text-black text-lg padding-right-sm ">{{siteItem.siteName}}</view>
2 years ago
</view>
<view class="listTages">
<!-- <view v-if="siteItem.siteLevel" class=" cu-tag round bg-self--dark-yellow yu-tag text-xs">{{siteItem.siteLevel}}</view> -->
2 years ago
<view class="cu-tag round bg-self-yellow yu-tag text-xs"
:class="siteItem.channelCode=='XOIL'?'tag-red':''">{{siteItem.listTag|channelCodeFamt}}
2 years ago
</view>
<view class="cu-tag round bg-self--dark-yellow yu-tag text-xs" v-show="first">距离最近</view>
</view>
2 years ago
<view class="">
<view class="text-cut color-666 text-sm ">
{{siteItem.address}}
</view>
2 years ago
</view>
2 years ago
<view class="text-gray flex" style="display: flex;flex-wrap: wrap;">
<view v-if="listHeight" class="youpin" style=""
v-for="(item,index) in siteItem.oilProductCodeAndPrices">
2 years ago
<view class="text-bold oil-main-color text-xl padding-right-xs">
{{item.oilProductCode}}
</view>
<view class="oil-main-color text-xl text-bold padding-right-xs" style="padding-right: 0;">
2 years ago
{{item.personalPriceZp|moneyFormat}}
2 years ago
</view>
</view>
<view v-if="!listHeight" class="text-bold yellow-oil text-xl padding-right-xs">
{{siteItem.oilProductCode}}
</view>
<view v-if="!listHeight" class="oil-main-color text-xl text-bold padding-right-xs">
{{siteItem.sitePrice|moneyFormat}}
</view>
<view v-if="!listHeight" class="">
<text class="cu-tag oil-tag radius text-xs"
v-if="siteItem.oilSitePrice - siteItem.sitePrice>0">{{(siteItem.oilSitePrice - siteItem.sitePrice)|moneyFormat}}</text>
2 years ago
</view>
<view v-if="!listHeight" class="text-cut padding-left-sm text-lg">
<text class="text-delete color-333 text-sm padding-right-xs">
{{siteItem.oilSitePrice|moneyFormat}}/L
2 years ago
</text>
2 years ago
<!-- <my-icon iconName="¥.png" class="padding-right-xs icon-rectangle"></my-icon>
2 years ago
<my-icon iconName="f.png" class="padding-right-xs "></my-icon> -->
</view>
2 years ago
</view>
<view class="activity" v-if="siteItem.activitySwitch">
<view class="title">活动</view>
<view class="content">
{{siteItem.activityContent}}
</view>
</view>
2 years ago
</view>
2 years ago
2 years ago
</view>
</template>
<script>
export default {
props: {
1 year ago
location: {
type: Object,
default: () => null
2 years ago
},
2 years ago
siteItem: {
type: Object,
default () {}
},
first: {
type: Boolean,
default: false
},
2 years ago
listHeight: {
type: Number,
default: 0
2 years ago
}
},
data() {
return {
starUrl: this.global.starUrl,
2 years ago
defaultLogo: 'https://publicxingyou.oss-cn-hangzhou.aliyuncs.com/mp-oil/logo_default.png',
audioUrl: ''
2 years ago
}
2 years ago
},
2 years ago
created() {
2 years ago
console.log(this.siteItem, '-----------------')
2 years ago
},
2 years ago
methods: {
},
filters: {
2 years ago
channelCodeFamt(value) {
console.log(value)
if (!value) {
return '未知'
// 渠道编码 ( XOIL:星油 WJY:万金油 LV:老吕(找油网) TY:团油 YDJY:一点加油(壳牌))
// switch (value) {
// case 'XOIL':
// return '星油'
// case 'WJY':
// return '万金油'
// case 'LV':
// return '老吕(找油网)'
// case 'TY':
// return '团油'
// case 'YDJY':
// return '一点加油(壳牌)'
// }
} else {
return value
}
},
2 years ago
distanceFilter(value) {
if (value) {
return value > 1000 ? ((value / 1000).toFixed(2) + 'km') : (value + 'm')
}
},
moneyFormat(value) {
if (value) {
return value.toFixed(2)
} else {
return '0.00'
}
},
}
}
</script>
2 years ago
<style scoped lang="scss">
2 years ago
.site-item {
2 years ago
position: relative;
display: flex;
align-items: flex-start !important;
padding: 25rpx;
// margin-bottom: 1.8rem;
1 year ago
line-height: 1.5rem;
2 years ago
.content {
1 year ago
flex: 1;
2 years ago
overflow: hidden;
1 year ago
2 years ago
.action {
position: absolute;
right: 35rpx;
top: 24rpx;
}
}
1 year ago
2 years ago
>.radius {
margin-right: 30rpx;
width: 96rpx;
height: 96rpx;
font-size: 2em;
background-size: 100% 100%;
1 year ago
2 years ago
}
}
.yellow-oil {
2 years ago
color: #e8775a;
}
2 years ago
.cu-avatar {
2 years ago
background-color: transparent !important;
}
2 years ago
.youpin {
2 years ago
border: 1px solid #e4e4e4;
display: flex;
border-radius: 5px;
padding: 0 5px;
margin-right: 5px;
margin-bottom: 5px;
}
2 years ago
.text-xl {
2 years ago
font-size: 30rpx;
}
1 year ago
2 years ago
.activity {
display: flex;
width: 85%;
// padding: 10rpx 20rpx;
1 year ago
border: 2rpx solid #1890FF;
2 years ago
border-radius: 10rpx;
1 year ago
2 years ago
.title {
width: 20%;
padding: 10rpx 0;
line-height: 36rpx;
text-align: center;
1 year ago
color: #1890FF;
2 years ago
background: #1890FF30;
}
1 year ago
2 years ago
.content {
flex: 1;
padding: 10rpx 20rpx;
line-height: 36rpx;
min-height: 80rpx;
color: #1890FF;
}
}
2 years ago
</style>