├── sdeam ├── README.md ├── config │ ├── prod.env.js │ ├── dev.env.js │ └── index.js ├── build │ ├── logo.png │ ├── vue-loader.conf.js │ ├── build.js │ ├── check-versions.js │ ├── webpack.base.conf.js │ ├── utils.js │ ├── webpack.dev.conf.js │ └── webpack.prod.conf.js ├── src │ ├── assets │ │ ├── add.png │ │ ├── gtc.png │ │ ├── tga.png │ │ ├── logo.png │ │ ├── QRcode.png │ │ ├── laisha.png │ │ ├── yuanshen.png │ │ └── cyberpunk.png │ ├── components │ │ ├── Setting.Vue │ │ ├── About.vue │ │ ├── WishListDetail.vue │ │ ├── adminLogin.vue │ │ ├── Store.Vue │ │ ├── Library.vue │ │ ├── WishList.vue │ │ ├── Login.vue │ │ ├── Register.vue │ │ ├── UploadGame.vue │ │ ├── User.vue │ │ └── GameDetail.vue │ ├── main.js │ ├── router │ │ └── index.js │ └── App.vue ├── index.html └── package.json ├── Project Document.docx ├── Project Document.pdf ├── code_back-end ├── __pycache__ │ ├── app.cpython-37.pyc │ ├── app.cpython-38.pyc │ ├── Main.cpython-38.pyc │ ├── Mysql.cpython-37.pyc │ ├── Mysql.cpython-38.pyc │ ├── Commend.cpython-38.pyc │ ├── Common.cpython-38.pyc │ └── Trigger.cpython-38.pyc ├── Class │ ├── __pycache__ │ │ ├── Buy.cpython-37.pyc │ │ ├── Buy.cpython-38.pyc │ │ ├── Game.cpython-37.pyc │ │ ├── Game.cpython-38.pyc │ │ ├── User.cpython-37.pyc │ │ ├── User.cpython-38.pyc │ │ ├── Comment.cpython-37.pyc │ │ ├── Comment.cpython-38.pyc │ │ ├── Father.cpython-37.pyc │ │ ├── Father.cpython-38.pyc │ │ ├── Developer.cpython-37.pyc │ │ ├── Developer.cpython-38.pyc │ │ ├── Favorite.cpython-37.pyc │ │ ├── Favorite.cpython-38.pyc │ │ ├── User2Game.cpython-37.pyc │ │ ├── User2Game.cpython-38.pyc │ │ └── Favorite2Game.cpython-38.pyc │ ├── Favorite.py │ ├── User2Game.py │ ├── Father.py │ ├── Favorite2Game.py │ ├── Comment.py │ ├── Developer.py │ ├── Buy.py │ ├── User.py │ └── Game.py ├── Main.py ├── Mysql.py ├── Common.py ├── Commend.py ├── 表.md ├── Trigger.py ├── 接口.md └── app.py └── README.md /sdeam/README.md: -------------------------------------------------------------------------------- 1 | 前端 2 | -------------------------------------------------------------------------------- /sdeam/config/prod.env.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | module.exports = { 3 | NODE_ENV: '"production"' 4 | } 5 | -------------------------------------------------------------------------------- /Project Document.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfriede/BUAA-Database-2018/HEAD/Project Document.docx -------------------------------------------------------------------------------- /Project Document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfriede/BUAA-Database-2018/HEAD/Project Document.pdf -------------------------------------------------------------------------------- /sdeam/build/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfriede/BUAA-Database-2018/HEAD/sdeam/build/logo.png -------------------------------------------------------------------------------- /sdeam/src/assets/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfriede/BUAA-Database-2018/HEAD/sdeam/src/assets/add.png -------------------------------------------------------------------------------- /sdeam/src/assets/gtc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfriede/BUAA-Database-2018/HEAD/sdeam/src/assets/gtc.png -------------------------------------------------------------------------------- /sdeam/src/assets/tga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfriede/BUAA-Database-2018/HEAD/sdeam/src/assets/tga.png -------------------------------------------------------------------------------- /sdeam/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfriede/BUAA-Database-2018/HEAD/sdeam/src/assets/logo.png -------------------------------------------------------------------------------- /sdeam/src/assets/QRcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfriede/BUAA-Database-2018/HEAD/sdeam/src/assets/QRcode.png -------------------------------------------------------------------------------- /sdeam/src/assets/laisha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfriede/BUAA-Database-2018/HEAD/sdeam/src/assets/laisha.png -------------------------------------------------------------------------------- /sdeam/src/assets/yuanshen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfriede/BUAA-Database-2018/HEAD/sdeam/src/assets/yuanshen.png -------------------------------------------------------------------------------- /sdeam/src/assets/cyberpunk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfriede/BUAA-Database-2018/HEAD/sdeam/src/assets/cyberpunk.png -------------------------------------------------------------------------------- /code_back-end/__pycache__/app.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfriede/BUAA-Database-2018/HEAD/code_back-end/__pycache__/app.cpython-37.pyc -------------------------------------------------------------------------------- /code_back-end/__pycache__/app.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfriede/BUAA-Database-2018/HEAD/code_back-end/__pycache__/app.cpython-38.pyc -------------------------------------------------------------------------------- /code_back-end/__pycache__/Main.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfriede/BUAA-Database-2018/HEAD/code_back-end/__pycache__/Main.cpython-38.pyc -------------------------------------------------------------------------------- /code_back-end/__pycache__/Mysql.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfriede/BUAA-Database-2018/HEAD/code_back-end/__pycache__/Mysql.cpython-37.pyc -------------------------------------------------------------------------------- /code_back-end/__pycache__/Mysql.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfriede/BUAA-Database-2018/HEAD/code_back-end/__pycache__/Mysql.cpython-38.pyc -------------------------------------------------------------------------------- /code_back-end/__pycache__/Commend.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfriede/BUAA-Database-2018/HEAD/code_back-end/__pycache__/Commend.cpython-38.pyc -------------------------------------------------------------------------------- /code_back-end/__pycache__/Common.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfriede/BUAA-Database-2018/HEAD/code_back-end/__pycache__/Common.cpython-38.pyc -------------------------------------------------------------------------------- /code_back-end/__pycache__/Trigger.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfriede/BUAA-Database-2018/HEAD/code_back-end/__pycache__/Trigger.cpython-38.pyc -------------------------------------------------------------------------------- /code_back-end/Class/__pycache__/Buy.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfriede/BUAA-Database-2018/HEAD/code_back-end/Class/__pycache__/Buy.cpython-37.pyc -------------------------------------------------------------------------------- /code_back-end/Class/__pycache__/Buy.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfriede/BUAA-Database-2018/HEAD/code_back-end/Class/__pycache__/Buy.cpython-38.pyc -------------------------------------------------------------------------------- /code_back-end/Class/__pycache__/Game.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfriede/BUAA-Database-2018/HEAD/code_back-end/Class/__pycache__/Game.cpython-37.pyc -------------------------------------------------------------------------------- /code_back-end/Class/__pycache__/Game.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfriede/BUAA-Database-2018/HEAD/code_back-end/Class/__pycache__/Game.cpython-38.pyc -------------------------------------------------------------------------------- /code_back-end/Class/__pycache__/User.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfriede/BUAA-Database-2018/HEAD/code_back-end/Class/__pycache__/User.cpython-37.pyc -------------------------------------------------------------------------------- /code_back-end/Class/__pycache__/User.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfriede/BUAA-Database-2018/HEAD/code_back-end/Class/__pycache__/User.cpython-38.pyc -------------------------------------------------------------------------------- /code_back-end/Class/__pycache__/Comment.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfriede/BUAA-Database-2018/HEAD/code_back-end/Class/__pycache__/Comment.cpython-37.pyc -------------------------------------------------------------------------------- /code_back-end/Class/__pycache__/Comment.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfriede/BUAA-Database-2018/HEAD/code_back-end/Class/__pycache__/Comment.cpython-38.pyc -------------------------------------------------------------------------------- /code_back-end/Class/__pycache__/Father.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfriede/BUAA-Database-2018/HEAD/code_back-end/Class/__pycache__/Father.cpython-37.pyc -------------------------------------------------------------------------------- /code_back-end/Class/__pycache__/Father.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfriede/BUAA-Database-2018/HEAD/code_back-end/Class/__pycache__/Father.cpython-38.pyc -------------------------------------------------------------------------------- /code_back-end/Class/__pycache__/Developer.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfriede/BUAA-Database-2018/HEAD/code_back-end/Class/__pycache__/Developer.cpython-37.pyc -------------------------------------------------------------------------------- /code_back-end/Class/__pycache__/Developer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfriede/BUAA-Database-2018/HEAD/code_back-end/Class/__pycache__/Developer.cpython-38.pyc -------------------------------------------------------------------------------- /code_back-end/Class/__pycache__/Favorite.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfriede/BUAA-Database-2018/HEAD/code_back-end/Class/__pycache__/Favorite.cpython-37.pyc -------------------------------------------------------------------------------- /code_back-end/Class/__pycache__/Favorite.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfriede/BUAA-Database-2018/HEAD/code_back-end/Class/__pycache__/Favorite.cpython-38.pyc -------------------------------------------------------------------------------- /code_back-end/Class/__pycache__/User2Game.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfriede/BUAA-Database-2018/HEAD/code_back-end/Class/__pycache__/User2Game.cpython-37.pyc -------------------------------------------------------------------------------- /code_back-end/Class/__pycache__/User2Game.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfriede/BUAA-Database-2018/HEAD/code_back-end/Class/__pycache__/User2Game.cpython-38.pyc -------------------------------------------------------------------------------- /code_back-end/Class/__pycache__/Favorite2Game.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfriede/BUAA-Database-2018/HEAD/code_back-end/Class/__pycache__/Favorite2Game.cpython-38.pyc -------------------------------------------------------------------------------- /sdeam/config/dev.env.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | const merge = require('webpack-merge') 3 | const prodEnv = require('./prod.env') 4 | 5 | module.exports = merge(prodEnv, { 6 | NODE_ENV: '"development"' 7 | }) 8 | -------------------------------------------------------------------------------- /sdeam/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 |Setting Page
4 | 5 |Gottfried
5 |cjbbbbbbbb
6 |A cat
7 |
5 |
29 | 



27 |
5 |
5 |
57 | 67 | 确认支付结果中... 68 |
69 |{{ gameintroduction }}
121 |