赞
踩
文末联系获取源码
开发语言:Java
框架:ssm
JDK版本:JDK1.8
服务器:tomcat7
数据库:mysql 5.7/8.0
数据库工具:Navicat11
开发软件:eclipse/myeclipse/idea
Maven包:Maven3.3.9
浏览器:谷歌浏览器
小程序框架:uniapp
小程序开发软件:HBuilder X
小程序运行软件:微信开发者
现代经济快节奏发展以及不断完善升级的信息化技术,让传统数据信息的管理升级为软件存储,归纳,集中处理数据信息的管理方式。本校园约拍微信小程序就是在这样的大环境下诞生,其可以帮助管理者在短时间内处理完毕庞大的数据信息,使用这种软件工具可以帮助管理人员提高事务处理效率,达到事半功倍的效果。此校园约拍微信小程序利用当下成熟完善的SSM框架,使用跨平台的可开发大型商业网站的Java语言,以及最受欢迎的RDBMS应用软件之一的MySQL 数据库进行程序开发。校园约拍微信小程序管理员可以管理商家和用户信息,可以管理商品类型信息,查看我的订单,我的照片,评价反馈灯信息。商家和用户都可以注册登录,商家主要发布商品信息,对商品信息上下架,用户主要对商家发布的信息预约,经过商家审核后就会生成订单,可以对商家发布的照片进行评价。校园约拍微信小程序的开发根据操作人员需要设计的界面简洁美观,在功能模块布局上跟同类型网站保持一致,程序在实现基本要求功能时,也为数据信息面临的安全间题提供了一些实用的解决方案。可以说该程序在帮助管理者高效率地处理工作事务的同时,也实现了数据信息的整体化,规范化与自动化。
在分析并得出使用者对程序的功能要求时,就可以进行程序设计了。如图展示的就是管理员功能结构图。
微信小程序输入正确的账号密码后就会默认进入首页显示界面。首页主要有轮播图,搜索框,以及下面的导航为主要组成部分。
如图显示的就是用户预约页面,用户登录后可以选择商品进行预约操作。
如图显示的就是商品信息管理页面,商家可以对商品信息进行添加,删除,修改,查询操作。
我的里面主要是可以进行退出,点击小齿轮就可以选择退出当前账户
如图显示的就是用户管理页面,此页面提供给管理员的功能有:对用户信息进行查询,添加,删除以及批量删除操作。
如图显示的就是商家管理页面,管理员可以对商家信息进行添加,修改,删除,查询操作。
如图显示的就是商品类型管理页面,管理员可以对商品类型信息进行添加,修改,删除,查询操作。
如图显示的就是摄影资讯管理页面,管理员可以对摄影资讯进行添加修改删除查询操作。
- form.on('submit(login)', function(data) {
- data = data.field;
- if (vue.roles.length!=1) {
- if (!data.role) {
- layer.msg('请选择登录用户类型', {
- time: 2000,
- icon: 5
- });
- return false;
- }
- } else {
- data.role = vue.roles[0].tableName;
- }
- http.request(data.role + '/login', 'get', data, function(res) {
- layer.msg('登录成功', {
- time: 2000,
- icon: 6
- });
- // 登录凭证
- localStorage.setItem('Token', res.token);
- var roleName = "";
- if(typeof(jquery('#role:checked').attr('title')) == "undefined") {
- roleName = vue.roles[0].roleName;
- } else {
- roleName = jquery('#role:checked').attr('title');
- }
- localStorage.setItem('role', roleName);
- // 当前登录用户角色
- localStorage.setItem('userTable', data.role);
- localStorage.setItem('sessionTable', data.role);
- // 用户名称
- localStorage.setItem('adminName', data.username);
- http.request(data.role + '/session', 'get', {}, function(res) {
- // 用户id
- localStorage.setItem('userid', res.data.id);
- if(res.data.vip) {
- localStorage.setItem('vip', res.data.vip);
- }
- // 路径访问设置
- window.location.href = '../../index.html';
- })
-
- });
- return false
- });
-
- });
-
- /**
- * 跳转登录
- * @param {Object} tablename
- */
- function registerClick(tablename) {
- window.location.href = '../' + tablename + '/register.html?tablename=' + tablename;
- }
- */
- @IgnoreAuth
- @RequestMapping("/register")
- public R register(@RequestBody YonghuEntity yonghu){
- //ValidatorUtils.validateEntity(yonghu);
- YonghuEntity user = yonghuService.selectOne(new EntityWrapper<YonghuEntity>().eq("yonghuming", yonghu.getYonghuming()));
- if(user!=null) {
- return R.error("注册用户已存在");
- }
- Long uId = new Date().getTime();
- yonghu.setId(uId);
- yonghuService.insert(yonghu);
- return R.ok();
- }
- methods: {
- jump(url) {
- if (this.queryIndex == 0) {
- localStorage.setItem('indexQueryCondition', document.getElementById("dianyingxinxidianyingmingcheng").value);
- }
- jump(url)
- },
- queryChange(event) {
- this.queryIndex = event.target.value;
- if (this.queryIndex == 0) {
- this.dianyingxinxidianyingmingcheng = this.queryList[event.target.value].queryName;
- }
- }
- }
- });
-
- layui.use(['layer', 'form', 'element', 'carousel', 'http', 'jquery'], function() {
- var layer = layui.layer;
- var element = layui.element;
- var form = layui.form;
- var carousel = layui.carousel;
- var http = layui.http;
- var jquery = layui.jquery;
- vue.baseurl=http.baseurl;
- // 获取轮播图 数据
- http.request('config/list', 'get', {
- page: 1,
- limit: 5
- }, function(res) {
- if (res.data.list.length > 0) {
- let swiperList = [];
- res.data.list.forEach(element => {
- if (element.value != null) {
- swiperList.push({
- img: http.baseurl + element.value
- });
- }
- });
-
- vue.swiperList = swiperList;
-
- vue.$nextTick(() => {
- carousel.render({
- elem: '#test1',
- width: '89.6%',
- height: '500px',
- arrow: 'hover',
- anim: 'default',
- autoplay: 'true',
- interval: '3000',
- indicator: 'inside'
- });
-
- })
-
- // vue.$nextTick(()=>{
- // window.xznSlide();
- // });
- }
- });
-
-
- http.request('news/list', 'get', {
- page: 1,
- order: 'desc'
- }, function(res) {
- var newsList = res.data.list;
- for(var i = 0; i<newsList.length; i++) {
- let d = newsList[i].addtime.split(' ')
- d = d[0].split('-')
- newsList[i].year = d[0]
- newsList[i].month = d[1] + '-' + d[2]
- }
-
- vue.newsList = newsList;
- if (newsList.length > 0 && newsList.length <= 2) {
- vue.leftNewsList = res.data.list
- } else {
- var leftNewsList = []
- for (let i = 0; i <= 2; i++) {
- leftNewsList.push(newsList[i]);
- }
- vue.leftNewsList = leftNewsList
- }
- if (newsList.length > 2 && newsList.length <= 8) {
- var rightNewsList = []
- for (let i = 3; i <= newsList.length; i++) {
- rightNewsList.push(newsList[i]);
- }
- vue.rightNewsList = rightNewsList
- }
-
- let flag = 10;
- let options = {"navigation":{"nextEl":".swiper-button-next","prevEl":".swiper-button-prev"},"slidesPerView":5,"loop":true,"spaceBetween":20,"autoplay":{"delay":3000,"disableOnInteraction":false}}
- options.pagination = {el:'null'}
- if(flag == 3) {
- vue.$nextTick(() => {
- new Swiper('#newsnews', options)
- })
- }
-
- if(flag == 6) {
- let sixSwiper = {
- loop: true,
- speed: 2500,
- slidesPerView: 3,
- spaceBetween: 10,
- centeredSlides: true,
- watchSlidesProgress: true,
- autoplay: {
- delay: 0,
- stopOnLastSlide: false,
- disableOnInteraction: false
- }
- }
-
- vue.$nextTick(() => {
- new Swiper('#new-list-6', sixSwiper)
- })
- }
- });
-
- // 获取推荐信息
- var autoSortUrl = "dianyingxinxi/autoSort";
- if(localStorage.getItem('userid')!=null) {
- autoSortUrl = "dianyingxinxi/autoSort2";
- }
- http.request(autoSortUrl, 'get', {
- page: 1,
- limit: 3 * 1
- }, function(res) {
- vue.dianyingxinxiRecommend = res.data.list
- let flag = 1;
- let options = {"navigation":{"nextEl":".swiper-button-next","prevEl":".swiper-button-prev"},"slidesPerView":5,"loop":true,"spaceBetween":20,"autoplay":{"delay":3000,"disableOnInteraction":false}}
- options.pagination = {el:'null'}
- if(flag == 3) {
- vue.$nextTick(() => {
- new Swiper('#recommenddianyingxinxi', options)
- })
- }
-
-
- if(flag == 5) {
- vue.$nextTick(() => {
- var swiper = new Swiper('#recommend-five-swiperdianyingxinxi', {
- loop: true,
- speed: 500,
- slidesPerView: 5,
- spaceBetween: 10,
- autoplay: {"delay":3000,"disableOnInteraction":false},
- centeredSlides: true,
- watchSlidesProgress: true,
- on: {
- setTranslate: function() {
- slides = this.slides
- for (i = 0; i < slides.length; i++) {
- slide = slides.eq(i)
- progress = slides[i].progress
- // slide.html(progress.toFixed(2)); //看清楚progress是怎么变化的
- slide.css({
- 'opacity': '',
- 'background': ''
- });
- slide.transform(''); //清除样式
-
- slide.transform('scale(' + (1.5 - Math.abs(progress) / 4) + ')');
- }
- },
- setTransition: function(transition) {
- for (var i = 0; i < this.slides.length; i++) {
- var slide = this.slides.eq(i)
- slide.transition(transition);
- }
- },
- },
- navigation: {"nextEl":".swiper-button-next","prevEl":".swiper-button-prev"},
- pagination: {"el":".swiper-pagination","clickable":true},
- });
- })
- }
- });
-
- });
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。