美文网首页
微信小程序组件 - 中间底部弹出输入弹框

微信小程序组件 - 中间底部弹出输入弹框

作者: 西半球_ | 来源:发表于2022-05-16 09:09 被阅读0次

    GitHub Demo 地址: jh-weapp-demo 实现一些常用效果、封装通用组件和工具类

    请添加图片描述

    一、 jh-input-alert

    中间输入弹框,可设置最大输入长度,单行多行显示

    单行

    <jh-input-alert title='输入框标题' placeholder='请输入' maxlength='10' bind:cancel='cancel' bind:confirm='confirm'
        wx:if='{{ showDialog2 }}' />
    
    在这里插入图片描述

    多行

    <jh-input-alert title='输入框标题' multiline placeholder='请输入' maxlength='140' bind:cancel='cancel' bind:confirm='confirm'
        wx:if='{{ showDialog3 }}' />
    
    在这里插入图片描述

    二、jh-input-picker

    底部输入弹框,可设置最大输入长度

    <jh-input-picker isShow='{{showDialog4}}' title="标题" maxLength='50' placeholder='请输入(不超过50字)' bindconfirm='confirm'>
    </jh-input-picker>
    
    在这里插入图片描述

    相关文章

      网友评论

          本文标题:微信小程序组件 - 中间底部弹出输入弹框

          本文链接:https://www.haomeiwen.com/subject/vbgbiltx.html