index.axml 488 B

123456
  1. <view class='input-index {{className}}' style='{{style}}' ref='saveChildRef0'>
  2. <custom-input a:if="{{type !== 'textarea'}}" type='{{type}}' maxlength='{{maxLength}}' value='{{value}}' placeholder='{{placeholder}}' disabled='{{disabled|| isAudit}}' onInput='getValue'>
  3. </custom-input>
  4. <textarea style='width: 100%;' a:if="{{type === 'textarea'}}" value='{{value}}' placeholder='{{placeholder}}' auto-height='{{true}}' disabled='{{disabled}}' onInput='getValue'>
  5. </textarea>
  6. </view>