改版油站信息与设计图一致

This commit is contained in:
xk_guohonglei
2020-09-10 11:59:40 +08:00
parent f87b163385
commit b2c52517ce
3 changed files with 65 additions and 65 deletions

View File

@@ -1,58 +1,22 @@
<template>
<view class="flex price-list">
<view class="basis-xs">
</view>
<view class="solid-right basis-xs" v-for="(item,index) in price" :key="index">
<view class="text-center">
<view class="flex price-list padding-top-sm ">
<view class="flex-sub" v-for="(item,index) in price" :key="index" :class="index<price.length-1?'solid-right':''">
<view class="text-left" :class="item.name==='市场价'?'text-right':''">
<view class="text-center padding-sm">
<view class="strong text-lg" :class="'text-'+item.color">
{{item.price|numberFliter}}
</view>
<view class="strong font-16 oil-main-color">
{{item.price|numberFliter}}
</view>
<view class="radius text-center oil-card-price main-color-border">
<text class="oil-free">
</text>
<text class="free-money">
{{item.free|numberFliter}}
</text>
</view>
<view class="">
星油油价
<view class="text-sm padding-sm">
{{item.name}}
</view>
</view>
</view>
</view>
<!-- <view class="flex-treble text-center solid-right">
<view class="strong font-16 color-wjy">
5.81
</view>
<view class="radius text-center oil-card-price main-color-border border-wjy">
<text class="oil-free bg-wjy">
</text>
<text class="free-money color-wjy">
5.81
</text>
</view>
<view class="">
万金油价
</view>
<view class="flex-sub">
</view>
<view class="flex-treble text-center " :class="isLast?'':'solid-right'">
<view class="strong font-16 color-lv ">
5.81
</view>
<view class="radius oil-card-price border-lv">
<text class="oil-free bg-lv">
</text>
<text class="free-money color-lv">
七毛
</text>
</view>
<view class="">
老吕油价
</view>
</view> -->
</view>
</template>

View File

@@ -1,7 +1,7 @@
<template>
<view class="radius padding-xs padding-bottom padding-top margin-top bg-white shadow solid-bottom">
<view class="radius padding-xs padding-top solid-top solid-bottom" >
<view class="item-title ">
<text class="margin color-000 text-bold">{{oilItem.oilName}}</text>
<text class="margin color-000 text-xl text-bold">{{oilItem.oilName}}</text>
<text class="fr padding-right text-sm text-grey">市场价{{ oilItem.standardPrice|numberFliter}}</text>
<PriceList :price="price" />
</view>
@@ -44,11 +44,10 @@
if (this.oilItem.xkPrice) {
this.price.push({
price: this.oilItem.xkPrice,
color: '#ff0000',
color: 'red',
name: '星油油价',
className1: 'red',
className2: 'btn-red',
free: this.oilItem.standardPrice - this.oilItem.xkPrice
})
}
if (this.oilItem.wjyPrice) {
@@ -58,7 +57,6 @@
name: '万金油价',
className1: 'yellow',
className2: 'btn-yellow',
free: this.oilItem.standardPrice - this.oilItem.wjyPrice
})
}
if (this.oilItem.lvPrice) {
@@ -68,7 +66,15 @@
name: '老吕油价',
className1: 'laolv',
className2: 'btn-laolv',
free: this.oilItem.standardPrice - this.oilItem.lvPrice
})
}
if (this.oilItem.standardPrice) {
this.price.push({
price: this.oilItem.standardPrice,
color: 'black',
name: '市场价',
className1: 'laolv',
className2: 'btn-laolv',
})
}
}