New Huajishe Check ChaoXing
This commit is contained in:
@@ -0,0 +1,101 @@
|
||||
<import src="../common/template/icon.wxml" />
|
||||
<wxs src="../common/utils.wxs" module="_" />
|
||||
<wxs src="./input.wxs" module="_this" />
|
||||
|
||||
<view
|
||||
style="{{_._style([style, customStyle])}}"
|
||||
class="{{_.cls(classPrefix, [['border', !borderless]])}} {{classPrefix}}--layout-{{layout}} class {{prefix}}-class"
|
||||
aria-describedby
|
||||
>
|
||||
<!-- aria-describedby用于关联该行设置了aria-hidden的元素最近的焦点,解决触发焦点过度上下偏移的问题 -->
|
||||
<view class="{{classPrefix}}__wrap--prefix">
|
||||
<view class="{{classPrefix}}__icon--prefix">
|
||||
<slot name="prefix-icon" />
|
||||
<template
|
||||
wx:if="{{_prefixIcon}}"
|
||||
is="icon"
|
||||
data="{{tClass: prefix + '-class-prefix-icon', ariaHidden: true, ..._prefixIcon}}"
|
||||
/>
|
||||
</view>
|
||||
<view class="{{classPrefix}}__label {{prefix}}-class-label" aria-hidden>
|
||||
<slot name="label" />
|
||||
<block wx:if="{{label}}">{{label}}</block>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view class="{{classPrefix}}__wrap">
|
||||
<view class="{{classPrefix}}__content {{classPrefix}}--{{status}}">
|
||||
<input
|
||||
class="{{_this.getInputClass(classPrefix, suffix, align, disabled)}} {{prefix}}-class-input"
|
||||
maxlength="{{allowInputOverMax ? -1 : maxlength}}"
|
||||
disabled="{{disabled || readonly}}"
|
||||
placeholder="{{placeholder}}"
|
||||
placeholder-style="{{placeholderStyle}}"
|
||||
placeholder-class="{{_.cls(classPrefix + '__placeholder', [['disabled', disabled]])}} {{placeholderClass}}"
|
||||
value="{{value}}"
|
||||
password="{{type === 'password'}}"
|
||||
type="{{type === 'password' ? 'text' : type}}"
|
||||
focus="{{focus}}"
|
||||
confirm-type="{{confirmType}}"
|
||||
confirm-hold="{{confirmHold}}"
|
||||
cursor="{{cursor}}"
|
||||
cursor-color="{{cursorColor}}"
|
||||
cursor-spacing="{{cursorSpacing}}"
|
||||
adjust-position="{{adjustPosition}}"
|
||||
auto-focus="{{autoFocus}}"
|
||||
always-embed="{{alwaysEmbed}}"
|
||||
selection-start="{{selectionStart}}"
|
||||
selection-end="{{selectionEnd}}"
|
||||
hold-keyboard="{{holdKeyboard}}"
|
||||
safe-password-cert-path="{{safePasswordCertPath}}"
|
||||
safe-password-length="{{safePasswordLength}}"
|
||||
safe-password-time-stamp="{{safePasswordTimeStamp}}"
|
||||
safe-password-nonce="{{safePasswordNonce}}"
|
||||
safe-password-salt="{{safePasswordSalt}}"
|
||||
safe-password-custom-hash="{{safePasswordCustomHash}}"
|
||||
aria-role="textbox"
|
||||
aria-label="{{label}}"
|
||||
aria-roledescription="{{label}}"
|
||||
bindinput="onInput"
|
||||
bindfocus="onFocus"
|
||||
bindblur="onBlur"
|
||||
bindconfirm="onConfirm"
|
||||
bindkeyboardheightchange="onKeyboardHeightChange"
|
||||
bindnicknamereview="onNickNameReview"
|
||||
/>
|
||||
<!--
|
||||
这里aria-role="textbox"和aria-label组合使用实现ios的聚合焦点播报效果。
|
||||
ios会播报aria-label,不会重复播报aria-roledescription的内容;
|
||||
安卓不会播报aria-label,会播报aria-roledescription的内容
|
||||
-->
|
||||
<view
|
||||
wx:if="{{_clearIcon && value.length > 0 && showClearIcon}}"
|
||||
class="{{classPrefix}}__wrap--clearable-icon"
|
||||
bind:tap="clearInput"
|
||||
>
|
||||
<template
|
||||
is="icon"
|
||||
data="{{tClass: prefix + '-class-clearable', ariaRole: 'button', ariaLabel: '清除', ..._clearIcon }}"
|
||||
/>
|
||||
</view>
|
||||
<view class="{{classPrefix}}__wrap--suffix {{prefix}}-class-suffix" bind:tap="onSuffixClick">
|
||||
<text wx:if="{{suffix}}">{{suffix}}</text>
|
||||
<slot name="suffix" />
|
||||
</view>
|
||||
<view class="{{classPrefix}}__wrap--suffix-icon" bind:tap="onSuffixIconClick">
|
||||
<slot name="suffix-icon" />
|
||||
<template
|
||||
wx:if="{{_suffixIcon}}"
|
||||
is="icon"
|
||||
data="{{tClass: prefix + '-class-suffix-icon', ariaRole: 'button', ..._suffixIcon }}"
|
||||
/>
|
||||
</view>
|
||||
</view>
|
||||
<view
|
||||
wx:if="{{tips && tips.length > 0}}"
|
||||
class="{{classPrefix}}__tips {{classPrefix}}--{{align}} {{prefix}}-class-tips"
|
||||
>{{tips}}
|
||||
</view>
|
||||
<slot name="tips" />
|
||||
</view>
|
||||
</view>
|
||||
Reference in New Issue
Block a user