顺带件样式

This commit is contained in:
Jerry Yan 2020-08-23 23:22:24 +08:00
parent 17b4415c12
commit 5ffde7760a
2 changed files with 26 additions and 2 deletions

View File

@ -28,6 +28,22 @@
display: flex;
}
.row_foot {
line-height: 36px;
height: 36px;
display: flex;
}
.price_tag {
margin-right: 10px;
}
.price_tag > .price {
font-size: 1.2em;
color: red;
font-weight: bolder;
}
.loc_range {
font-size: 1.1rem;
color: black;

View File

@ -45,13 +45,13 @@
<div class="row clearfix" v-for="(each, index) in orderList" :data-id="each.id">
<div class="name">
<span class="_text">店铺:{{each.from_address}}</span>
<span class="_img">
<span class="_img" @click="window.open(`tel:${each.shop_phone}`)">
<img src="../img/lianxishangjia4.png" alt="">
</span>
</div>
<div class="name">
<span class="_text">送至:{{each.to_address}}</span>
<span class="_img">
<span class="_img" @click="window.open(`tel:${each.buyer_phone}`)">
<img src="../img/lianxishangjia4.png" alt="">
</span>
</div>
@ -68,6 +68,14 @@
购户
</span>
</div>
<div class="row_foot">
<span class="price_tag">
运费<span class="price">{{each.deliver_fee}}</span>
</span>
<span class="price_tag">
奖励<span class="price">{{each.fee}}</span>
</span>
</div>
</div>
</div>
</body>