Taro -- 微信小程序密码弹窗
记录一个类似支付密码的弹窗写法,实现是否免密功能。如图:

index.js
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
}
</View>
)
}
}
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 -- 微信小程序密码弹窗的更多相关文章
- Taro -- 微信小程序wxParse达到html转换wxml
Taro微信小程序可以用wxParse来达到html转换wxml的效果:https://github.com/NervJS/taro-components-test/blob/master/src/p ...
- Taro -- 微信小程序登录
Taro微信小程序登录 1.调用Taro.login()获取登录凭证code: 2.调用Taro.request()将code传到服务器: 3.服务器端调用微信登录校验接口(appid+appsecr ...
- 微信小程序自定义弹窗wcPop插件|仿微信弹窗样式
微信小程序自定义组件弹窗wcPop|小程序消息提示框|toast自定义模板弹窗 平时在开发小程序的时候,弹窗应用场景还是蛮广泛的,但是微信官方提供的弹窗比较有局限性,不能自定义修改.这个时候首先想到的 ...
- Taro 微信小程序 上传文件到minio
小程序前端上传文件不建议直接引用minio的js npm包,一来是这个包本身较大,会影响小程序的体积,二来是ak sk需要放到前端存储,不够安全,因此建议通过请求后端拿到签名数据后上传. 由于小程序的 ...
- taro 微信小程序原生作用域获取
在 Taro 的页面和组件类中,this 指向的是 Taro页面或组件实例. 但是一般我们需要获取 Taro的页面和组件 所对应的 小程序原生页面和组件实例,这个时候我们可以通过 this.$scop ...
- 微信小程序---密码输入
设计支付密码的输入框 效果如下: 源码:github地址:https://github.com/fiveTree/-_- 干货: <view class="pay"> ...
- 微信小程序底部弹窗动画
第一步,在组件里编写弹窗的代码 <!-- 活动类型弹框 --> <view class='bottomModel' wx:if="{{modelFlag}}" c ...
- 微信小程序 - 自定义弹窗组件
2019-01-06:简化了一些代码,以及增加了可用性. // 弹窗配置 dialogConfig: { // 弹窗 dialogvisible: false, options: { // 显示关闭按 ...
- 微信小程序自定义弹窗(可通用)
效果图 .wxml <cover-view class='mask' wx:if='{{isShow}}'> <cover-view class='modal'> <co ...
随机推荐
- Leetcode 4. Median of Two Sorted Arrays(中位数+二分答案+递归)
4. Median of Two Sorted Arrays Hard There are two sorted arrays nums1 and nums2 of size m and n resp ...
- JMH简介
JMH是新的microbenchmark(微基准测试)框架(2013年首次发布).与其他众多框架相比它的特色优势在于,它是由Oracle实现JIT的相同人员开发的.特别是我想提一下Aleksey Sh ...
- iOS9 3DTouch 之 Home Screen Quick Actions
最后更新:2016-12-18 测试环境: Xcode8.1 一.前言 iOS9 已经过去一年了,3D Touch也在项目中实战过,但一直没有总结一下,现在新的项目也用到了3D Touch, 网上找了 ...
- 170814-17关于javaweb的知识点
1. 静态web项目.动态web项目区别 WEB-INF ...
- 解决Firefox已阻止运行早期版本Adobe Flash
解决Firefox已阻止运行早期版本Adobe Flash 类别 [随笔分类]web 解决Firefox已阻止运行早期版本Adobe Flash 最近火狐浏览器不知抽什么风, ...
- 《JavaScript 高级程序设计》
第 3 章 基本概念 3.5.2 位操作符 ECMAScript 中所有数值都是以 IEEE-754 64 位格式存储,但位操作符并不直接操作 64 位的值.而是先将 64 位的值转换成 32 位的整 ...
- 纯CSS3写一个立方体并在鼠标悬停的时候无限循环旋转
- 几种 MyBatis 增强插件
1. mybatis-generator/mybatis-generator-gui 2. 通用mapper 3. mybatis-plus 4. fastmybatis 5. mybatis-enh ...
- 阶段1 语言基础+高级_1-3-Java语言高级_1-常用API_1_第3节 Random类_8-Random概述和基本使用
用来产生随即数字 构造方法有一个是为空的 每次运行数值都不一样
- ELK 学习
[Udemy] ES 7 and Elastic Stack - part 1 [Udemy] ES 7 and Elastic Stack - part 2 [Udemy] ES 7 and Ela ...