diff --git a/README.md b/README.md index 6e5a511..3651ed9 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,3 @@ # whateat -软件项目管理:吃啥点餐系统 +软件项目管理:吃啥点餐系统v1.00 diff --git a/whateat b/whateat new file mode 160000 index 0000000..21c4630 --- /dev/null +++ b/whateat @@ -0,0 +1 @@ +Subproject commit 21c4630736c8a62692534466882163b4cf7df99c diff --git a/其它资源/sprint1 燃尽图.png b/其它资源/sprint1 燃尽图.png new file mode 100644 index 0000000..855001b Binary files /dev/null and b/其它资源/sprint1 燃尽图.png differ diff --git a/其它资源/sprint1 燃起图.png b/其它资源/sprint1 燃起图.png new file mode 100644 index 0000000..99bba7e Binary files /dev/null and b/其它资源/sprint1 燃起图.png differ diff --git a/其它资源/sprint2 燃尽图.png b/其它资源/sprint2 燃尽图.png new file mode 100644 index 0000000..a32adb8 Binary files /dev/null and b/其它资源/sprint2 燃尽图.png differ diff --git a/其它资源/sprint2 燃起图.png b/其它资源/sprint2 燃起图.png new file mode 100644 index 0000000..3dd7239 Binary files /dev/null and b/其它资源/sprint2 燃起图.png differ diff --git a/其它资源/sprint3 燃尽图.png b/其它资源/sprint3 燃尽图.png new file mode 100644 index 0000000..95e056f Binary files /dev/null and b/其它资源/sprint3 燃尽图.png differ diff --git a/其它资源/sprint3 燃起图.png b/其它资源/sprint3 燃起图.png new file mode 100644 index 0000000..2d75afe Binary files /dev/null and b/其它资源/sprint3 燃起图.png differ diff --git a/其它资源/sprint4 燃尽图.png b/其它资源/sprint4 燃尽图.png new file mode 100644 index 0000000..8d981b3 Binary files /dev/null and b/其它资源/sprint4 燃尽图.png differ diff --git a/其它资源/sprint4 燃起图.png b/其它资源/sprint4 燃起图.png new file mode 100644 index 0000000..1437f31 Binary files /dev/null and b/其它资源/sprint4 燃起图.png differ diff --git a/其它资源/燃尽图.jpg b/其它资源/燃尽图.jpg deleted file mode 100644 index 2849dce..0000000 Binary files a/其它资源/燃尽图.jpg and /dev/null differ diff --git a/其它资源/燃起图.jpg b/其它资源/燃起图.jpg deleted file mode 100644 index baa2712..0000000 Binary files a/其它资源/燃起图.jpg and /dev/null differ diff --git a/数据库文件/eatwhat最终版.sql b/数据库文件/eatwhat最终版.sql new file mode 100644 index 0000000..a09d02b --- /dev/null +++ b/数据库文件/eatwhat最终版.sql @@ -0,0 +1,80 @@ +/* +Navicat MySQL Data Transfer + +Source Server : eatwhat +Source Server Version : 50562 +Source Host : 121.37.102.50:3306 +Source Database : mydb + +Target Server Type : MYSQL +Target Server Version : 50562 +File Encoding : 65001 + +Date: 2022-06-18 22:38:02 +*/ + +SET FOREIGN_KEY_CHECKS=0; + +-- ---------------------------- +-- Table structure for `ingre_table` +-- ---------------------------- +DROP TABLE IF EXISTS `ingre_table`; +CREATE TABLE `ingre_table` ( + `ingreName` varchar(50) NOT NULL, + `ingreId` varchar(11) NOT NULL, + `ingreAdd` varchar(50) NOT NULL, + `ingreAttr` varchar(50) DEFAULT NULL, + `ingrePut` varchar(255) DEFAULT NULL, + `ingrePrice` double(10,0) NOT NULL, + PRIMARY KEY (`ingreId`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; + +-- ---------------------------- +-- Records of ingre_table +-- ---------------------------- + +-- ---------------------------- +-- Table structure for `menu_table` +-- ---------------------------- +DROP TABLE IF EXISTS `menu_table`; +CREATE TABLE `menu_table` ( + `menuName` varchar(50) NOT NULL, + `menuId` varchar(11) NOT NULL, + `menuEle` varchar(100) NOT NULL, + `menuTaste` varchar(50) NOT NULL, + `menuCuis` varchar(20) DEFAULT NULL, + `menuBrief` varchar(255) DEFAULT 'No profile', + `menuLevel` int(11) NOT NULL, + `menuPut` varchar(255) DEFAULT NULL, + `menuPrice` double(7,0) NOT NULL DEFAULT '0', + PRIMARY KEY (`menuId`) USING BTREE +) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC; + +-- ---------------------------- +-- Records of menu_table +-- ---------------------------- +INSERT INTO `menu_table` VALUES ('蛋炒饭', '0d1ea9e-3', '米饭|鸡蛋|火腿肠', '咸', '蛋炒饭菜系', '我就是蛋炒饭哦', '5', 'http://localhost:3006/static/imgs_menu/2307d3fc3d117fc1f2436e900.png', '20'); +INSERT INTO `menu_table` VALUES ('西红柿炒鸡蛋最终版', '2', '鸡蛋|西红柿', '超级香', '不知道', '香!!!', '5', null, '9'); + +-- ---------------------------- +-- Table structure for `user_table` +-- ---------------------------- +DROP TABLE IF EXISTS `user_table`; +CREATE TABLE `user_table` ( + `userId` varchar(255) NOT NULL, + `userPwd` varchar(13) NOT NULL, + `userName` varchar(10) DEFAULT NULL, + `userNumb` char(11) NOT NULL, + `userLike` varchar(40) DEFAULT NULL, + `userAdd` varchar(50) DEFAULT NULL, + `userGend` varchar(2) DEFAULT NULL, + PRIMARY KEY (`userId`), + UNIQUE KEY `userNumb` (`userNumb`) USING BTREE +) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC; + +-- ---------------------------- +-- Records of user_table +-- ---------------------------- +INSERT INTO `user_table` VALUES ('15899996666', '123456', '李宝', '15899996666', '甜食', '山西省/长治市/长治县', '男'); +INSERT INTO `user_table` VALUES ('1d57905f-6cfc-4b49-8c04-692ee6829a3b', '123456', 'Shuaib', '15024930879', '甜食', '内蒙古自治区/呼和浩特市/玉泉区', '男'); +INSERT INTO `user_table` VALUES ('b5f3fdde-7e48-44e7-8443-e7452442df39', '2631667689zyx', '李大宝', '15024930878', '你猜', '山西省/阳泉市/郊区', '男'); diff --git a/程序代码/李宝好帅.txt b/程序代码/李宝好帅.txt deleted file mode 100644 index e69de29..0000000 diff --git a/程序代码/管理员系统/eatwhat-admin b/程序代码/管理员系统/eatwhat-admin new file mode 160000 index 0000000..0502f20 --- /dev/null +++ b/程序代码/管理员系统/eatwhat-admin @@ -0,0 +1 @@ +Subproject commit 0502f20f5ada9e92dfc186bababb8170339ef041 diff --git a/程序代码/管理员系统/使用手册.md b/程序代码/管理员系统/使用手册.md new file mode 100644 index 0000000..27c5a46 --- /dev/null +++ b/程序代码/管理员系统/使用手册.md @@ -0,0 +1,8 @@ +1. 装有niode.js的环境。 +2. 装有nmp或yarn工具。 +3. 进入eatwhat-admin运行命令nmp intsall。 +4. 运行命令 nmp run serve或 yarn serve。 +5. 进入吃啥-管理员页面进行增删改查等操作。 +6. 系统未对图片进行压缩优化处理,加载比较慢。 +7. 本系统尚处于开发阶段,请谨慎使用,系统目前比较脆弱。 +8. 如有问题联系QQ:2631667689 \ No newline at end of file diff --git a/过程性资料/product blacklog.xlsx b/过程性资料/product blacklog.xlsx new file mode 100644 index 0000000..3398326 Binary files /dev/null and b/过程性资料/product blacklog.xlsx differ diff --git a/过程性资料/sprint backlog.xlsx b/过程性资料/sprint backlog.xlsx new file mode 100644 index 0000000..c438404 Binary files /dev/null and b/过程性资料/sprint backlog.xlsx differ diff --git a/过程性资料/~$项目管理-吃啥-任务分解.docx b/过程性资料/~$项目管理-吃啥-任务分解.docx new file mode 100644 index 0000000..844cef7 Binary files /dev/null and b/过程性资料/~$项目管理-吃啥-任务分解.docx differ diff --git a/过程性资料/喜好标签.xlsx b/过程性资料/喜好标签.xlsx new file mode 100644 index 0000000..ca37b4e Binary files /dev/null and b/过程性资料/喜好标签.xlsx differ diff --git a/过程性资料/所有标签.docx b/过程性资料/所有标签.docx new file mode 100644 index 0000000..628a50b Binary files /dev/null and b/过程性资料/所有标签.docx differ diff --git a/过程性资料/风险清单1.0.xlsx b/过程性资料/风险清单1.0.xlsx new file mode 100644 index 0000000..d06bf3a Binary files /dev/null and b/过程性资料/风险清单1.0.xlsx differ