├── README.md ├── SuperMarket ├── .gitattributes ├── .gitignore ├── README.md ├── __init__.py ├── app │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── libs │ │ ├── data_generator.py │ │ ├── login_check.py │ │ └── page_generator.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20190116_2010.py │ │ ├── 0003_auto_20190117_0132.py │ │ ├── 0004_auto_20190117_0147.py │ │ ├── 0005_auto_20190117_1154.py │ │ ├── 0006_auto_20190117_2127.py │ │ ├── 0007_goods_preserve.py │ │ ├── 0008_auto_20190119_2103.py │ │ ├── 0009_auto_20190119_2136.py │ │ ├── 0010_auto_20190121_0026.py │ │ ├── 0011_message_isread.py │ │ └── __init__.py │ ├── models.py │ ├── templatetags │ │ ├── __init__.py │ │ └── my_tags.py │ ├── urls.py │ └── view_sets │ │ ├── __init__.py │ │ ├── background │ │ ├── __init__.py │ │ ├── accounts.py │ │ ├── index.py │ │ ├── providers.py │ │ ├── records.py │ │ └── sales.py │ │ ├── front_site.py │ │ ├── login_handler.py │ │ └── message_handler.py ├── config │ ├── __init__.py │ ├── gunicorn.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── deploy │ ├── nginx.conf │ └── supervisor │ │ └── django_demo.conf ├── logs │ └── .gitignore ├── manage.py ├── requirements.txt └── templates │ ├── 404.html │ ├── home │ ├── about.html │ ├── all.html │ ├── detail.html │ ├── feedback.html │ └── index.html │ └── manage │ ├── account_all.html │ ├── account_more.html │ ├── base │ └── base.html │ ├── dashboard.html │ ├── goods.html │ ├── login.html │ ├── messages.html │ ├── profile.html │ ├── provider.html │ └── record.html ├── mysql数据库 └── django_demo.sql └── 关于系统.txt /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_supermarket_jxc/HEAD/README.md -------------------------------------------------------------------------------- /SuperMarket/.gitattributes: -------------------------------------------------------------------------------- 1 | *.html linguist-language=python 2 | -------------------------------------------------------------------------------- /SuperMarket/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_supermarket_jxc/HEAD/SuperMarket/.gitignore -------------------------------------------------------------------------------- /SuperMarket/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_supermarket_jxc/HEAD/SuperMarket/README.md -------------------------------------------------------------------------------- /SuperMarket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SuperMarket/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SuperMarket/app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_supermarket_jxc/HEAD/SuperMarket/app/admin.py -------------------------------------------------------------------------------- /SuperMarket/app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_supermarket_jxc/HEAD/SuperMarket/app/apps.py -------------------------------------------------------------------------------- /SuperMarket/app/libs/data_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_supermarket_jxc/HEAD/SuperMarket/app/libs/data_generator.py -------------------------------------------------------------------------------- /SuperMarket/app/libs/login_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_supermarket_jxc/HEAD/SuperMarket/app/libs/login_check.py -------------------------------------------------------------------------------- /SuperMarket/app/libs/page_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_supermarket_jxc/HEAD/SuperMarket/app/libs/page_generator.py -------------------------------------------------------------------------------- /SuperMarket/app/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_supermarket_jxc/HEAD/SuperMarket/app/migrations/0001_initial.py -------------------------------------------------------------------------------- /SuperMarket/app/migrations/0002_auto_20190116_2010.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_supermarket_jxc/HEAD/SuperMarket/app/migrations/0002_auto_20190116_2010.py -------------------------------------------------------------------------------- /SuperMarket/app/migrations/0003_auto_20190117_0132.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_supermarket_jxc/HEAD/SuperMarket/app/migrations/0003_auto_20190117_0132.py -------------------------------------------------------------------------------- /SuperMarket/app/migrations/0004_auto_20190117_0147.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_supermarket_jxc/HEAD/SuperMarket/app/migrations/0004_auto_20190117_0147.py -------------------------------------------------------------------------------- /SuperMarket/app/migrations/0005_auto_20190117_1154.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_supermarket_jxc/HEAD/SuperMarket/app/migrations/0005_auto_20190117_1154.py -------------------------------------------------------------------------------- /SuperMarket/app/migrations/0006_auto_20190117_2127.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_supermarket_jxc/HEAD/SuperMarket/app/migrations/0006_auto_20190117_2127.py -------------------------------------------------------------------------------- /SuperMarket/app/migrations/0007_goods_preserve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_supermarket_jxc/HEAD/SuperMarket/app/migrations/0007_goods_preserve.py -------------------------------------------------------------------------------- /SuperMarket/app/migrations/0008_auto_20190119_2103.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_supermarket_jxc/HEAD/SuperMarket/app/migrations/0008_auto_20190119_2103.py -------------------------------------------------------------------------------- /SuperMarket/app/migrations/0009_auto_20190119_2136.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_supermarket_jxc/HEAD/SuperMarket/app/migrations/0009_auto_20190119_2136.py -------------------------------------------------------------------------------- /SuperMarket/app/migrations/0010_auto_20190121_0026.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_supermarket_jxc/HEAD/SuperMarket/app/migrations/0010_auto_20190121_0026.py -------------------------------------------------------------------------------- /SuperMarket/app/migrations/0011_message_isread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_supermarket_jxc/HEAD/SuperMarket/app/migrations/0011_message_isread.py -------------------------------------------------------------------------------- /SuperMarket/app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SuperMarket/app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_supermarket_jxc/HEAD/SuperMarket/app/models.py -------------------------------------------------------------------------------- /SuperMarket/app/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SuperMarket/app/templatetags/my_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_supermarket_jxc/HEAD/SuperMarket/app/templatetags/my_tags.py -------------------------------------------------------------------------------- /SuperMarket/app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_supermarket_jxc/HEAD/SuperMarket/app/urls.py -------------------------------------------------------------------------------- /SuperMarket/app/view_sets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SuperMarket/app/view_sets/background/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SuperMarket/app/view_sets/background/accounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_supermarket_jxc/HEAD/SuperMarket/app/view_sets/background/accounts.py -------------------------------------------------------------------------------- /SuperMarket/app/view_sets/background/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_supermarket_jxc/HEAD/SuperMarket/app/view_sets/background/index.py -------------------------------------------------------------------------------- /SuperMarket/app/view_sets/background/providers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_supermarket_jxc/HEAD/SuperMarket/app/view_sets/background/providers.py -------------------------------------------------------------------------------- /SuperMarket/app/view_sets/background/records.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_supermarket_jxc/HEAD/SuperMarket/app/view_sets/background/records.py -------------------------------------------------------------------------------- /SuperMarket/app/view_sets/background/sales.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_supermarket_jxc/HEAD/SuperMarket/app/view_sets/background/sales.py -------------------------------------------------------------------------------- /SuperMarket/app/view_sets/front_site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_supermarket_jxc/HEAD/SuperMarket/app/view_sets/front_site.py -------------------------------------------------------------------------------- /SuperMarket/app/view_sets/login_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_supermarket_jxc/HEAD/SuperMarket/app/view_sets/login_handler.py -------------------------------------------------------------------------------- /SuperMarket/app/view_sets/message_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_supermarket_jxc/HEAD/SuperMarket/app/view_sets/message_handler.py -------------------------------------------------------------------------------- /SuperMarket/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SuperMarket/config/gunicorn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_supermarket_jxc/HEAD/SuperMarket/config/gunicorn.py -------------------------------------------------------------------------------- /SuperMarket/config/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_supermarket_jxc/HEAD/SuperMarket/config/settings.py -------------------------------------------------------------------------------- /SuperMarket/config/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_supermarket_jxc/HEAD/SuperMarket/config/urls.py -------------------------------------------------------------------------------- /SuperMarket/config/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_supermarket_jxc/HEAD/SuperMarket/config/wsgi.py -------------------------------------------------------------------------------- /SuperMarket/deploy/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_supermarket_jxc/HEAD/SuperMarket/deploy/nginx.conf -------------------------------------------------------------------------------- /SuperMarket/deploy/supervisor/django_demo.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_supermarket_jxc/HEAD/SuperMarket/deploy/supervisor/django_demo.conf -------------------------------------------------------------------------------- /SuperMarket/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /SuperMarket/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_supermarket_jxc/HEAD/SuperMarket/manage.py -------------------------------------------------------------------------------- /SuperMarket/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_supermarket_jxc/HEAD/SuperMarket/requirements.txt -------------------------------------------------------------------------------- /SuperMarket/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_supermarket_jxc/HEAD/SuperMarket/templates/404.html -------------------------------------------------------------------------------- /SuperMarket/templates/home/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_supermarket_jxc/HEAD/SuperMarket/templates/home/about.html -------------------------------------------------------------------------------- /SuperMarket/templates/home/all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_supermarket_jxc/HEAD/SuperMarket/templates/home/all.html -------------------------------------------------------------------------------- /SuperMarket/templates/home/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_supermarket_jxc/HEAD/SuperMarket/templates/home/detail.html -------------------------------------------------------------------------------- /SuperMarket/templates/home/feedback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_supermarket_jxc/HEAD/SuperMarket/templates/home/feedback.html -------------------------------------------------------------------------------- /SuperMarket/templates/home/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_supermarket_jxc/HEAD/SuperMarket/templates/home/index.html -------------------------------------------------------------------------------- /SuperMarket/templates/manage/account_all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_supermarket_jxc/HEAD/SuperMarket/templates/manage/account_all.html -------------------------------------------------------------------------------- /SuperMarket/templates/manage/account_more.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_supermarket_jxc/HEAD/SuperMarket/templates/manage/account_more.html -------------------------------------------------------------------------------- /SuperMarket/templates/manage/base/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_supermarket_jxc/HEAD/SuperMarket/templates/manage/base/base.html -------------------------------------------------------------------------------- /SuperMarket/templates/manage/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_supermarket_jxc/HEAD/SuperMarket/templates/manage/dashboard.html -------------------------------------------------------------------------------- /SuperMarket/templates/manage/goods.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_supermarket_jxc/HEAD/SuperMarket/templates/manage/goods.html -------------------------------------------------------------------------------- /SuperMarket/templates/manage/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_supermarket_jxc/HEAD/SuperMarket/templates/manage/login.html -------------------------------------------------------------------------------- /SuperMarket/templates/manage/messages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_supermarket_jxc/HEAD/SuperMarket/templates/manage/messages.html -------------------------------------------------------------------------------- /SuperMarket/templates/manage/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_supermarket_jxc/HEAD/SuperMarket/templates/manage/profile.html -------------------------------------------------------------------------------- /SuperMarket/templates/manage/provider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_supermarket_jxc/HEAD/SuperMarket/templates/manage/provider.html -------------------------------------------------------------------------------- /SuperMarket/templates/manage/record.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_supermarket_jxc/HEAD/SuperMarket/templates/manage/record.html -------------------------------------------------------------------------------- /mysql数据库/django_demo.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_supermarket_jxc/HEAD/mysql数据库/django_demo.sql -------------------------------------------------------------------------------- /关于系统.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_supermarket_jxc/HEAD/关于系统.txt --------------------------------------------------------------------------------