1. 程式人生 > >「小程序JAVA實戰」小程序註冊界面的開發(29)

「小程序JAVA實戰」小程序註冊界面的開發(29)

none title NPU 什麽 不能 name left 新項目 data

轉自:https://idig8.com/2018/08/27/xiaochengxujavashizhanxiaochengxuzhucejiemiandekaifa29/

小程序基本所有的常用組件已經了解的差不多了,基本可以實戰了,本次就開始小程序的真正實戰,完成小程序的一個註冊頁面的設計。源碼:https://github.com/limingios/wxProgram.git 中的No.15

技術分享圖片

開發最重要的就是實操!

開發人員很少人懂美工

我就懂css 其實也設計不出來什麽好看的,在網上找了個參照物,自己自己模仿這搞了下

  • 創建一個新項目刪除其中初始化的一些無用的項目。

userRegister.wxml

<view>
    <view class="login-icon">
        <image class="login-img" src="../../resource/images/dsp.jpg"></image>
    </view>
    <view class="login-from">
        <form bindsubmit=‘doRegist‘>
            <!--賬號-->
            <view class="inputView">
                <image class="nameImage" src="../../resource/images/username.png"></image>
                <label class="loginLabel">賬號</label>
                <input name="username" type="text" class="inputText" placeholder="請輸入賬號"/>
            </view>

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

            <!--密碼-->
            <view class="inputView">
                <image class="keyImage" src="../../resource/images/password.png"></image>
                <label class="loginLabel">密碼</label>
                <input name="password" type="text" class="inputText" password="{{true}}" placeholder="請輸入密碼"/>
            </view>

            <!--按鈕-->
            <view>
                <button class="loginBtn" type="primary" form-type=‘submit‘>註冊</button>
            </view>

            <view>
                <button class="goLoginBtn" type="warn" bindtap="goLoginPage">返回登錄</button>
            </view>
        </form>
    </view>
</view>

userRegister.js

const app = getApp()

Page({
    data: {

    },

    doRegist: function(e) {
      var me = this;
      var formObject = e.detail.value;
      var username = formObject.username;
      var password = formObject.password;

      // 簡單驗證
      if (username.length == 0 || password.length == 0) {
        wx.showToast({
          title: ‘用戶名或密碼不能為空‘,
          icon: ‘none‘,
          duration: 3000
        })
      }
    },
    goLoginPage:function(e){
      console.log("跳轉到登錄");
    }
})
page {
    background-color: whitesmoke;
}

.login-img {
    width: 750rpx;
}

/*表單內容*/
.inputView {
    background-color: white;
    line-height: 45px;
}

/*輸入框*/
.nameImage, .keyImage {
    margin-left: 22px;
    width: 20px;
    height: 20px;
}

.loginLabel {
    margin: 15px 15px 15px 10px;
    color: gray;
    font-size: 15px;
}

.inputText {
    float: right;
    text-align: right;
    margin-right: 22px;
    margin-top: 11px;
    font-size: 15px;
}

.line {
    width: 100%;
    height: 1px;
    background-color: gainsboro;
    margin-top: 1px;
}

/*按鈕*/
.loginBtn {
    width: 80%;
    margin-top: 35px;
}

.goLoginBtn {
    width: 80%;
    margin-top: 15px;
}

PS:這個就是簡單的註冊頁面,其實很多元素我也抄的網上的,但是要理解這個設計的思路很理念,別搬磚都不知道去哪裏找,那就尷尬了。

「小程序JAVA實戰」小程序註冊界面的開發(29)