Commit 4e117054 by fengzhaoyu

Merge branch 'dev' into release/1.0.0

parents 0e09ffc8 7dcbc113
...@@ -188,10 +188,10 @@ Component({ ...@@ -188,10 +188,10 @@ Component({
const min = endDate.getMinutes(); const min = endDate.getMinutes();
endDate.setMinutes(min + 30); endDate.setMinutes(min + 30);
// 赋值 // 赋值
if (this.props.startTime) { if (this.props.startTime && new Date(this.props.startTime).getFullYear()) {
startDate = new Date(this.props.startTime); startDate = new Date(this.props.startTime);
} }
if (this.props.endTime) { if (this.props.endTime && new Date(this.props.endTime).getFullYear()) {
endDate = new Date(this.props.endTime); endDate = new Date(this.props.endTime);
} }
......
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
</view> </view>
</view> </view>
<view class="{{isBind ? 'unBinding': 'binding'}} bindBtn {{isLoading ? 'loadingBtn' : ''}}"> <view class="{{isBind ? 'unBinding': 'binding'}} bindBtn {{isLoading ? 'loadingBtn' : ''}}">
<text onTap="{{isBind ? 'unbind' : 'bindApp'}}">{{isBind ? '解绑' : '绑定'}}</text> <text onTap="{{isBind ? 'showPopup' : 'bindApp'}}">{{isBind ? '解绑' : '绑定'}}</text>
</view> </view>
</view> </view>
<view class="loadingToast" a:if="{{isLoading}}"> <view class="loadingToast" a:if="{{isLoading}}">
......
...@@ -21,7 +21,6 @@ create.Page({ ...@@ -21,7 +21,6 @@ create.Page({
selectPopupList: [{ text: "取消关联" }] selectPopupList: [{ text: "取消关联" }]
}, },
onLoad(e) { onLoad(e) {
console.log(e);
this.setData({ this.setData({
platform: e.platform, platform: e.platform,
name: e.userName, name: e.userName,
...@@ -92,7 +91,8 @@ create.Page({ ...@@ -92,7 +91,8 @@ create.Page({
if (res.data.data) { if (res.data.data) {
this.setData({ this.setData({
name: "", name: "",
isBind: false isBind: false,
showSelectPopup: false
}); });
this.$store.data.relatedAppNeedUpdate = "1"; this.$store.data.relatedAppNeedUpdate = "1";
this.update(); this.update();
......
...@@ -388,9 +388,9 @@ ...@@ -388,9 +388,9 @@
.iconicon_days { .iconicon_days {
position: absolute; position: absolute;
left: 10rpx; left: 9rpx;
top: 12rpx; top: 12rpx;
font-size: 23rpx; font-size: 24rpx;
} }
.tabBarView .iconicon_days { .tabBarView .iconicon_days {
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
<view class="iconfont iconicon_open" onTap="selectSearchTime"></view> <view class="iconfont iconicon_open" onTap="selectSearchTime"></view>
</view> </view>
</view> </view>
<view class="roomScrollView" style="{{canScroll ? '': 'overflow:hidden'}}""> <view class="roomScrollView" style="{{canScroll ? '': 'overflow:hidden'}}">
<view class="reserveMeeting"> <view class="reserveMeeting">
<view class="meetingRoomContent" a:for="{{reserveRoomList}}" data-roomid="{{item.meetingRoomId}}" data-roomname="{{item.name}}" onTap="changeRoomTime"> <view class="meetingRoomContent" a:for="{{reserveRoomList}}" data-roomid="{{item.meetingRoomId}}" data-roomname="{{item.name}}" onTap="changeRoomTime">
<view class="roomMessage"> <view class="roomMessage">
......
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