Commit 7c5d6d65 by weijiguang

优化订单UI

parent 5e7d1237
......@@ -19,8 +19,8 @@
<view class="order_item" v-for="item in list" :key="item.id" @click="openInfo(item)">
<view class="order_header">
<view>
<h3 class="order_adrass">{{ item.shop.name }}</h3>
<text class="order_time">{{ item.createdAt }}</text>
<view class="order_adrass">{{ item.shop.name }}</view>
<view class="order_time">{{ item.createdAt }}</view>
</view>
<view class="order_status">
<text>{{ getStateText(item.state) }}</text>
......@@ -29,9 +29,8 @@
</view>
<div class="order_content">
<view class="order_content_box1">
<view class="goods_item" v-for="good in item.orderDetails" :key="good.id">
<image class="goods_img" v-if="jsonParse(good.goods.pics).thumbnailApplet"
:src="jsonParse(good.goods.pics).thumbnailApplet"></image>
<view class="goods_item" v-for="(good,index) in item.orderDetails" :key="good.id">
<image class="goods_img" v-if="jsonParse(good.goods.pics).thumbnailApplet" :src="jsonParse(good.goods.pics).thumbnailApplet"></image>
<image v-else class="goods_img" :src="jsonParse(good.goods.pics).thumbnail"></image>
<view class="goods_text">
......@@ -48,16 +47,16 @@
</view>
</view>
</view>
<view v-if="index==item.orderDetails.length-1 && (item.state == 2 || item.state == 3 || item.state == 4 || item.state == 5)" class="qr_code">
<image class="qr_code_img" src="/static/imgs/icon-barcode.png"></image>
<view class="qr_text">点击二维码取单</view>
</view>
</view>
</view>
<view v-if="item.state == 2 || item.state == 3 || item.state == 4 || item.state == 5" class="qr_code">
<image class="qr_code_img" src="/static/imgs/icon-barcode.png"></image>
<view class="qr_text">点击二维码取单</view>
</view>
</div>
<view class="order_footer">
<view class="total">
{{ orderDetailsSize(item.orderDetails) }}件商品 合计<text class="price">{{ Utils.isInteger(item.amount) }}</text>
{{ orderDetailsSize(item.orderDetails) }}件商品 实付<text class="price">{{ Utils.isInteger(item.amount) }}</text>
</view>
<a class="btn" @click.stop="PayNow(item)" v-if="item.state == 1" type="primary">立刻支付</a>
<a class="btn" v-else @click.stop="oneMoreOrder(item)" type="primary">再来一单</a>
......@@ -249,9 +248,9 @@ export default {
}
.empty_text {
width: 500rpx;
width: 500rpx;
margin-top: 35rpx;
margin-top: 32rpx;
text-align: center;
font-size: 24rpx;
......@@ -283,14 +282,13 @@ export default {
/* 兼容老版本的方法 */
-webkit-transform: translateX(-50%);
transform: translate(-50%);
margin-top: 311rpx;
.empty_icon {
margin-top: 352rpx;
.empty_icon {
width: 324rpx;
height: 236rpx;
}
.empty_text {
margin-top: 35rpx;
margin-top: 32rpx;
text-align: center;
font-size: 24rpx;
......@@ -299,7 +297,7 @@ export default {
color: #999999;
}
.empty_button {
margin-top: 35rpx;
margin-top: 36rpx;
width: 167rpx;
height: 64rpx;
border-radius: 2rpx;
......@@ -322,9 +320,9 @@ export default {
.order_item {
width: 686rpx;
background: #FFFFFF;
margin: 30rpx auto 0;
margin: 32rpx auto 0;
box-sizing: border-box;
padding: 25rpx 22rpx 32rpx 32rpx;
padding: 25rpx 30rpx 30rpx 30rpx;
.order_header {
display: flex;
......@@ -335,11 +333,14 @@ export default {
font-family: PingFangSC-Medium, PingFang SC;
font-weight: 500;
color: #333333;
line-height: 40rpx;
}
.order_time {
font-size: 24rpx;
font-family: ArialMT;
margin-top: 4rpx;
line-height: 28rpx;
color: #999999;
}
......@@ -351,6 +352,7 @@ export default {
display: flex;
align-items: baseline;
justify-content: flex-start;
line-height: 34rpx;
.xiaojiantou {
width: 12rpx;
height: 16rpx;
......@@ -361,7 +363,6 @@ export default {
}
.order_content {
margin-top: 42rpx;
display: flex;
justify-content: space-between;
align-items: center;
......@@ -370,34 +371,31 @@ export default {
flex: 1;
}
.qr_code {
font-size: 16rpx;
font-family: PingFangSC-Medium, PingFang SC;
font-weight: 500;
color: #666666;
line-height: 22rpx;
text-align: center;
margin-right: 10rpx;
margin-left: 39rpx;
.qr_code_img {
width: 76rpx;
height: 76rpx;
}
.qr_text {
margin-top:10rpx;
font-size: 20rpx;
font-family: PingFangSC-Regular, PingFang SC;
font-weight: 400;
color: #999999;
}
}
.goods_item {
margin-top: 42rpx;
display: flex;
align-items: center;
// align-items: center;
.qr_code {
text-align: center;
margin-right: 10rpx;
margin-left: 38rpx;
.qr_code_img {
vertical-align: bottom;
width: 76rpx;
height: 76rpx;
}
.qr_text {
line-height: 28rpx;
margin-top: 10rpx;
font-size: 20rpx;
font-family: PingFangSC-Regular, PingFang SC;
font-weight: 400;
color: #999999;
}
}
.goods_img {
height: 96rpx;
......@@ -414,21 +412,22 @@ export default {
font-family: PingFangSC-Regular, PingFang SC;
font-weight: 400;
color: #666666;
margin-top: 10rpx;
line-height: 40rpx;
}
.goods_spce {
margin-top: 2.6rpx;
margin-top: 2rpx;
font-size: 24rpx;
font-family: PingFangSC-Regular, PingFang SC;
font-weight: 400;
line-height: 34rpx;
color: #999999;
display: flex;
justify-content: space-between;
align-items: center;
}
}
}
}
......@@ -436,7 +435,7 @@ export default {
display: flex;
align-items: center;
justify-content: space-between;
margin-top: 41rpx;
margin-top: 40rpx;
.total {
font-size: 28rpx;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment