uni-app的示例项目--简单的登陆页面及列表页面

2024-08-25 07:28

本文主要是介绍uni-app的示例项目--简单的登陆页面及列表页面,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

uni-app的示例项目--简单的登陆页面及列表页面

    • 文章说明
    • 核心代码
    • 效果展示
    • 源码下载

文章说明

随着移动端使用占比升高,手机端的App、小程序也成了一些场景下的首选;采用uni-pp开发此类应用具有很多优势,它可以直接使用vue3进行开发,同时它内置的许多小功能可以节省许多造轮子的操作,且可以将一套源码直接编译成App和小程序,非常方便

本文主要是为了学习uni-app的简单使用,采用原生自带的示例项目,再简单编辑了一些小功能,作为示例项目,可以在后续将PC端的我Web页面迁移到uni-app的架构

采用的开发工具是HBuilder,可在官网直接下载;同时在创建项目时可以选择官方自带的示例demo,在那里面可以直接找到基本组件的使用示例,学习起来非常方便

核心代码

登陆页面

<script setup>import {reactive} from 'vue';import UniForms from "../../uni_modules/uni-forms/components/uni-forms/uni-forms.vue";import UniFormsItem from "../../uni_modules/uni-forms/components/uni-forms-item/uni-forms-item.vue";import UniEasyInput from "../../uni_modules/uni-easyinput/components/uni-easyinput/uni-easyinput.vue";const data = reactive({username: "",password: "",});function submit() {uni.navigateTo({url: '/pages/student/list'});}
</script><template><div class="container"><div class="example"><UniForms><UniFormsItem><UniEasyInput v-model="data.username" placeholder="用户名" /></UniFormsItem><UniFormsItem><UniEasyInput type="password" v-model="data.password" placeholder="密码" /></UniFormsItem></UniForms><button type="primary" @click="submit()">登录</button></div></div>
</template><style scoped lang="scss">.container {width: 100vw;height: calc(100vh - 44px);}.example {padding: 30px 15px;background-color: #fff;width: 90%;max-width: 400px;position: absolute;left: 50%;top: 40%;transform: translateX(-50%) translateY(-50%);box-shadow: 0 0 30px 1px #88888888;border-radius: 10px;}
</style>

列表页面

<script setup>import {reactive,ref} from 'vue';import UniForms from "../../uni_modules/uni-forms/components/uni-forms/uni-forms.vue";import UniFormsItem from "../../uni_modules/uni-forms/components/uni-forms-item/uni-forms-item.vue";import UniEasyInput from "../../uni_modules/uni-easyinput/components/uni-easyinput/uni-easyinput.vue";const data = reactive({studentList: [],addStudentForm: {name: "",age: "",sex: "",grade: "",},editStudentForm: {id: "",name: "",age: "",sex: "",grade: "",},deleteStudentForm: {id: "",}});const studentAddDialog = ref();function openStudentAddDialog() {data.addStudentForm.name = "";data.addStudentForm.age = "";data.addStudentForm.sex = "";data.addStudentForm.grade = "";studentAddDialog.value.open();}function addStudent() {data.studentList.push({id: data.studentList.length + 1,name: data.addStudentForm.name,age: data.addStudentForm.age,sex: data.addStudentForm.sex,grade: data.addStudentForm.grade,});}const studentEditDialog = ref();function openStudentEditDialog(item) {data.editStudentForm.id = item.id;data.editStudentForm.name = item.name;data.editStudentForm.age = item.age;data.editStudentForm.sex = item.sex;data.editStudentForm.grade = item.grade;studentEditDialog.value.open();}function editStudent() {for (var i = 0; i < data.studentList.length; i++) {if (data.studentList[i].id === data.editStudentForm.id) {data.studentList[i].name = data.editStudentForm.name;data.studentList[i].age = data.editStudentForm.age;data.studentList[i].sex = data.editStudentForm.sex;data.studentList[i].grade = data.editStudentForm.grade;}}}const studentDeleteDialog = ref();function openStudentDeleteDialog(item) {data.deleteStudentForm.id = item.id;studentDeleteDialog.value.open();}function deleteStudent() {for (var i = 0; i < data.studentList.length; i++) {if (data.studentList[i].id === data.deleteStudentForm.id) {data.studentList.splice(i, 1);}}}
</script><template><div class="container"><div class="button-container"><button type="primary" @click="openStudentAddDialog()">添加</button></div><view><uni-popup ref="studentAddDialog" type="dialog"><uni-popup-dialog title="添加学生" @confirm="addStudent()"><UniForms style="width: 100%;"><UniFormsItem><UniEasyInput v-model="data.addStudentForm.name" placeholder="姓名" /></UniFormsItem><UniFormsItem><UniEasyInput v-model="data.addStudentForm.age" placeholder="年龄" /></UniFormsItem><UniFormsItem><UniEasyInput v-model="data.addStudentForm.sex" placeholder="性别" /></UniFormsItem><UniFormsItem><UniEasyInput v-model="data.addStudentForm.grade" placeholder="年级" /></UniFormsItem></UniForms></uni-popup-dialog></uni-popup></view><view><uni-popup ref="studentEditDialog" type="dialog"><uni-popup-dialog title="编辑学生" @confirm="editStudent()"><UniForms style="width: 100%;"><UniFormsItem><UniEasyInput v-model="data.editStudentForm.name" placeholder="姓名" /></UniFormsItem><UniFormsItem><UniEasyInput v-model="data.editStudentForm.age" placeholder="年龄" /></UniFormsItem><UniFormsItem><UniEasyInput v-model="data.editStudentForm.sex" placeholder="性别" /></UniFormsItem><UniFormsItem><UniEasyInput v-model="data.editStudentForm.grade" placeholder="年级" /></UniFormsItem></UniForms></uni-popup-dialog></uni-popup></view><view><uni-popup ref="studentDeleteDialog" type="dialog"><uni-popup-dialog type="confirm" cancelText="取消" confirmText="确认" title="删除学生" @confirm="deleteStudent()" :content="`确认删除该学生的信息吗?`"></uni-popup-dialog></uni-popup></view><div class="student-list"><template v-for="item in data.studentList" :key="item.id"><uni-card padding="0" :title="item.name"><view class="content"><view class="content-item"><text class="content-item-text">年龄:{{item.age}}</text></view><view class="content-item"><text class="content-item-text">性别:{{item.sex}}</text></view><view class="content-item"><text class="content-item-text">年级:{{item.grade}}</text></view></view><view slot="actions" class="card-actions"><view class="card-actions-item"><uni-icons type="compose" size="18" color="#999"></uni-icons><text class="card-actions-item-text" @click="openStudentEditDialog(item)">编辑</text></view><view class="card-actions-item"><uni-icons type="trash" size="18" color="#999"></uni-icons><text class="card-actions-item-text" @click="openStudentDeleteDialog(item)">删除</text></view></view></uni-card></template></div></div>
</template><style scoped lang="scss">.container {width: 100vw;height: calc(100vh - 44px);}.button-container {padding: 10px;}.student-list {.content {margin: 10px 0;.content-item {height: 30px;line-height: 30px;padding: 0 20px;.content-item-text {font-size: 12px;color: #666;}}}.card-actions {display: flex;flex-direction: row;justify-content: space-around;align-items: center;height: 45px;border-top: 1px #eee solid;.card-actions-item {display: flex;flex-direction: row;align-items: center;.card-actions-item-text {font-size: 12px;color: #666;margin-left: 5px;}}}}
</style>

效果展示

登陆页面
在这里插入图片描述

学生列表页面
在这里插入图片描述

学生添加页面
在这里插入图片描述

学生编辑页面
在这里插入图片描述

学生删除页面
在这里插入图片描述

源码下载

uni-app的学生管理系统

这篇关于uni-app的示例项目--简单的登陆页面及列表页面的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1104922

相关文章

C#使用SQLite进行大数据量高效处理的代码示例

《C#使用SQLite进行大数据量高效处理的代码示例》在软件开发中,高效处理大数据量是一个常见且具有挑战性的任务,SQLite因其零配置、嵌入式、跨平台的特性,成为许多开发者的首选数据库,本文将深入探... 目录前言准备工作数据实体核心技术批量插入:从乌龟到猎豹的蜕变分页查询:加载百万数据异步处理:拒绝界面

用js控制视频播放进度基本示例代码

《用js控制视频播放进度基本示例代码》写前端的时候,很多的时候是需要支持要网页视频播放的功能,下面这篇文章主要给大家介绍了关于用js控制视频播放进度的相关资料,文中通过代码介绍的非常详细,需要的朋友可... 目录前言html部分:JavaScript部分:注意:总结前言在javascript中控制视频播放

Mysql表的简单操作(基本技能)

《Mysql表的简单操作(基本技能)》在数据库中,表的操作主要包括表的创建、查看、修改、删除等,了解如何操作这些表是数据库管理和开发的基本技能,本文给大家介绍Mysql表的简单操作,感兴趣的朋友一起看... 目录3.1 创建表 3.2 查看表结构3.3 修改表3.4 实践案例:修改表在数据库中,表的操作主要

JSON Web Token在登陆中的使用过程

《JSONWebToken在登陆中的使用过程》:本文主要介绍JSONWebToken在登陆中的使用过程,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录JWT 介绍微服务架构中的 JWT 使用结合微服务网关的 JWT 验证1. 用户登录,生成 JWT2. 自定义过滤

Java中StopWatch的使用示例详解

《Java中StopWatch的使用示例详解》stopWatch是org.springframework.util包下的一个工具类,使用它可直观的输出代码执行耗时,以及执行时间百分比,这篇文章主要介绍... 目录stopWatch 是org.springframework.util 包下的一个工具类,使用它

Spring Boot 3.4.3 基于 Spring WebFlux 实现 SSE 功能(代码示例)

《SpringBoot3.4.3基于SpringWebFlux实现SSE功能(代码示例)》SpringBoot3.4.3结合SpringWebFlux实现SSE功能,为实时数据推送提供... 目录1. SSE 简介1.1 什么是 SSE?1.2 SSE 的优点1.3 适用场景2. Spring WebFlu

springboot security快速使用示例详解

《springbootsecurity快速使用示例详解》:本文主要介绍springbootsecurity快速使用示例,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝... 目录创www.chinasem.cn建spring boot项目生成脚手架配置依赖接口示例代码项目结构启用s

springboot简单集成Security配置的教程

《springboot简单集成Security配置的教程》:本文主要介绍springboot简单集成Security配置的教程,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,... 目录集成Security安全框架引入依赖编写配置类WebSecurityConfig(自定义资源权限规则

一文教你如何将maven项目转成web项目

《一文教你如何将maven项目转成web项目》在软件开发过程中,有时我们需要将一个普通的Maven项目转换为Web项目,以便能够部署到Web容器中运行,本文将详细介绍如何通过简单的步骤完成这一转换过程... 目录准备工作步骤一:修改​​pom.XML​​1.1 添加​​packaging​​标签1.2 添加

golang 日志log与logrus示例详解

《golang日志log与logrus示例详解》log是Go语言标准库中一个简单的日志库,本文给大家介绍golang日志log与logrus示例详解,感兴趣的朋友一起看看吧... 目录一、Go 标准库 log 详解1. 功能特点2. 常用函数3. 示例代码4. 优势和局限二、第三方库 logrus 详解1.