设计题目:餐厅点菜管理系统的设计与实现
I
摘 要
网络技术和计算机技术发展至今,已经拥有了深厚的理论基础,并在现实中
进行了充分运用,尤其是基于计算机运行的软件更是受到各界的关注。加上现在
人们已经步入信息时代,所以对于信息的宣传和管理就很关键。因此餐厅点菜信
息的管理计算机化,系统化是必要的。设计开发餐厅点菜管理系统不仅会节约人
力和管理成本,还会安全保存庞大的数据量,对于餐厅点菜信息的维护和检索也
不需要花费很多时间,非常的便利。
餐厅点菜管理系统是在 MySQL 中建立数据表保存信息,运用 Vue 框架和
Java 语言编写。并按照软件设计开发流程进行设计实现。系统具备友好性且功能
完善。其管理员管理食物库存,菜品信息,管理预订和未预定餐桌,管理店内订
单流水以及外卖订单。用户查看餐厅资讯,收藏菜品,下单购买菜品,查看外卖
订单,用户也可以在餐厅内预订餐桌,对菜品进行点餐,查看店内订单记录。
餐厅点菜管理系统在让餐厅点菜信息规范化的同时,也能及时通过数据输入
的有效性规则检测出错误数据,让数据的录入达到准确性的目的,进而提升餐厅
点菜管理系统提供的数据的可靠性,让系统数据的错误率降至最低。
关键词:餐厅点菜管理系统;MySQL;Vue 框架
II
Abstract
Network technology and computer technology have developed so far, they
already have a solid theoretical foundation, and they have been fully used in reality,
especially the software based on computer operation has attracted the attention of all
walks of life. In addition, now that people have entered the information age, the
promotion and management of information is very important. Therefore, it is
necessary to computerize and systemize the management of restaurant ordering
information. Designing and developing a restaurant ordering management system will
not only save manpower and management costs, but also securely store a huge
amount of data. It does not take a lot of time to maintain and retrieve restaurant
ordering information, which is very convenient.
The restaurant ordering management system is to establish a data table in
MySQL to save the information, using Vue framework and Java language to write.
And in accordance with the software design and development process for design and
implementation. The system is friendly and fully functional. Its administrator
manages food inventory, dish information, manages reserved and unreserved tables,
manages in-store order flow and takeaway orders. Users view restaurant information,
collect dishes, place orders to purchase dishes, and view takeaway orders. Users can
also reserve a table in the restaurant, order dishes, and view in-store order records.
While standardizing restaurant ordering information, the restaurant ordering
management system can also detect incorrect data in a timely manner through the
validity rules of data input, so that data entry can achieve the purpose of accuracy,
thereby improving the data provided by the restaurant ordering management system
The reliability of the system minimizes the error rate of system data.
Key Words:Restaurant order management system; MySQL; Vue framework
III
目 录
1 绪论 ...............................................1
1.1 选题背景 .........................................................................................................1
1.2 选题意义 .........................................................................................................1
1.3 研究内容 .........................................................................................................2
2 系统开发技术........................................3
2.1 JAVA 语言 .........................................................................................................3
2.2 SSM 框架 .........................................................................................................3
2.3 MYSQL 数据库 ...............................................................................................4
2.4 VUE 框架 ..........................................................................................................4
3 系统分析............................................5
3.1 可行性研究 ......................................................................................................5
3.1.1 经济可行性 ...........................................................................................5
3.1.2 时间可行性 ...........................................................................................5
3.1.3 操作可行性 ...........................................................................................5
3.2 系统性能分析 ..................................................................................................6
3.2.1 系统易用性 ...........................................................................................6
3.2.2 系统健壮性 ...........................................................................................6
3.2.3 系统安全性 ...........................................................................................6
3.3 系统流程分析 .................................................................................................6
3.4 系统功能分析 ..................................................................................................9
4 系统设计...........................................12
4.1 系统目标 ........................................................................................................12
4.2 功能结构设计 ................................................................................................13
4.3 数据库设计 ....................................................................................................14
4.3.1 数据库 E-R 图.....................................................................................14
IV
4.3.2 数据库表结构 ....................................................................................17
5 系统实现...........................................22
5.1 管理员功能实现 ...........................................................................................22
5.1.1 食物库存管理 ....................................................................................22
5.1.2 菜品展示管理 ....................................................................................22
5.1.3 未预定餐桌管理 ................................................................................23
5.1.4 店内流水管理 ....................................................................................23
5.1.5 已支付订单 ........................................................................................24
5.2 用户功能实现 ...............................................................................................24
5.2.1 菜品信息 ............................................................................................24
5.2.2 购物车 ................................................................................................25
5.2.3 提交订单 ............................................................................................25
5.2.4 已支付订单 ........................................................................................26
5.2.5 联系客服 ............................................................................................27
5.2.6 菜品点餐 ............................................................................................27
5.2.7 未预定餐桌 ........................................................................................28
5.2.8 已预订餐桌 ........................................................................................28
5.2.9 订单记录 ............................................................................................29
6 系统测试 ...........................................30
6.1 系统测试的类型 ...........................................................................................30
6.2 功能测试 .......................................................................................................31
6.3 可用性测试 ...................................................................................................31
6.4 测试结果分析 ...............................................................................................31
结 论...............................................32
参考文献.............................................34
致 谢...............................................35