ant-design / ant-design-mini

Ant Design for Alipay Mini Program

Home Page:https://mini.ant.design

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

input 支持双行值显示

CrossLee opened this issue · comments

背景

用户在输入时,匹配上辅助值时需要同时显示,如图
image

期望

支持 tips 字段,作为辅助值显示

思路

参考 tdesign 组件

https://tdesign.tencent.com/miniprogram/components/input

image

image

  <FormInput
      label="地址"
      name="address"
      placeholder="请输入地址"
      allowClear
      help="显示帮助"
      ref="handleRef"
    ></FormInput>

可以使用 form-item 的 help 字段。