input.uvue 9.3 KB
Newer Older
Y
init  
yurj26 已提交
1
<template>
DCloud-WZF's avatar
DCloud-WZF 已提交
2 3 4
  <!-- #ifdef APP -->
  <scroll-view style="flex: 1">
    <!-- #endif -->
Y
init  
yurj26 已提交
5
    <view class="nvue-page-root">
DCloud-WZF's avatar
DCloud-WZF 已提交
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
      <page-head :title="title"></page-head>
      <view class="uni-common-mt">
        <view class="uni-form-item uni-column">
          <view class="title"
            ><text class="uni-form-item__title">可自动聚焦的 input</text></view
          >
          <view class="uni-input-wrapper">
            <input
              class="uni-input"
              :focus="true"
              placeholder="自动获得焦点"
              ref="input"
            />
          </view>
        </view>
        <!-- #ifdef APP-PLUS -->
        <!-- <view v-if="platform==='ios'&&!isNvue" class="uni-form-item uni-column">
Y
init  
yurj26 已提交
23 24 25 26 27
                <view class="title"><text class="uni-form-item__title">隐藏 iOS 软键盘上的导航条</text></view>
                <view class="uni-input-wrapper">
                    <input class="uni-input" placeholder="触摸其他地方收起键盘" @focus="onFocus" @blur="onBlur" />
                </view>
            </view> -->
DCloud-WZF's avatar
DCloud-WZF 已提交
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
        <!-- #endif -->
        <view class="uni-form-item uni-column">
          <view class="title"
            ><text class="uni-form-item__title"
              >键盘右下角按钮显示为搜索</text
            ></view
          >
          <view class="uni-input-wrapper">
            <input
              class="uni-input"
              confirmType="search"
              placeholder="键盘右下角按钮显示为搜索"
            />
          </view>
        </view>
        <!-- #ifndef H5 -->
        <view class="uni-form-item uni-column">
          <view class="title"
            ><text class="uni-form-item__title"
              >键盘右下角按钮显示为发送</text
            ></view
          >
          <view class="uni-input-wrapper">
            <input
              class="uni-input"
              confirmType="send"
              placeholder="键盘右下角按钮显示为发送"
            />
          </view>
        </view>
        <!-- #endif -->
        <view class="uni-form-item uni-column">
          <view class="title"
            ><text class="uni-form-item__title"
              >控制最大输入长度的 input</text
            ></view
          >
          <view class="uni-input-wrapper">
            <input
              class="uni-input"
              :maxlength="10"
              placeholder="最大输入长度为10"
            />
          </view>
        </view>
        <view class="uni-form-item uni-column">
          <view class="title"
            ><text class="uni-form-item__title"
              >实时获取输入值:{{ inputValue }}</text
            ></view
          >
          <view class="uni-input-wrapper">
            <input
              class="uni-input"
              @input="onKeyInput"
              placeholder="输入同步到view中"
            />
          </view>
        </view>
        <view class="uni-form-item uni-column">
          <view class="title"
            ><text class="uni-form-item__title">控制输入的 input</text></view
          >
          <view class="uni-input-wrapper">
            <input
              class="uni-input"
              @input="replaceInput"
              :value="changeValue"
              placeholder="连续的两个1会变成2"
            />
          </view>
        </view>
        <!-- #ifndef MP-BAIDU -->
        <!-- <view class="uni-form-item uni-column">
Y
init  
yurj26 已提交
102 103 104 105 106
                <view class="title"><text class="uni-form-item__title">控制键盘的 input</text></view>
                <view class="uni-input-wrapper">
                    <input class="uni-input" ref="input1" @input="hideKeyboard" placeholder="输入123自动收起键盘" />
                </view>
            </view> -->
DCloud-WZF's avatar
DCloud-WZF 已提交
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
        <!-- #endif -->
        <view class="uni-form-item uni-column">
          <view class="title"
            ><text class="uni-form-item__title">数字输入的 input</text></view
          >
          <view class="uni-input-wrapper">
            <input
              class="uni-input"
              type="number"
              placeholder="这是一个数字输入框"
            />
          </view>
        </view>
        <view class="uni-form-item uni-column">
          <view class="title"
            ><text class="uni-form-item__title">密码输入的 input</text></view
          >
          <view class="uni-input-wrapper">
            <input
              class="uni-input"
              :password="true"
              type="text"
              placeholder="这是一个密码输入框"
            />
          </view>
        </view>
        <view class="uni-form-item uni-column">
          <view class="title"
            ><text class="uni-form-item__title">带小数点的 input</text></view
          >
          <view class="uni-input-wrapper">
            <input
              class="uni-input"
              type="digit"
              placeholder="带小数点的数字键盘"
            />
          </view>
        </view>
        <!-- <view class="uni-form-item uni-column">
Y
init  
yurj26 已提交
146 147 148 149
                <view class="title"><text class="uni-form-item__title">身份证输入的 input</text></view>
                <view class="uni-input-wrapper">
                    <input class="uni-input" type="idcard" placeholder="身份证输入键盘" /> </view>
            </view> -->
DCloud-WZF's avatar
DCloud-WZF 已提交
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181
        <view class="uni-form-item uni-column">
          <view class="title"
            ><text class="uni-form-item__title"
              >控制占位符颜色的 input</text
            ></view
          >
          <view class="uni-input-wrapper">
            <input
              class="uni-input"
              placeholder-style="color:#F76260"
              placeholder="占位符字体是红色的"
            />
          </view>
        </view>
        <view class="uni-form-item uni-column">
          <view class="title"
            ><text class="uni-form-item__title">带清除按钮的输入框</text></view
          >
          <view class="uni-input-wrapper">
            <input
              class="uni-input"
              placeholder="带清除按钮的输入框"
              :value="inputClearValue"
              @input="clearInput"
            />
            <image
              class="uni-icon"
              src="/static/icons/clear.png"
              v-if="showClearIcon"
              @click="clearIcon"
            ></image>
          </view>
Y
init  
yurj26 已提交
182
        </view>
DCloud-WZF's avatar
DCloud-WZF 已提交
183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204
        <view class="uni-form-item uni-column">
          <view class="title"
            ><text class="uni-form-item__title">可查看密码的输入框</text></view
          >
          <view class="uni-input-wrapper">
            <input
              class="uni-input"
              placeholder="请输入密码"
              :password="showPassword"
            />
            <image
              class="uni-icon"
              :src="
                !showPassword
                  ? '/static/icons/eye-active.png'
                  : '/static/icons/eye.png'
              "
              @click="changePassword"
            ></image>
          </view>
        </view>
      </view>
Y
init  
yurj26 已提交
205
    </view>
DCloud-WZF's avatar
DCloud-WZF 已提交
206 207 208
    <!-- #ifdef APP -->
  </scroll-view>
  <!-- #endif -->
Y
init  
yurj26 已提交
209 210
</template>
<script lang="ts">
DCloud-WZF's avatar
DCloud-WZF 已提交
211 212 213 214 215 216 217 218 219 220
export default {
  data() {
    return {
      title: 'input',
      focus: false,
      inputValue: '',
      showClearIcon: false,
      inputClearValue: '',
      changeValue: '',
      showPassword: true,
Y
init  
yurj26 已提交
221
    }
DCloud-WZF's avatar
DCloud-WZF 已提交
222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268
  },
  onReady() {
    // TODO auto focus
    // (this.$refs['input'] as INode).focus();
  },
  methods: {
    onKeyInput: function (event: InputEvent) {
      this.inputValue = event.detail.value
    },
    replaceInput: function (event: InputEvent) {
      var value = event.detail.value
      if (value == '11') {
        this.changeValue = '2'
      }
    },
    clearInput: function (event: InputEvent) {
      this.inputClearValue = event.detail.value
      if (event.detail.value.length > 0) {
        this.showClearIcon = true
      } else {
        this.showClearIcon = false
      }
    },
    clearIcon: function () {
      this.inputClearValue = ''
      this.showClearIcon = false
    },
    changePassword: function () {
      this.showPassword = !this.showPassword
    },
    // hideKeyboard: function(event: InputEvent) {
    //     if (event.detail.value === '123') {
    //         uni.hideKeyboard();
    //     }
    // },
    // onFocus() {
    //     this.$mp.page.$getAppWebview().setStyle({
    //         softinputNavBar: 'none'
    //     })
    // },
    // onBlur() {
    //     this.$mp.page.$getAppWebview().setStyle({
    //         softinputNavBar: 'auto'
    //     })
    // }
  },
}
Y
init  
yurj26 已提交
269 270 271
</script>

<style scoped>
DCloud-WZF's avatar
DCloud-WZF 已提交
272 273 274 275
.nvue-page-root {
  background-color: #f8f8f8;
  padding-bottom: 20px;
}
Y
init  
yurj26 已提交
276

DCloud-WZF's avatar
DCloud-WZF 已提交
277 278 279
.title {
  padding: 5px 13px;
}
Y
init  
yurj26 已提交
280

DCloud-WZF's avatar
DCloud-WZF 已提交
281 282 283 284
.uni-form-item__title {
  font-size: 16px;
  line-height: 24px;
}
Y
init  
yurj26 已提交
285

DCloud-WZF's avatar
DCloud-WZF 已提交
286 287 288 289 290 291 292
.uni-input-wrapper {
  display: flex;
  padding: 8px 13px;
  flex-direction: row;
  flex-wrap: nowrap;
  background-color: #ffffff;
}
Y
init  
yurj26 已提交
293

DCloud-WZF's avatar
DCloud-WZF 已提交
294 295 296 297 298 299 300 301
.uni-input {
  height: 28px;
  line-height: 28px;
  font-size: 15px;
  padding: 0px;
  flex: 1;
  background-color: #ffffff;
}
Y
init  
yurj26 已提交
302

DCloud-WZF's avatar
DCloud-WZF 已提交
303 304 305 306 307
.uni-icon {
  width: 24px;
  height: 24px;
}
</style>