|
@@ -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;},
|