Browse Source

商铺详情:显示标签信息

skym1024 1 year ago
parent
commit
212b96b693
1 changed files with 2 additions and 4 deletions
  1. 2 4
      pages/shop/info.vue

+ 2 - 4
pages/shop/info.vue

@@ -3,8 +3,7 @@
 		<uni-section :title="shop.district" type="line">
 			<uni-card padding="0" spacing="0">
 				<uni-list>
-					<uni-list-item :title="building"></uni-list-item>
-					<uni-list-item :title="floor"></uni-list-item>
+					<uni-list-item :title="tag"></uni-list-item>
 					<uni-list-item :title="number"></uni-list-item>
 					<uni-list-item :title="area"></uni-list-item>
 					<uni-list-item :title="status"></uni-list-item>
@@ -38,8 +37,7 @@
 			this.shop = resp.data;
 		},
 		computed:{
-			building(){return "楼栋:" + this.shop.building;},
-			floor(){return "楼层:" + this.shop.floor;},
+			tag(){return "标签:" + this.shop.tag;},
 			number(){return "铺位号:" + this.shop.number;},
 			area(){return "面积:" + this.shop.area;},
 			status(){return "使用状态:" + this.shop.status;},