You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
1.1 KiB

1 year ago
  1. <!--pages/addBlueButton/addBlueButton.wxml-->
  2. <view class="" wx:if="{{show}}">
  3. <van-button type="primary" bindtap="linkBlue" size="small">搜索</van-button>
  4. <picker mode="date" value="{{starttime}}" start="{{minDate}}" bindchange="bindDateChange">
  5. <van-field value="{{ starttime }}" placeholder="请选择开始时间" label="开始时间" border="{{ true }}" readonly />
  6. </picker>
  7. <picker mode="date" value="{{endtime}}" start="{{minDate1}}" bindchange="bindDateChange1">
  8. <van-field value="{{ endtime }}" placeholder="请选择结束时间" label="结束时间" border="{{ true }}" readonly />
  9. </picker>
  10. <view class="devicelist">
  11. <van-cell title="{{item.name}}" value="点击连接" data-select="{{item}}" bindtap="searchBlueButton" is-link wx:for="{{deviceList}}" wx:key="indexone" wx:for-index="{{index}}" wx:for-item="item" />
  12. </view>
  13. </view>
  14. <view class="" wx:else>
  15. <view>选择人员添加蓝扣</view>
  16. <van-cell title="{{item.name}}" value="点击连接" data-personli="{{item}}" bindtap="btntest1" is-link wx:for="{{personList}}" wx:key="index" wx:for-index="{{index}}" wx:for-item="item" />
  17. </view>