记录一个类似支付密码的弹窗写法,实现是否免密功能。如图:

index.js


  import Taro, { Component } from '@tarojs/taro'
  import { View, Button, Text } from '@tarojs/components'
  import { AtInput, AtList, AtListItem, AtIcon, AtButton,AtToast} from "taro-ui"
  import './index.scss'
class Index extends Component {
constructor() {
super(...arguments)
this.state = ({
switchIsCheck: false,
showPayPwdInput: false,
payFocus: true,
pwdVal: '',
toastText: '',
isOpened: false
    })
}
// 打开关闭免密 用了在Switch开关上面遮挡一个透明的View,来显示弹窗,控制Switch的开关
switchIsCheckBtn = () => {
this.setState({
showPayPwdInput: true
})
}
closeClick = () => {
this.setState({
showPayPwdInput: false
})
}
// 检验密码 输完6位数字密码时候调用
hidePayLayer = () => {
let val = this.state.pwdVal
this.setState({
showPayPwdInput: false,
pwdVal: ''
}, () => {
Taro.request({
method: 'post',
url:
API.URL,
header: {
'Content-Type': 'application/json',
'Data-Type':'json',
'weixinauth': this.state.tookenData
},
data:JSON.stringify({
password:val
}),
success: res => {
if (res.data.status == ) {
this.setState({
switchIsCheck: !this.state.switchIsCheck
})
}else{
this.setState({
isOpened: true,
toastText: '密码错误'
})
}
}
})
})
}
// 密码输入
inputPwd = (e) => {
this.setState({
pwdVal: e.detail.value
},() => {
if (e.detail.value.length >= ) {
this.hidePayLayer()
}
})
}
render() {
const {isOpened, toastText} = this.state
return (
<View className='box-passward'>
<View className="password-top">
<View className="no-password">
<AtList>
<AtListItem title='密码' extraText='●●●●●●' arrow='right' onClick={this.handleClickChange} />
<AtListItem
switchColor='#40ac4b'
title='我要免密'
isSwitch
onSwitchChange={this.handleChange}
switchIsCheck={this.state.switchIsCheck}
/>
<View className="password-btn" onClick={this.switchIsCheckBtn}></View>
</AtList>
<View className='forget-password' onClick={this.forgetPwd}>忘记密码?</View>
</View>
</View>
{
this.state.showPayPwdInput ?
<View className="dialog">
<View className="input_main">
<View className="input_title">
<AtIcon onClick={this.closeClick} value='close' size=''className="input_title-close"></AtIcon>
<Text>免密修改</Text>
</View>
<View className="write-title">请输入密码</View>
<View className="input_row">
{
[,,,,,].map((item,index) => {
return (
<View key={index} className="pwd_item">
{
this.state.pwdVal.length>index ? <Text className="pwd_itemtext"></Text> : null
}
</View>
)
})
}
</View>
<Input focus={this.state.payFocus} password type="number" maxLength="" onInput={this.inputPwd} className="input_control"></Input>
</View>
</View>
: null
}
          <AtToast isOpened={isOpened} duration={1000} text={toastText} onClose={this.handleClose}/>
      </View>
)
}
}
export default Index
 

index.scss

.box-passward {
display: flex;
flex-direction: column;
height: 100vh;
background: #f2f2f2;
.signature-passward-bg {
background: linear-gradient(#21b459, #24a262);
position: relative;
}
.tabContant-certificate {
padding-top: %;
.image-certificate{
width:360px;
height: 360px;
margin: auto;
image{
width: %;
height: %;
}
}
.text-certificate{
font-size:30px;
width:508px;
margin: auto;
}
}
.password-top{
margin-top:32px;
.no-password{
.at-list__item .item-extra__info{
font-size: 24px;
}
}
.at-list{
border-top: 1px solid #e5e5e5;
border-bottom: 1px solid #e5e5e5;
}
.password-btn{
width:105px;
height: 70px;
position: absolute;
right:35px;
bottom:20px;
}
.forget-password{
padding:20px;
color:#40ac4b;
font-size: 28px;
}
.my-body {
.account-tip {
width: %;
color: #;
font-size: 28px;
line-height: 50px;
padding: 30px 20px;
font-family: "PingFang-SC-Medium";
.active{
color: #40ac4b;
font-size: 26px;
}
}
.my-body-content {
background-color: #fff;
border-top:1px solid #e5e5e5;
border-bottom:1px solid #e5e5e5;
}
.at-button{
margin:60px 30px;
}
}
}
.dialog {
width: %;
height: %;
position: fixed;
left:;
top:;
z-index: ;
background: rgba(,,,0.5);
.input_main {
position: fixed;
left: %;
bottom: %;
margin-bottom:-180px;
margin-left: -%;
width: %;
height: 360px;
background-color: #fff;
z-index: ;
border-radius: 10px;
.input_title {
width: %;
height: 135px;
line-height: 135px;
text-align: center;
font-size: 40px;
.input_title-close{
color:rgb(,,);
float: left;
margin-top:50px;
margin-left: 40px;
}
.input_back {
position: absolute;
left: ;
top: ;
width: 80px;
height: 90px;
display: flex;
justify-content: center;
align-items: center;
.input_backtext {
width: 20px;
height: 20px;
background-color: white;
border: 2px solid #aaa;
border-width: 5px 5px;
transform: rotate(-45deg);
}
}
}
.write-title{
color:rgb(,,);
font-size: 30px;
padding-left:40px;
margin-bottom: 30px;
}
.input_row {
width: %;
margin: 40px;
height: 98px;
position: relative;
display: flex;
align-items: center;
border: 2px solid rgb(,,);
.pwd_item{
flex: ;
display: flex;
align-items: center;
justify-content: center;
height: %;
border-right: 2px solid rgb(,,);
position: relative;
.pwd_itemtext {
width: 30px;
height: 30px;
border-radius: 30px;
background-color: #;
}
}
.pwd_item:last-child {
border-right: none;
}
}
.forget_pwd {
float: right;
margin: 30px;
width: 100px;
text-align: right;
font-size: 24px;
color: #ff7800;
}
.input_control {
position: relative;
left: -300px;
bottom: ;
width: 100px;
height: 100px;
}
}
}
}

Taro -- 微信小程序密码弹窗的更多相关文章

  1. Taro -- 微信小程序wxParse达到html转换wxml

    Taro微信小程序可以用wxParse来达到html转换wxml的效果:https://github.com/NervJS/taro-components-test/blob/master/src/p ...

  2. Taro -- 微信小程序登录

    Taro微信小程序登录 1.调用Taro.login()获取登录凭证code: 2.调用Taro.request()将code传到服务器: 3.服务器端调用微信登录校验接口(appid+appsecr ...

  3. 微信小程序自定义弹窗wcPop插件|仿微信弹窗样式

    微信小程序自定义组件弹窗wcPop|小程序消息提示框|toast自定义模板弹窗 平时在开发小程序的时候,弹窗应用场景还是蛮广泛的,但是微信官方提供的弹窗比较有局限性,不能自定义修改.这个时候首先想到的 ...

  4. Taro 微信小程序 上传文件到minio

    小程序前端上传文件不建议直接引用minio的js npm包,一来是这个包本身较大,会影响小程序的体积,二来是ak sk需要放到前端存储,不够安全,因此建议通过请求后端拿到签名数据后上传. 由于小程序的 ...

  5. taro 微信小程序原生作用域获取

    在 Taro 的页面和组件类中,this 指向的是 Taro页面或组件实例. 但是一般我们需要获取 Taro的页面和组件 所对应的 小程序原生页面和组件实例,这个时候我们可以通过 this.$scop ...

  6. 微信小程序---密码输入

    设计支付密码的输入框 效果如下: 源码:github地址:https://github.com/fiveTree/-_- 干货: <view class="pay"> ...

  7. 微信小程序底部弹窗动画

    第一步,在组件里编写弹窗的代码 <!-- 活动类型弹框 --> <view class='bottomModel' wx:if="{{modelFlag}}" c ...

  8. 微信小程序 - 自定义弹窗组件

    2019-01-06:简化了一些代码,以及增加了可用性. // 弹窗配置 dialogConfig: { // 弹窗 dialogvisible: false, options: { // 显示关闭按 ...

  9. 微信小程序自定义弹窗(可通用)

    效果图 .wxml <cover-view class='mask' wx:if='{{isShow}}'> <cover-view class='modal'> <co ...

随机推荐

  1. AngularJS的基本概念和用法

    mvc 为什么需要mvc(mvc只是手段,终极目标是模块化和复用) 代码规模越来越大,切分职责是大势所趋 为了复用 为了后期维护方便 前端mvc的困难 操作DOM的代码必须等待整个页面全部加载完成. ...

  2. iOS开发自定义字体之静态字体

    最后更新 2017-04-25 在iOS开发中经常会用到字体, 一般字体文件比较小的,单一的,几十k, 可以通过内置进去;如果字体文件比较多或者字体文件比较大,通常通过动态加载方式. 静态加载方式 将 ...

  3. 深入理解JVM虚拟机1:JVM内存的结构与消失的永久代

    本文转自互联网,侵删 本系列文章将整理到我在GitHub上的<Java面试指南>仓库,更多精彩内容请到我的仓库里查看 https://github.com/h2pl/Java-Tutori ...

  4. 前端入门——day1(简介及推荐书籍和网站)

    写给谁 这篇文章写给想要入门前端或者刚入门前端的小白~如果是已经工作好几年的小伙伴们可以直接跳过这一系列文章啦. 为啥写这篇文章 终于决定给自己挖这个坑了,之前一直没打算写这样的系列文章.回想起自己的 ...

  5. 快速构建Spring Cloud工程

    spring cloud简介 spring cloud为开发人员提供了快速构建分布式系统的一些工具,包括配置管理.服务发现.断路器.路由.微代理.事件总线.全局锁.决策竞选.分布式会话等等.它运行环境 ...

  6. 微信小程序 form 组件

    表单组件:将组件内用户输入的 <switch> <input> <checkbox> <slider> <radio> <picker ...

  7. codeforces 657C - Bear and Contribution [想法题]

    题目链接: http://codeforces.com/problemset/problem/657/C ----------------------------------------------- ...

  8. URL里的分号';'一定要编码为%3b!!!!

    http://en.wikipedia.org/wiki/Query_string The series of pairs is separated by the ampersand, '&' ...

  9. Vuex的安装、使用及注意事项

    使用Vuex的步骤: (1)安装: 1.使用npm安装: 1 npm install vuex  --save 2.使用script标签引入 1 2 3 <script src="/p ...

  10. VMware 虚拟化编程(12) — VixDiskLib Sample 程序使用

    目录 目录 前文列表 vixDiskLibSample 安装 Sample 程序 Sample 程序使用方法 前文列表 VMware 虚拟化编程(1) - VMDK/VDDK/VixDiskLib/V ...