change-env.wxml 803 B

123456789101112131415
  1. <wux-landscape visible="{{ visible }}" maskClosable="{{ true }}" closable="{{ false }}" bind:close="onCancelUse">
  2. <view class="use-popup flex-column" wx:if="{{ visible }}">
  3. <input wx:if="{{!env}}" class="weui-input" auto-focus placeholder="请输入密码" bindinput="onChangeInput" />
  4. <radio-group bindchange="onChangeRadio" wx:if="{{env}}">
  5. <label class="flex" wx:for="{{items}}" wx:key="index">
  6. <radio value="{{item.value}}" checked="{{item.checked}}"/>
  7. <view style="margin-left: 30rpx;">{{item.name}}</view>
  8. </label>
  9. </radio-group>
  10. <view class="use-btn flex">
  11. <view class="btn cancel flex-center" bindtap="onCancel">取消</view>
  12. <view class="btn confirm flex-center" bindtap="onConfirm">确定</view>
  13. </view>
  14. </view>
  15. </wux-landscape>