This commit is contained in:
xk_guohonglei
2020-08-18 17:30:47 +08:00
parent 8feae367f5
commit 3b284be832
7 changed files with 389 additions and 20 deletions

View File

@@ -1,9 +1,9 @@
<template>
<view class="flex" >
<view class="flex price-list">
<view class="flex-sub">
</view>
<view class="flex-treble text-center">
<view class="flex-treble text-center solid-right">
<view class="strong font-16 oil-main-color">
5.81
</view>
@@ -19,31 +19,31 @@
星油油价
</view>
</view>
<view class="flex-treble text-center">
<view class="strong font-16 oil-main-color">
<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">
<text class="oil-free">
<view class="radius text-center oil-card-price main-color-border border-wjy">
<text class="oil-free bg-wjy">
</text>
<text class="free-money">
七毛
<text class="free-money color-wjy">
5.81
</text>
</view>
<view class="">
万金油价
</view>
</view>
<view class="flex-treble text-center">
<view class="strong font-16 oil-main-color">
<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 main-color-border">
<text class="oil-free">
<view class="radius oil-card-price border-lv">
<text class="oil-free bg-lv">
</text>
<text class="free-money">
<text class="free-money color-lv">
七毛
</text>
</view>
@@ -55,8 +55,13 @@
</template>
<script>
export default{
name:'PriceList'
export default {
name: 'PriceList',
data() {
return {
isLast: true
}
},
}
</script>
@@ -67,9 +72,9 @@
}
.free-money {
color: #FE0505;
max-width: 3rem;
font-size: 12px;
color: #FE0505;
line-height: 12px;
}