1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <view class="container">
- <picker bindchange="bindStorePickerChange" value="{{index}}" range="{{storeList}}" range-key="storeName">
- <tui-list-cell hover="{{false}}">
- <view class="tui-line-cell">
- <view class="tui-title">门店</view>
- <input placeholder-class="phcolor" class="tui-input" placeholder="请选择门店" type="text" disabled="true"
- value="{{values.storeName}}" />
- </view>
- </tui-list-cell>
- </picker>
- <picker bindchange="bindSchemePickerChange" value="{{index}}" range="{{schemeList}}" range-key="schemeName">
- <tui-list-cell hover="{{false}}">
- <view class="tui-line-cell">
- <view class="tui-title">方案</view>
- <input placeholder-class="phcolor" class="tui-input" placeholder="请选择方案" type="text" disabled="true"
- value="{{values.schemeName}}" />
- </view>
- </tui-list-cell>
- </picker>
- <tui-list-cell hover="{{false}}">
- <view class="tui-line-cell">
- <view class="tui-title">该门店已同步{{selectList.length}}间客房</view>
- <view class="tui-label text-right"><text class="margin-right-xs">全选</text><switch checked="{{sync}}" bindchange="syncSwitchChange"/></view>
-
- </view>
- </tui-list-cell>
- <view class="bg-white scheme-grid">
- <view style="margin-left:30rpx;font-size:22rpx;color:red">提醒:红色字体为已有方案,已有方案客房也可修改方案!</view>
- <view class="grid col-2">
- <view wx:for="{{deviceList}}">
- <view class="cu-tag radius margin-xs padding {{item.checkout? 'bg-blue':'line-blue'}}" bindtap="syncChecked" data-index="{{index}}" data-item="{{item}}" >
- <view wx-if="{{item.colorType!=1}}">{{item.deviceName}} </view>
- <view wx-if="{{item.colorType==1}}" style="color:red">{{item.deviceName}} </view>
- </view>
- </view>
- </view>
- </view>
- <tui-button type="blue" height="98rpx" shape="rightAngle" bindtap="saveInfo">保存信息</tui-button>
- </view>
|