mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
* add src dir && add build * add build watch && change dir name * bower ignore package.json
24 lines
946 B
Plaintext
24 lines
946 B
Plaintext
<template name="zan-field">
|
|
<view class="zan-cell zan-field {{ error ? 'zan-field--error' : '' }} {{ mode === 'wrapped' ? 'zan-field--wrapped' : '' }}">
|
|
<view
|
|
wx:if="{{ title }}"
|
|
class="zan-cell__hd zan-field__title">{{ title }}</view>
|
|
<textarea
|
|
wx:if="{{ type === 'textarea' }}"
|
|
auto-height
|
|
placeholder="{{ placeholder }}"
|
|
class="zan-field__input zan-cell__bd {{ right ? 'zan-field__input--right' : '' }}"
|
|
placeholder-class="zan-field__placeholder"
|
|
bindinput="_handleZanFieldChange"
|
|
data-component-id="{{ componentId }}"></textarea>
|
|
<input
|
|
wx:else
|
|
type="{{ inputType || 'text' }}"
|
|
placeholder="{{ placeholder }}"
|
|
class="zan-field__input zan-cell__bd {{ right ? 'zan-field__input--right' : '' }}"
|
|
placeholder-class="zan-field__placeholder"
|
|
bindinput="_handleZanFieldChange"
|
|
data-component-id="{{ componentId }}"/>
|
|
</view>
|
|
</template>
|