48 lines
1.2 KiB
Plaintext
48 lines
1.2 KiB
Plaintext
|
|
<t-input
|
||
|
|
label="输入密码"
|
||
|
|
type="password"
|
||
|
|
value="{{textPassword}}"
|
||
|
|
suffixIcon="{{ { name: 'browse-off', ariaLabel: '密码' } }}"
|
||
|
|
/>
|
||
|
|
|
||
|
|
<t-input placeholder="输入验证码" label="验证码">
|
||
|
|
<view slot="suffix" class="suffix">
|
||
|
|
<view class="suffix--line"></view>
|
||
|
|
<image
|
||
|
|
class="image"
|
||
|
|
src="https://wwcdn.weixin.qq.com/node/wework/images/202010241547.ac6876be9c.png"
|
||
|
|
mode="heightFix"
|
||
|
|
aria-role="img"
|
||
|
|
aria-label="验证码"
|
||
|
|
/>
|
||
|
|
</view>
|
||
|
|
</t-input>
|
||
|
|
|
||
|
|
<t-input
|
||
|
|
label="手机号"
|
||
|
|
placeholder="输入手机号码"
|
||
|
|
value="{{phoneNumber}}"
|
||
|
|
type="number"
|
||
|
|
tips="{{phoneError ? '手机号输入不正确' : ''}}"
|
||
|
|
bindchange="onPhoneInput"
|
||
|
|
>
|
||
|
|
<view slot="suffix" style="display: flex; align-items: center">
|
||
|
|
<view class="suffix--line"></view>
|
||
|
|
<view class="verify" aria-role="button"> 发送验证码 </view>
|
||
|
|
</view>
|
||
|
|
</t-input>
|
||
|
|
|
||
|
|
<t-input
|
||
|
|
label="价格"
|
||
|
|
placeholder="0.00"
|
||
|
|
suffix="元"
|
||
|
|
align="right"
|
||
|
|
type="number"
|
||
|
|
format="{{priceFormat}}"
|
||
|
|
bindchange="onPriceInput"
|
||
|
|
tips="{{priceError ? '请输入正确的价格' : ''}}"
|
||
|
|
t-class-tips="tips"
|
||
|
|
/>
|
||
|
|
|
||
|
|
<t-input label="数量" placeholder="填写个数" suffix="个" align="right" type="number" />
|