Commit c178670f by xiexiaoqin

Merge branch 'release/dev/2.0.0' into release/2.0.0

parents 933f067a 9dc72943
...@@ -24,11 +24,12 @@ ...@@ -24,11 +24,12 @@
flex: 1; flex: 1;
font-size: 28rpx; font-size: 28rpx;
line-height: 40rpx; line-height: 40rpx;
white-space: nowrap; /* white-space: nowrap;
text-overflow: ellipsis; text-overflow: ellipsis;
overflow: hidden; overflow: hidden; */
display: flex; display: flex;
flex-direction: column; flex-direction: column;
word-break: break-all;
} }
.task-title .task-time { .task-title .task-time {
......
...@@ -868,12 +868,12 @@ create.Page({ ...@@ -868,12 +868,12 @@ create.Page({
if (res.data.code !== 0) { if (res.data.code !== 0) {
return return
} }
if (_that.data.currentPeople === _that.data.organizer) { // if (_that.data.currentPeople === _that.data.organizer) {
_that.setData({ // _that.setData({
'aheadTime.aheadTimes': [15], // 'aheadTime.aheadTimes': [15],
'aheadTime.aheadTimesListId': [15], // 'aheadTime.aheadTimesListId': [15],
}) // })
} // }
_that.setData({ _that.setData({
confirmAttendance: dataParticipate.value confirmAttendance: dataParticipate.value
}) })
......
...@@ -16,9 +16,9 @@ ...@@ -16,9 +16,9 @@
<text class="locationIcon iconfont iconicon_facility1"></text> <text class="locationIcon iconfont iconicon_facility1"></text>
<text a:for="{{item.equipFacilityNames}}" a:if="{{item2 !== null}}" a:for-item="item2" a:for-index="index2">{{item2}}{{index2 === item.equipFacilityNames.length-1 ? '' : '/'}}</text> <text a:for="{{item.equipFacilityNames}}" a:if="{{item2 !== null}}" a:for-item="item2" a:for-index="index2">{{item2}}{{index2 === item.equipFacilityNames.length-1 ? '' : '/'}}</text>
</view> </view>
<view class="reserveRoomNumAndLocation"> <view class="reserveRoomNumAndLocation" a:if="{{item.capacityNum}}">
<view class="reserveRoomNum"> <view class="reserveRoomNum">
<text class="locationIcon iconfont iconicon_attender"></text>{{item.capacityNum}} <text class="locationIcon iconfont iconpeople1"></text>{{item.capacityNum}}
</view> </view>
</view> </view>
</view> </view>
......
...@@ -56,6 +56,7 @@ page { ...@@ -56,6 +56,7 @@ page {
} }
.mettingRoom { .mettingRoom {
/* padding: 20rpx 0; */
height: 112rpx; height: 112rpx;
display: flex; display: flex;
padding-left: 32rpx; padding-left: 32rpx;
......
...@@ -18,9 +18,9 @@ ...@@ -18,9 +18,9 @@
<view class="name"> <view class="name">
{{item.meetingRoomFullName ? item.meetingRoomFullName : item.name}} {{item.meetingRoomFullName ? item.meetingRoomFullName : item.name}}
</view> </view>
<view class="mettingRoomDetail"> <view class="mettingRoomDetail" a:if="{{item.capacityNum || item.equipFacilityLabelList }}">
<view class="num"> <view class="num" a:if="{{item.capacityNum}}">
<text class="numIcon iconfont iconcanhuiren iconicon_attender"></text> <text class="numIcon iconfont iconpeople1 iconicon_attender"></text>
<text>{{item.capacityNum}}</text> <text>{{item.capacityNum}}</text>
</view> </view>
<view class="equipment" a:if="{{item.equipFacilityLabelList}}"> <view class="equipment" a:if="{{item.equipFacilityLabelList}}">
......
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