|
@@ -15,7 +15,7 @@
|
|
|
<img src="../native/shop.png" alt="" />
|
|
<img src="../native/shop.png" alt="" />
|
|
|
<span>{{ list.storeName || '暂无门店' }}</span>
|
|
<span>{{ list.storeName || '暂无门店' }}</span>
|
|
|
</div>
|
|
</div>
|
|
|
- <div class="info">{{ list.roomName + '室' }}</div>
|
|
|
|
|
|
|
+ <div class="info">{{ list.roomName }}</div>
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
|
<div class="continer">
|
|
<div class="continer">
|
|
@@ -150,17 +150,13 @@ export default {
|
|
|
this.list = res;
|
|
this.list = res;
|
|
|
if (this.list.checkInType === 'INDIVIDUAL') {
|
|
if (this.list.checkInType === 'INDIVIDUAL') {
|
|
|
wx.setTabBarItem({
|
|
wx.setTabBarItem({
|
|
|
- index: 0,
|
|
|
|
|
- text: '个人房间',
|
|
|
|
|
- iconPath: 'native/tabbar/tabbar_icon_01@3x (1).png',
|
|
|
|
|
- selectedIconPath: 'native/tabbar/tabbar_icon_01@3x.png'
|
|
|
|
|
|
|
+ index: 1,
|
|
|
|
|
+ text: '个人房间'
|
|
|
});
|
|
});
|
|
|
} else {
|
|
} else {
|
|
|
wx.setTabBarItem({
|
|
wx.setTabBarItem({
|
|
|
- index: 0,
|
|
|
|
|
- text: '团队房间',
|
|
|
|
|
- iconPath: 'native/tabbar/tabbar_icon_01@3x (1).png',
|
|
|
|
|
- selectedIconPath: 'native/tabbar/tabbar_icon_01@3x.png'
|
|
|
|
|
|
|
+ index: 1,
|
|
|
|
|
+ text: '团队房间'
|
|
|
});
|
|
});
|
|
|
}
|
|
}
|
|
|
this.$store.dispatch('updateRoomInfo');
|
|
this.$store.dispatch('updateRoomInfo');
|
|
@@ -205,16 +201,16 @@ export default {
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
.info {
|
|
.info {
|
|
|
- min-width: 100px;
|
|
|
|
|
color: #ffffff;
|
|
color: #ffffff;
|
|
|
text-align: center;
|
|
text-align: center;
|
|
|
- font-size: 13px;
|
|
|
|
|
|
|
+ font-size: 16px;
|
|
|
|
|
+ font-weight: bold;
|
|
|
line-height: 36px;
|
|
line-height: 36px;
|
|
|
height: 36px;
|
|
height: 36px;
|
|
|
- background: rgba(255, 255, 255, 0.16);
|
|
|
|
|
|
|
+ background: rgba(255, 255, 255, 0.3);
|
|
|
border-radius: 8px;
|
|
border-radius: 8px;
|
|
|
margin: 20px 0 10px 50px;
|
|
margin: 20px 0 10px 50px;
|
|
|
- padding: 0 10px;
|
|
|
|
|
|
|
+ padding: 0 20px;
|
|
|
display: inline-block;
|
|
display: inline-block;
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|