From 152794b45e3a64b2e9e9505412492c23b2e32d3f Mon Sep 17 00:00:00 2001 From: xiaozhiyong Date: Mon, 24 Jul 2023 10:11:16 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- BagStation/pages/components/price-tab.vue | 29 ++- .../pages/stationDetail/stationDetail.vue | 2 +- components/site-item/site-item.vue | 190 ++++++++++++------ 3 files changed, 153 insertions(+), 68 deletions(-) diff --git a/BagStation/pages/components/price-tab.vue b/BagStation/pages/components/price-tab.vue index 8315e05..b5a716a 100644 --- a/BagStation/pages/components/price-tab.vue +++ b/BagStation/pages/components/price-tab.vue @@ -32,7 +32,13 @@ {{itemy}} + + + {{siteInfo.activityContent}} + + + @@ -43,6 +49,12 @@ channelList: { type: Array, default () {} + }, + siteInfo:{ + type: Object, + default: () => { + return {} + } } }, data() { @@ -124,7 +136,7 @@ } - diff --git a/BagStation/pages/stationDetail/stationDetail.vue b/BagStation/pages/stationDetail/stationDetail.vue index 4a16fde..dba4943 100644 --- a/BagStation/pages/stationDetail/stationDetail.vue +++ b/BagStation/pages/stationDetail/stationDetail.vue @@ -65,7 +65,7 @@ + :channel-list="siteInfo.oilSiteChannelDetailsVos" :siteInfo="siteInfo"> diff --git a/components/site-item/site-item.vue b/components/site-item/site-item.vue index 1e9ded4..97cfa0c 100644 --- a/components/site-item/site-item.vue +++ b/components/site-item/site-item.vue @@ -1,25 +1,34 @@ @@ -70,47 +79,47 @@ type: Boolean, default: false }, - listHeight:{ - type:Number, - default:0 + listHeight: { + type: Number, + default: 0 } }, data() { return { starUrl: this.global.starUrl, - defaultLogo:'https://publicxingyou.oss-cn-hangzhou.aliyuncs.com/mp-oil/logo_default.png', - audioUrl:'' + defaultLogo: 'https://publicxingyou.oss-cn-hangzhou.aliyuncs.com/mp-oil/logo_default.png', + audioUrl: '' } - }, + }, methods: { }, filters: { - 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 - } - }, + 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 + } + }, distanceFilter(value) { if (value) { return value > 1000 ? ((value / 1000).toFixed(2) + 'km') : (value + 'm') - }else{ + } else { return '0.00km' } }, @@ -125,20 +134,43 @@ } -