index.wxml 464 B

12345
  1. <!--components/input/index.wxml-->
  2. <input wx:if="{{type !== 'textarea'}}" type="{{type}}" maxlength="{{maxLength}}" value="{{value}}" placeholder="{{placeholder}}" bindinput="getValue" disabled="{{disabled || isAudit}}" style="color: #646566" placeholder-style="color: #C8C9CC" />
  3. <textarea style="width: 100%;" wx:if="{{type === 'textarea'}}" value="{{value}}" placeholder="{{placeholder}}" auto-height="{{true}}" bindinput="getValue" disabled="{{disabled}}" />