zs 2 年之前
父節點
當前提交
2247ff44d1
共有 1 個文件被更改,包括 20 次插入12 次删除
  1. 20 12
      pagesMy/order/index.vue

+ 20 - 12
pagesMy/order/index.vue

@@ -11,14 +11,16 @@
 							<view class="list-scroll-view">
 							<view class="list-scroll-view">
 								<view class="list" v-for="(item,index) in list" :key="index" @tap="toInfo(item)">
 								<view class="list" v-for="(item,index) in list" :key="index" @tap="toInfo(item)">
 									<view class="list_1" v-if="tabs.active=='0'">
 									<view class="list_1" v-if="tabs.active=='0'">
-										<view class="status">
-											{{item.zhStatus}}
-										</view>
 										<view class="goods">
 										<view class="goods">
 											<view class="goodsList" v-for="(tag,indexs) in item.goods" :key="indexs">
 											<view class="goodsList" v-for="(tag,indexs) in item.goods" :key="indexs">
 												<view class="shopname">
 												<view class="shopname">
-													<text class="iconfont icon-shangdian"></text>
-													<text>{{tag.shop_name}}</text>
+													<view class="shop">
+														<text class="iconfont icon-shangdian"></text>
+														<text>{{tag.shop_name}}</text>
+													</view>
+													<view class="status">
+														{{item.zhStatus}}
+													</view>
 												</view>
 												</view>
 												<view class="goodsList_1">
 												<view class="goodsList_1">
 													<view class="market" v-for="(tags,indexss) in tag.goods"
 													<view class="market" v-for="(tags,indexss) in tag.goods"
@@ -541,21 +543,27 @@
 					border-radius: 5px;
 					border-radius: 5px;
 
 
 					.list_1 {
 					.list_1 {
-						.status {
-							text-align: right;
-							color: var(--ff0Color);
-							margin: 0 0 1vw 0;
-						}
+
 
 
 						.goods {
 						.goods {
 							.goodsList {
 							.goodsList {
 								border-bottom: 1px solid #f1f1f1;
 								border-bottom: 1px solid #f1f1f1;
 
 
 								.shopname {
 								.shopname {
+									display: flex;
+									justify-content: space-between;
 									margin: 0 0 2vw 0;
 									margin: 0 0 2vw 0;
 
 
-									text:last-child {
-										padding: 0 0 0 2vw;
+									.shop {
+										text:last-child {
+											padding: 0 0 0 2vw;
+										}
+									}
+
+									.status {
+										text-align: right;
+										color: var(--ff0Color);
+										margin: 0 0 1vw 0;
 									}
 									}
 								}
 								}