123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <!--pages/efficient/index.wxml-->
- <view class="work_off">
- <view class="allselect">
- <text>这里仅展示您关注的房间哟</text>
- <text bindtap="allSelect">全选</text>
- </view>
- <!-- {{imgShow?'':'del_box'}} -->
- <view class="checkitems">
- <van-checkbox-group bind:change="checkChange" value="{{ checkedList }}">
- <!-- disabled="{{true}}" -->
- <block wx:for="{{listContent}}">
- <van-checkbox name="{{item.id}}" shape="square" wx:key="{{index}}" disabled="{{item.isClose}}">
- <spacecard isCheckbox="true" cardDate="{{item}}" canvashidden="{{!poptimeValue&&!secondpopValue}}"></spacecard>
- </van-checkbox>
- <van-divider custom-style="padding-left: 8.5%" />
- </block>
- </van-checkbox-group>
- <!-- <time-picker /> -->
- </view>
- <view class="checkfooter"></view>
- <!-- popValue -->
- <cover-view wx:if="{{ popValue }}" class="lifan">
- <cover-view class="spacedetail">
- <cover-view class="detailtxt">
- <cover-view>{{monthDay}} 恢复正常,</cover-view>
- <cover-view bindtap="changeTime" class="detailtxtclick">点击修改</cover-view>
- </cover-view>
- <cover-view bindtap="openClose" class="custom_button">确定关机</cover-view>
- </cover-view>
- </cover-view>
- <van-popup show="{{ poptimeValue }}" round closeable bind:close="popClose" position="bottom" custom-style="height:624rpx" wx:if="{{poptimeValue}}">
- <view class="spacedetail">
- <view class="space_title">修改时间</view>
- <view class="space_title space_smalltitle">(系统判断是否会生效)</view>
- <time-picker2 wx:if="{{poptimeValue}}" InitTime="{{InitTime}}" bind:timeChange="getTimevalue" nextOpenTime="{{monthDaystring}}" />
- <view class="custom_button" bindtap="commitBtn">确定</view>
- </view>
- </van-popup>
- <!-- 关机二次确认弹窗 -->
- <van-popup show="{{ secondpopValue }}" round bind:close="commitClose" position="bottom" custom-style="height:400rpx;border-top:1px solid #ededee">
- <view class="spacedetail seconddetail">
- <view class="secondtxt secondtxt_title">
- <view class="lottie" wx:if="{{!popShow}}">
- <lottie id="lottie" animationData="{{canvasDate}}" width="25" height="25" />
- </view>
- 空调将关闭
- </view>
- <view class="secondtxt">为您的节能意识点赞</view>
- <view class="secondtxt">今日不会自动开启环境调节,如您需要可手动开启</view>
- <view class="custom_button" bindtap="commitClose">关闭</view>
- </view>
- </van-popup>
- </view>
|