中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

微信小程序如何制作登錄頁面

九三
582
2021-01-13 11:38:27
欄目: 云計算

微信小程序如何制作登錄頁面

在小程序中制作一個登錄頁面的方法

index.wxml文件

<view class="container"> 

<view class="login-icon"> 

<image class="login-img" src="../images/loginLog.jpg"></image> 

</view> 

<view class="login-from"> 

<!--賬號框-->

<view class="inputView"> 

<image class="nameImage" src="../images/name.png"></image> 

<label class="loginLab">賬號</label> 

<input class="inputText" placeholder="請輸入賬號" bindinput="phoneInput" /> 

</view> 

<view class="line"></view> 

<!--密碼框-->

<view class="inputView"> 

<image class="keyImage" src="../images/key.png"></image> 

<label class="loginLab">密碼</label> 

<input class="inputText" password="true" placeholder="請輸入密碼" bindinput="passwordInput" /> 

</view> 

<!--登錄按鈕-->

<view class="loginBtnView"> 

<button class="loginBtn" type="primary" size="{{primarySize}}" loading="{{loading}}" plain="{{plain}}" disabled="{{disabled}}" bindtap="login">登錄</button> 

</view> 

</view> 

</view>

index.wxss文件

page{ 

height: 100%; 

.container { 

height: 100%; 

display: flex; 

flex-direction: column; 

padding: 0; 

box-sizing: border-box; 

background-color: #f2f2f2

/*背景圖片*/

.login-icon{ 

flex: none; 

.login-img{ 

width: 750rpx; 

/*表單內容*/

.login-from { 

margin-top: 20px; 

flex: auto; 

height:100%; 

.inputView { 

background-color: #fff; 

line-height: 44px; 

/*輸入框*/

.nameImage, .keyImage { 

margin-left: 22px; 

width: 14px; 

height: 14px

.loginLab { 

margin: 15px 15px 15px 10px; 

color: #545454; 

font-size: 14px

.inputText { 

flex: block; 

float: right; 

text-align: right; 

margin-right: 22px; 

margin-top: 11px; 

color: #cccccc; 

font-size: 14px

.line { 

width: 100%; 

height: 1px; 

background-color: #cccccc; 

margin-top: 1px; 

/*登錄按鈕*/

.loginBtnView { 

width: 100%; 

height: auto; 

background-color: #f2f2f2; 

margin-top: 0px; 

margin-bottom: 0px; 

padding-bottom: 0px; 

.loginBtn { 

width: 80%; 

margin-top: 35px; 

}

index.js文件

Page({ 

data: { 

phone: '', 

password:''

}, 

// 獲取輸入賬號 

phoneInput :function (e) { 

this.setData({ 

phone:e.detail.value 

}) 

}, 

// 獲取輸入密碼 

passwordInput :function (e) { 

this.setData({ 

password:e.detail.value 

}) 

}, 

// 登錄條件 

login: function () { 

if(this.data.phone.length == 0 || this.data.password.length == 0){ 

wx.showToast({ 

title: '用戶名和密碼不能為空', 

icon: 'loading', 

duration: 2000 

}) 

}else { 

// 修改成跳轉的頁面 

wx.showToast({ 

title: '登錄成功', 

icon: 'success', 

duration: 2000 

}) 

})

0
高州市| 吉林市| 乃东县| 阿拉善右旗| 福海县| 凤山市| 盈江县| 吉林市| 高唐县| 潞城市| 常德市| 呼图壁县| 社旗县| 香河县| 普格县| 德江县| 鄂托克前旗| 垣曲县| 新乡县| 红安县| 崇左市| 永新县| 河南省| 惠水县| 襄城县| 玛多县| 股票| 武宣县| 垦利县| 荣成市| 晋江市| 商都县| 永济市| 肥西县| 酉阳| 剑川县| 湖南省| 巨鹿县| 焉耆| 施甸县| 修文县|