登录

  • 登录
  • 忘记密码?点击找回

注册

  • 获取手机验证码 60
  • 注册

找回密码

  • 获取手机验证码60
  • 找回
毕业论文网 > 毕业论文 > 计算机类 > 计算机科学与技术 > 正文

基于web的电子购物商城的设计与实现毕业论文

 2021-11-02 09:11  

摘 要

随着互联网信息时代的来临,生产力大大进步、社会飞速发展,各行各业都掀起了变革创新的浪潮,中国人民的生活方式正在进行着前所未有的改变,短视频、微博、直播等新鲜事物正不断融入我们的生活中。时代在进步,传统的购物模式已不再满足人民日益增长的物质文化需求,人们更加渴望足不出户就能购买到自己心仪的物品。在大学校园中,同学们也有购物、售卖的需求,因此设计出校园电子商城系统就颇为必要。

本文通过对国内知名的电商如京东、淘宝、苏宁等大型电商网站的仔细研究,确定了搭建电商系统需要使用的关键技术,并对本系统的关键业务流程、功能需求、非功能需求和可行性进行了分析,确认了项目的整体框架。同时本文还对电子购物商城的需求进行概要设计和详细设计。本系统拟采用MySql作为后台数据库实现数据的存储与增删改查,基于B/S的电子购物商城系统主要分为前台模块和后台模块两大部分,其中前台模块包括商品模块、购物车模块、订单模块、客户管理模块、用户评论模块;后台模块包括用户管理模块、客户管理模块、商品管理模块、订单管理模块、评论管理模块、销售统计模块。

本系统的主要特色有:

(1)使用阿里云OSS实现图片的上传与存储,不再将图片保存在本地,可以根据url在线访问图片。

(2)使用拦截器阻止未登录用户进行访问,若查询不到用户信息的Session则会自动跳转至登录界面。

(3)使用echarts生成图表,更好的帮助后台管理人员了解每天的销量变化情况,为商城管理提供数据支持。

关键词:电子商务;电子购物商城;B/S;MySql

Abstract

With the advent of the Internet information age, great progress in productivity, rapid development of society, all walks of life have set off a wave of change and innovation, the Chinese people's lifestyle is undergoing unprecedented changes, short video, micro blog, live broadcast and other new things are constantly integrated into our lives.With the progress of the times, the traditional shopping mode no longer meets the increasing material and cultural needs of the people, and people are more eager to buy the goods they like without leaving home.In the university campus, students also have the demand of shopping and selling, so it is necessary to design the campus e-mall system.

Based on a careful study of famous e-commerce websites in China, such as Jingdong, Taobao, Suning, etc., this paper determines the key technologies needed to build the e-commerce system, analyzes the key business processes, functional requirements, non functional requirements and feasibility of the system, and confirms the overall framework of the project.At the same time, this paper also carries on the outline design and the detailed design to the electronic shopping mall demand.This system plans to use MySQL as the backstage database to realize data storage, addition, deletion, modification and query. The e-shopping mall system based on B / S is mainly divided into two parts: the front end module and the backstage module. The front end module includes commodity module, shopping cart module, order module, customer management module and user comment module. The back end module includes user management module, customer management moduleCommodity management module, order management module, comment management module, sales statistics module.

The main features of this system are:

(1) Use Alibaba cloud OSS to upload and store pictures. Instead of saving the pictures locally, you can access the pictures online according to the URL.

(2) Use the interceptor to block the access of the user who is not logged in. If the session cannot query the user information, it will automatically jump to the login interface.

(3) Use echarts to generate charts to better help background managers understand the daily sales changes and provide data support for mall management.

Keywords: E-commerce; e-shopping mall; B / S; MySQL

目 录

第1章 绪论 1

1.1 研究背景与意义 1

1.2 国内外研究现状 1

1.3 研究内容 2

1.4 论文章节安排 3

第2章 系统分析 4

2.1 系统概述 4

2.2 业务流程分析 4

2.3 功能需求分析 5

2.4 非功能需求分析 6

2.5 可行性分析 6

2.6 本章小结 7

第3章 系统总体设计 8

3.1 系统结构设计 8

3.2 商城后台系统功能设计 8

3.2.1 后台用户管理模块 8

3.2.2 后台商品管理模块 8

3.2.3 后台客户管理模块 9

3.2.4 后台订单管理模块 9

3.2.5 后台评论管理模块 9

3.2.6 后台销售统计模块 9

3.3 商城前台系统功能设计 9

3.3.1 前台商品管理模块 9

3.3.2 前台购物车管理模块 9

3.3.3 前台订单管理模块 9

3.3.4 前台用户管理模块 10

3.4 本章小结 10

第4章 系统详细设计 11

4.1 商城后台系统详细设计 11

4.1.1 后台用户管理详细设计 11

4.1.2 后台商品管理详细设计 12

4.1.3 后台客户管理详细设计 14

4.1.4 后台订单管理详细设计 14

4.1.5 后台评价管理详细设计 15

4.1.6 后台销售统计详细设计 16

4.2 商城前台系统详细设计 17

4.2.1 前台商品管理详细设计 17

4.2.2 前台购物车管理详细设计 18

4.2.3 前台订单管理详细设计 19

4.2.4 前台用户管理详细设计 20

4.3 数据库设计 23

4.3.1 前台用户表 23

4.3.2 地址表 23

4.3.3 购物车表 24

4.3.4 评价表 24

4.3.5 订单表 25

4.3.6 订单子项表 25

4.3.7 商品分类表 26

4.3.8 商品表 26

4.3.9 用户表 27

4.4本章小结 27

第5章 关键技术与系统实现 28

5.1 图片上传功能实现 28

5.2 商品三级分类树形结构 28

5.3销售数据统计和分析技术实现 29

5.4买家、卖家交易实现 30

5.4.1 买家交易流程 30

5.4.2 卖家交易流程 31

5.5 本章小结 32

第6章 系统测试和运行结果 33

6.1 商品管理模块测试 33

6.2 用户购物流程测试 34

6.3 销售统计模块测试 35

6.4 商品管理模块运行结果 35

6.5 用户购物流程运行结果 37

6.6 销售统计模块运行结果 41

6.7 测试评价 42

6.8 本章小结 42

第7 章 总结与展望 43

7.1 研究总结 43

7.2 未来展望 43

参考文献 44

致 谢 45

第1章 绪论

1.1 研究背景与意义

随着互联网信息时代的来临,中国人民的生活方式正在发生巨大的变化,直播,短视频,电商等等的新事物逐渐走向千家万户。时代在进步,作为最为传统的商业自然也会迎来新的变化来适应新的市场需求,因此电商出现了。电子购物商城将购物与当今的互联网潮流结合起来,让千家万户享受互联网带来的便利与迅捷,使得人们可以在家里就可以购买世界各地的商品,不再受到地域的限制,拓宽了商家开店营销的渠道,增加了人们购买商品的方式,大大促进了国内外商业和物流等相关产业的发展,促进了社会的进步[1]

网上购物是一种能够让人足不出户就可以享受到的方便,任何一个人都可以在线订货,通过这个系统大家可以实现在网络上进行交易的行为,而且非常的安全,这样的电子商城将成为未来销售的一个主要渠道[2]。通过各种电商平台,企业的经营重点逐渐从实体店转变成虚拟店铺,拓宽了销售渠道,更方便的对用户群体进行宣传,有效的提高了企业的竞争力和效率。同时人们可以使用支付宝、微信、银行卡等方式在线付款。人们不再受限制于现金的携带和使用的麻烦[3]。网上购物将会成为新的时代潮流,给世界带来巨大的变化。

您需要先支付 80元 才能查看全部内容!立即支付

企业微信

Copyright © 2010-2022 毕业论文网 站点地图