当前位置:   article > 正文

免费分享一套微信小程序投票系统(Uni-App+SpringBoot+Vue3)【至尊版】,帅呆了~~_springboot3 vue3 微信公众号 小程序

springboot3 vue3 微信公众号 小程序

大家好,我是java1234_小锋老师,自己原创写了一个不错的微信小程序投票系统(Uni-App+SpringBoot+Vue3【至尊版】,免费分享下哈。

项目视频演示

【免费】微信小程序投票系统(uni-app+SpringBoot后端+Vue3管理端技术实现) Java毕业设计,非常好的源码_哔哩哔哩_bilibili【免费】微信小程序投票系统(uni-app+SpringBoot后端+Vue3管理端技术实现)  Java毕业设计项目来自互联网,免费开源分享,严禁商业。更多毕业设源码:http://www.java1234.com/a/bysj/javaweb/, 视频播放量 126、弹幕量 0、点赞数 3、投硬币枚数 0、收藏人数 1、转发人数 1, 视频作者 java1234官方, 作者简介 公众号:java1234 微信:java9266,相关视频:一个投票视频,我的毕业设计,【免费】微信小程序扫码点餐(订餐)系统(uni-app+SpringBoot后端+Vue管理端技术实现) Java毕业设计,非常好的源码,毕业设计,机械设计,sw代画,【滚动的天空I/官方活动】人气曲目投票2024宣传片:为你心爱的曲目投票~,【源码+论文】花6000买的计算机毕设,无私分享,毕业设计,系统项目,【奇奇怪怪的红白战】小川老师VS石原老师,毕业设计实物讲解记录一下,【免费】SpringBoot+Vue在线考试系统(优质版) Java毕业设计,垂钓星球Fishing Planet附加:微信小程序搜索“垂钓星球秘典”icon-default.png?t=N7T8https://www.bilibili.com/video/BV1aU411f7M4/

项目介绍

本研究并实现了基于微信小程序平台的投票系统,旨在应对传统投票方式在成本、便捷性及覆盖面方面的挑战。

通过对现有投票系统痛点的深入分析,提出利用微信小程序构建高效、易用且覆盖面广的新型投票解决方案。设计上,系统强调模块化与灵活性,涵盖投票创建、选项管理、用户交互、结果统计等功能模块,并集成安全防护机制,确保投票活动的公正与数据的安全。

技术实现方面,结合微信小程序的开发框架,前端注重用户界面的友好性和交互体验的优化,后端依托云服务实现高效的数据处理与存储,确保系统的高性能与可扩展性。通过实际案例部署与测试,验证了该系统在提升用户参与度、简化管理流程方面的有效性,展示了其在多元化投票应用场景中的广阔前景。

本研究不仅为微信小程序技术在投票领域的应用提供了具体指导,也为促进数字化互动方式的发展贡献了理论与实践参考。

系统展示

部分代码

  1. package com.java1234.controller;
  2. import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
  3. import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
  4. import com.java1234.entity.PageBean;
  5. import com.java1234.entity.R;
  6. import com.java1234.entity.SysUser;
  7. import com.java1234.entity.WxUserInfo;
  8. import com.java1234.service.WxUserInfoService;
  9. import com.java1234.util.StringUtil;
  10. import org.springframework.beans.factory.annotation.Autowired;
  11. import org.springframework.security.access.prepost.PreAuthorize;
  12. import org.springframework.transaction.annotation.Transactional;
  13. import org.springframework.web.bind.annotation.*;
  14. import java.util.HashMap;
  15. import java.util.List;
  16. import java.util.Map;
  17. /**
  18. * 微信用户Controller控制器
  19. * @author java1234_小锋 (公众号:java1234)
  20. * @site www.java1234.vip
  21. * @company 南通小锋网络科技有限公司
  22. */
  23. @RestController
  24. @RequestMapping("/business/wxUser")
  25. public class WxUserInfoController {
  26. @Autowired
  27. private WxUserInfoService wxUserInfoService;
  28. /**
  29. * 根据条件分页查询微信用户信息
  30. * @param pageBean
  31. * @return
  32. */
  33. @PostMapping("/list")
  34. @PreAuthorize("hasAuthority('business:wxUser:list')")
  35. public R list(@RequestBody PageBean pageBean){
  36. String query=pageBean.getQuery().trim();
  37. Page<WxUserInfo> pageResult = wxUserInfoService.page(new Page<>(pageBean.getPageNum(), pageBean.getPageSize()), new QueryWrapper<WxUserInfo>().like(StringUtil.isNotEmpty(query), "nick_name", query).or().like(StringUtil.isNotEmpty(query), "openid", query));
  38. List<WxUserInfo> wxUserInfoList = pageResult.getRecords();
  39. Map<String,Object> resultMap=new HashMap<>();
  40. resultMap.put("wxUserInfoList",wxUserInfoList);
  41. resultMap.put("total",pageResult.getTotal());
  42. return R.ok(resultMap);
  43. }
  44. /**
  45. * 更新status状态
  46. * @param id
  47. * @param status
  48. * @return
  49. */
  50. @GetMapping("/updateStatus/{id}/status/{status}")
  51. @PreAuthorize("hasAuthority('business:wxUser:edit')")
  52. @Transactional
  53. public R updateStatus(@PathVariable(value = "id")Integer id,@PathVariable(value = "status")String status){
  54. WxUserInfo wxUserInfo= wxUserInfoService.getById(id);
  55. wxUserInfo.setStatus(status);
  56. wxUserInfoService.saveOrUpdate(wxUserInfo);
  57. return R.ok();
  58. }
  59. }
  1. <template>
  2. <div class="login">
  3. <el-form ref="loginRef" :model="loginForm" :rules="loginRules" class="login-form">
  4. <h3 class="title">Java1234 Vue3 投票系统后台管理</h3>
  5. <el-form-item prop="username">
  6. <el-input
  7. v-model="loginForm.username"
  8. type="text"
  9. size="large"
  10. auto-complete="off"
  11. placeholder="账号"
  12. >
  13. <template #prefix><svg-icon icon="user" /></template>
  14. </el-input>
  15. </el-form-item>
  16. <el-form-item prop="password">
  17. <el-input
  18. v-model="loginForm.password"
  19. type="password"
  20. size="large"
  21. auto-complete="off"
  22. placeholder="密码"
  23. @keyup.enter="handleLogin"
  24. >
  25. <template #prefix><svg-icon icon="password" /></template>
  26. </el-input>
  27. </el-form-item>
  28. <el-form-item prop="code">
  29. <el-input
  30. v-model="loginForm.code"
  31. size="large"
  32. auto-complete="off"
  33. placeholder="验证码"
  34. style="width: 63%"
  35. >
  36. <template #prefix><svg-icon icon="validCode" /></template>
  37. </el-input>
  38. <div class="login-code">
  39. <img :src="codeUrl" @click="getCode" class="login-code-img"/>
  40. </div>
  41. </el-form-item>
  42. <el-checkbox v-model="loginForm.rememberMe" style="margin:0px 0px 25px 0px;">记住密码</el-checkbox>
  43. <el-form-item style="width:100%;">
  44. <el-button
  45. size="large"
  46. type="primary"
  47. style="width:100%;"
  48. @click.prevent="handleLogin"
  49. >
  50. <span>登 录</span>
  51. </el-button>
  52. </el-form-item>
  53. </el-form>
  54. <!-- 底部 -->
  55. <div class="el-login-footer">
  56. <span>Copyright © 2013-2022 <a href="http://www.java1234.vip" target="_blank">java1234.vip</a> 版权所有.</span>
  57. </div>
  58. </div>
  59. </template>
  60. <script setup>
  61. import {ref} from 'vue'
  62. import requestUtil from '@/util/request'
  63. import store from '@/store'
  64. import qs from "qs"
  65. import {ElMessage} from "element-plus"
  66. import router from "@/router"
  67. import Cookies from "js-cookie";
  68. import { encrypt, decrypt } from "@/util/jsencrypt";
  69. const loginRef=ref(null)
  70. const codeUrl=ref("")
  71. const loginForm=ref({
  72. username:"",
  73. password:"",
  74. rememberMe:false,
  75. code:"",
  76. uuid:""
  77. })
  78. const loginRules = {
  79. username: [{ required: true, trigger: "blur", message: "请输入您的账号" }],
  80. password: [{ required: true, trigger: "blur", message: "请输入您的密码" }],
  81. code: [{ required: true, trigger: "blur", message: "请输入验证码" }]
  82. };
  83. const handleLogin=()=>{
  84. loginRef.value.validate(async(valid)=>{
  85. if(valid){
  86. // 勾选了需要记住密码设置在 cookie 中设置记住用户名和密码
  87. if (loginForm.value.rememberMe) {
  88. Cookies.set("username", loginForm.value.username, { expires: 30 });
  89. Cookies.set("password", encrypt(loginForm.value.password), { expires: 30 });
  90. Cookies.set("rememberMe", loginForm.value.rememberMe, { expires: 30 });
  91. } else {
  92. // 否则移除
  93. Cookies.remove("username");
  94. Cookies.remove("password");
  95. Cookies.remove("rememberMe");
  96. }
  97. let result=await requestUtil.post("login?"+qs.stringify(loginForm.value))
  98. let data=result.data;
  99. if(data.code==200){
  100. const token=data.authorization
  101. const menuList=data.menuList;
  102. const perms=data.perms;
  103. const currentUser=data.currentUser;
  104. console.log("menuList="+menuList);
  105. store.commit('SET_MENULIST',menuList);
  106. store.commit('SET_TOKEN',token);
  107. store.commit('SET_USERINFO',currentUser);
  108. store.commit('SET_PERMS',perms);
  109. router.replace("/")
  110. }else{
  111. ElMessage.error(data.msg)
  112. }
  113. }else{
  114. console.log("验证失败")
  115. }
  116. })
  117. }
  118. function getCookie() {
  119. const username = Cookies.get("username");
  120. const password = Cookies.get("password");
  121. const rememberMe = Cookies.get("rememberMe");
  122. loginForm.value = {
  123. username: username === undefined ? loginForm.value.username : username,
  124. password: password === undefined ? loginForm.value.password : decrypt(password),
  125. rememberMe: rememberMe === undefined ? false : Boolean(rememberMe)
  126. };
  127. }
  128. const getCode=async()=>{
  129. let result=await requestUtil.get("captcha");
  130. console.log(result)
  131. loginForm.value.uuid=result.data.uuid;
  132. codeUrl.value=result.data.base64Img;
  133. }
  134. getCode();
  135. getCookie();
  136. </script>
  137. <style lang="scss" scoped>
  138. a{
  139. color:white
  140. }
  141. .login {
  142. display: flex;
  143. justify-content: center;
  144. align-items: center;
  145. height: 100%;
  146. background-image: url("../assets/images/login-background.jpg");
  147. background-size: cover;
  148. }
  149. .title {
  150. margin: 0px auto 30px auto;
  151. text-align: center;
  152. color: #707070;
  153. }
  154. .login-form {
  155. border-radius: 6px;
  156. background: #ffffff;
  157. width: 400px;
  158. padding: 25px 25px 5px 25px;
  159. .el-input {
  160. height: 40px;
  161. input {
  162. display: inline-block;
  163. height: 40px;
  164. }
  165. }
  166. .input-icon {
  167. height: 39px;
  168. width: 14px;
  169. margin-left: 0px;
  170. }
  171. }
  172. .login-tip {
  173. font-size: 13px;
  174. text-align: center;
  175. color: #bfbfbf;
  176. }
  177. .login-code {
  178. width: 33%;
  179. height: 40px;
  180. float: right;
  181. img {
  182. cursor: pointer;
  183. vertical-align: middle;
  184. }
  185. }
  186. .el-login-footer {
  187. height: 40px;
  188. line-height: 40px;
  189. position: fixed;
  190. bottom: 0;
  191. width: 100%;
  192. text-align: center;
  193. color: #fff;
  194. font-family: Arial;
  195. font-size: 12px;
  196. letter-spacing: 1px;
  197. }
  198. .login-code-img {
  199. height: 40px;
  200. padding-left: 12px;
  201. }
  202. </style>

源码下载

CSDN 1积分下载:https://download.csdn.net/download/caofeng891102/89322550

或者免费领取加小锋老师wx:java9266

热门推荐

免费分享一套微信小程序商城系统(电商系统)(SpringBoot+Vue3)【至尊版】,帅呆了~~-CSDN博客

免费分享一套微信小程序扫码点餐(订餐)系统(uni-app+SpringBoot后端+Vue管理端技术实现) ,帅呆了~~_uniapp微信点餐-CSDN博客

免费分享一套SpringBoot企业人事管理系统(员工管理,工资管理,档案管理,招聘管理),帅呆了~~-CSDN博客

免费分享一套SpringBoot+Vue在线考试系统(优质版),帅呆了~~-CSDN博客

免费分享一套SpringBoot+Vue药店(药房)管理系统,帅呆了~~_基于sprintboot+vue的药店管理系统-CSDN博客

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/701218
推荐阅读
相关标签
  

闽ICP备14008679号