赞
踩
uni-app 是一款跨平台的移动端开发框架,可以使用 Vue.js 语法开发支持 Android、iOS、H5、小程序、快应用等多种平台的应用。
在 uni-app 中,可以使用 Vue 组件来开发登录页面。下面是一个简单的登录页面示例:
- <template>
- <view class="container">
- <view class="logo">
- <image src="../../static/logo.png" />
- </view>
- <view class="form">
- <view class="form-item">
- <input v-model="username" type="text" placeholder="请输入用户名" />
- </view>
- <view class="form-item">
- <input v-model="password" type="password" placeholder="请输入密码" />
- </view>
- <view class="form-item form-item-btn">
- <button @click="login">登录</button>
- </view>
- </view>
- </view>
- </template>
-
- <script>
- export default {
- data() {
- return {
- username: '',
- password: ''
- }
- },
- methods: {
- login() {
- // 在这里发送登录请求,校验用户名密码是否正确
- // 登录成功后,可以跳转到应用的主页面
- }
- }
- }
- </script>
-
- <style>
- .container {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- height: 100%;
- }
-
- .logo {
- margin-bottom: 60px;
- }
-
- .form {
- width: 80%;
- }
-
- .form-item {
- margin-bottom: 20px;
- }
-
- .form-item input {
- width: 100%;
- height: 40px;
- border-radius: 4px;
- border: 1px solid #ccc;
- padding: 0 10px;
- }
-
- .form-item-btn button {
- width: 100%;
- height: 40px;
- background-color: #409eff;
- color: #fff;
- border-radius: 4px;
- }
- </style>
上面的代码使用了 uni-app 的 template、script 和 style 标
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。