Browse Source

增加了商户名称

feature/feature-compatible
wangkesi 7 years ago
parent
commit
1e33c1307e
1 changed files with 49 additions and 1 deletions
  1. 50
      src/view/order-check.vue

50
src/view/order-check.vue

@ -4,6 +4,13 @@
订单确认
</back-header>
<div class="top">
<div class="item-top">
<div class="item-top-left">
<img src="../assets/images/order-list/address.png">
<div class="item-top-address">{{info.merchantName}}</div>
</div>
<!-- <div class="item-top-state" :class="'state'+state">{{stateText}}</div> -->
</div>
<div class="goods-container">
<img :src="imghost+info.goodsImgUrl">
<div class="goods-main-container">
@ -304,11 +311,52 @@ export default {
.top {
margin-bottom: 0.18rem;
}
.item-top {
height: 0.65rem;
width: 100%;
background-color: white;
margin-top: 0.15rem;
border-bottom: 0.01rem solid #e5e5e5;
box-sizing: border-box;
font-size: 0.3rem;
display: flex;
justify-content: space-between;
width: 100%;
padding: 0 0.36rem 0 0.3rem;
line-height: 1;
align-items: center;
img {
width: 0.34rem;
height: 0.28rem;
margin-right: 0.2rem;
}
.item-top-left {
display: flex;
align-items: center;
}
.item-top-address {
}
.item-top-state {
color: #999;
font-size: 0.28rem;
}
.state0 {
color: #fcac21;
}
.state10 {
color: #00ba86;
}
.state11 {
color: #00ba86;
}
.state20 {
color: #fc4f21;
}
}
.goods-container {
width: 100%;
color: #333;
height: 1.6rem;
margin-top: 0.1rem;
background-color: white;
display: flex;
box-sizing: border-box;

Loading…
Cancel
Save