小程序中自定义代用输入框的模态框弹窗

Posted 戏子薄情、薄如一命

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小程序中自定义代用输入框的模态框弹窗相关的知识,希望对你有一定的参考价值。

<html部分-->
<button type="default" bindtap=\'showModal2\'>弹出带文本框的modal</button>
<modal hidden="{{hiddenModal2}}" title="请完善您的个人信息" confirm-text="提交" cancel-text="取消" bindconfirm="model2confirm"
  bindcancel="model2cancel">
  <view class="loginBox">
    <view style=\'width:70%;margin-left:15%;\'>
      <view
        style=\'border-top-left-radius:8px;border-top-right-radius:8px;width:100%;height:38px;display:inline-block;background:#fff;\'>
        <view style=\'width:20%;display:inline-block;height:100%;\'>
          <image src=\'../../images/xueyuan.svg\' style=\'display:inline;\' mode="aspectFit" style=\'width:60rpx;display:inline-block;height:100%;\'></image>
        </view>
        <input style=\'width:80%;display:inline-block;height:100%;\' bindinput=\'input1\' placeholder-style=\'font-size:12px;\'
          placeholder=\'学 院:\'></input>
      </view>
      <view
        style=\'width:100%;height:38px;display:inline-block;background:#fff;margin-top:-5px;border-top:1px solid #f8f8f8;border-bottom-left-radius:8px;border-bottom-right-radius:8px;\'>
        <view style=\'width:20%;display:inline-block;height:100%;\'>
          <image src=\'../../images/code.svg\' style=\'display:inline\' mode="aspectFit" style=\'width:50rpx;display:inline-block;height:100%;\'></image>
        </view>
        <input style=\'width:80%;display:inline-block;height:100%;\' bindinput=\'input2\' placeholder-style=\'font-size:12px;\'
          placeholder=\'工 号:\'></input>
      </view>
    </view>
  </view>
</modal>
js部分:
Page({
  data: {
   hiddenModal2:true,
   input1:\'\',
   input2:\'\'
  },
  input1:function(e){
   this.setData({input1:e.detail.value})
  },
  input2:function(e){
    this.setData({input2:e.detail.value})
   },
  showModal2: function (e) {
   this.setData({ hiddenModal2: false })
  },
  model2confirm: function (e) {
   this.setData({ hiddenModal2: true })
   console.log(this.data.input1,this.data.input2)
  //  wx.showToast({
  //   title: \'确定\',
  //   icon:\'none\'
  //  })
  },
  model2cancel: function (e) {
   this.setData({ hiddenModal2: true })
  }
 })
 

  

以上是关于小程序中自定义代用输入框的模态框弹窗的主要内容,如果未能解决你的问题,请参考以下文章

微信小程序之自定义模态弹窗(带动画)实例

vue给模态框弹窗添加路由,实现页面后退可以关闭模态框

微信小程序之自定义模态弹窗(带动画)实例

微信小程序弹窗下输入框点击还会获取焦点

微信小程序怎么实现弹窗?

Bootstrap模态框的使用