├── .gitignore ├── README.md ├── Readme ├── Analysis.md ├── DBtables.png ├── command-Django ├── deploy.PNG ├── framework.png ├── image │ ├── cart.PNG │ ├── detail.PNG │ ├── index.PNG │ ├── list.PNG │ ├── login.PNG │ ├── order_finish.PNG │ ├── pay.PNG │ ├── pay_comment.PNG │ ├── pay_finish.PNG │ ├── pay_order.PNG │ ├── register.PNG │ ├── search_list.PNG │ ├── to_pay.PNG │ ├── user_center_address.PNG │ ├── user_center_info.PNG │ └── user_center_order.PNG └── show.md ├── apps ├── __init__.py ├── cart │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── goods │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── models.py │ ├── search_indexes.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── order │ ├── __init__.py │ ├── admin.py │ ├── alipay_public_key.pem │ ├── app_private_key.pem │ ├── apps.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py └── user │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── celery_tasks ├── __init__.py └── tasks.py ├── dailyfresh ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py ├── db ├── __init__.py └── base_model.py ├── manage.py ├── requirements.txt ├── static ├── cart.html ├── css │ ├── main.css │ └── reset.css ├── detail.html ├── images │ ├── adv01.jpg │ ├── adv02.jpg │ ├── banner01.jpg │ ├── banner02.jpg │ ├── banner03.jpg │ ├── banner04.jpg │ ├── banner05.jpg │ ├── banner06.jpg │ ├── down.png │ ├── fruit.jpg │ ├── goods.jpg │ ├── goods │ │ ├── goods001.jpg │ │ ├── goods002.jpg │ │ ├── goods003.jpg │ │ ├── goods004.jpg │ │ ├── goods005.jpg │ │ ├── goods006.jpg │ │ ├── goods007.jpg │ │ ├── goods008.jpg │ │ ├── goods009.jpg │ │ ├── goods010.jpg │ │ ├── goods011.jpg │ │ ├── goods012.jpg │ │ ├── goods013.jpg │ │ ├── goods014.jpg │ │ ├── goods015.jpg │ │ ├── goods016.jpg │ │ ├── goods017.jpg │ │ ├── goods018.jpg │ │ ├── goods019.jpg │ │ ├── goods020.jpg │ │ └── goods021.jpg │ ├── goods02.jpg │ ├── goods_detail.jpg │ ├── icons.png │ ├── icons02.png │ ├── interval_line.png │ ├── left_bg.jpg │ ├── login_banner.png │ ├── logo.png │ ├── logo02.png │ ├── pay_icons.png │ ├── register_banner.png │ ├── shop_cart.png │ ├── slide.jpg │ ├── slide02.jpg │ ├── slide03.jpg │ └── slide04.jpg ├── index.html ├── js │ ├── jquery-1.12.4.min.js │ ├── jquery-ui.min.js │ ├── jquery.cookie.js │ ├── register.js │ └── slide.js ├── list.html ├── login.html ├── place_order.html ├── register.html ├── user_center_info.html ├── user_center_order.html └── user_center_site.html ├── templates ├── base.html ├── base_detail_list.html ├── base_no_cart.html ├── base_user_center.html ├── cart.html ├── detail.html ├── index.html ├── list.html ├── login.html ├── order_comment.html ├── place_order.html ├── register.html ├── search │ ├── indexes │ │ └── goods │ │ │ └── goodssku_text.txt │ ├── search.html │ └── search1.html ├── static_base.html ├── static_index.html ├── user_center_info.html ├── user_center_order.html └── user_center_site.html ├── test.py ├── test.txt ├── utils ├── Mixin.py ├── __init__.py └── fdfs │ ├── __init__.py │ ├── client.conf │ └── storage.py └── whoosh_index ├── MAIN_WRITELOCK ├── MAIN_f8dxb6p823colf9c.seg └── _MAIN_1.toc /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/README.md -------------------------------------------------------------------------------- /Readme/Analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/Readme/Analysis.md -------------------------------------------------------------------------------- /Readme/DBtables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/Readme/DBtables.png -------------------------------------------------------------------------------- /Readme/command-Django: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/Readme/command-Django -------------------------------------------------------------------------------- /Readme/deploy.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/Readme/deploy.PNG -------------------------------------------------------------------------------- /Readme/framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/Readme/framework.png -------------------------------------------------------------------------------- /Readme/image/cart.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/Readme/image/cart.PNG -------------------------------------------------------------------------------- /Readme/image/detail.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/Readme/image/detail.PNG -------------------------------------------------------------------------------- /Readme/image/index.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/Readme/image/index.PNG -------------------------------------------------------------------------------- /Readme/image/list.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/Readme/image/list.PNG -------------------------------------------------------------------------------- /Readme/image/login.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/Readme/image/login.PNG -------------------------------------------------------------------------------- /Readme/image/order_finish.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/Readme/image/order_finish.PNG -------------------------------------------------------------------------------- /Readme/image/pay.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/Readme/image/pay.PNG -------------------------------------------------------------------------------- /Readme/image/pay_comment.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/Readme/image/pay_comment.PNG -------------------------------------------------------------------------------- /Readme/image/pay_finish.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/Readme/image/pay_finish.PNG -------------------------------------------------------------------------------- /Readme/image/pay_order.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/Readme/image/pay_order.PNG -------------------------------------------------------------------------------- /Readme/image/register.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/Readme/image/register.PNG -------------------------------------------------------------------------------- /Readme/image/search_list.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/Readme/image/search_list.PNG -------------------------------------------------------------------------------- /Readme/image/to_pay.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/Readme/image/to_pay.PNG -------------------------------------------------------------------------------- /Readme/image/user_center_address.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/Readme/image/user_center_address.PNG -------------------------------------------------------------------------------- /Readme/image/user_center_info.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/Readme/image/user_center_info.PNG -------------------------------------------------------------------------------- /Readme/image/user_center_order.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/Readme/image/user_center_order.PNG -------------------------------------------------------------------------------- /Readme/show.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/Readme/show.md -------------------------------------------------------------------------------- /apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/cart/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/cart/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/apps/cart/admin.py -------------------------------------------------------------------------------- /apps/cart/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/apps/cart/apps.py -------------------------------------------------------------------------------- /apps/cart/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/apps/cart/models.py -------------------------------------------------------------------------------- /apps/cart/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/apps/cart/tests.py -------------------------------------------------------------------------------- /apps/cart/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/apps/cart/urls.py -------------------------------------------------------------------------------- /apps/cart/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/apps/cart/views.py -------------------------------------------------------------------------------- /apps/goods/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/goods/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/apps/goods/admin.py -------------------------------------------------------------------------------- /apps/goods/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/apps/goods/apps.py -------------------------------------------------------------------------------- /apps/goods/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/apps/goods/models.py -------------------------------------------------------------------------------- /apps/goods/search_indexes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/apps/goods/search_indexes.py -------------------------------------------------------------------------------- /apps/goods/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/apps/goods/tests.py -------------------------------------------------------------------------------- /apps/goods/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/apps/goods/urls.py -------------------------------------------------------------------------------- /apps/goods/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/apps/goods/views.py -------------------------------------------------------------------------------- /apps/order/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/order/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/apps/order/admin.py -------------------------------------------------------------------------------- /apps/order/alipay_public_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/apps/order/alipay_public_key.pem -------------------------------------------------------------------------------- /apps/order/app_private_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/apps/order/app_private_key.pem -------------------------------------------------------------------------------- /apps/order/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/apps/order/apps.py -------------------------------------------------------------------------------- /apps/order/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/apps/order/models.py -------------------------------------------------------------------------------- /apps/order/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/apps/order/tests.py -------------------------------------------------------------------------------- /apps/order/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/apps/order/urls.py -------------------------------------------------------------------------------- /apps/order/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/apps/order/views.py -------------------------------------------------------------------------------- /apps/user/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/user/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/apps/user/admin.py -------------------------------------------------------------------------------- /apps/user/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/apps/user/apps.py -------------------------------------------------------------------------------- /apps/user/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/apps/user/models.py -------------------------------------------------------------------------------- /apps/user/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/apps/user/tests.py -------------------------------------------------------------------------------- /apps/user/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/apps/user/urls.py -------------------------------------------------------------------------------- /apps/user/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/apps/user/views.py -------------------------------------------------------------------------------- /celery_tasks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /celery_tasks/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/celery_tasks/tasks.py -------------------------------------------------------------------------------- /dailyfresh/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/dailyfresh/__init__.py -------------------------------------------------------------------------------- /dailyfresh/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/dailyfresh/settings.py -------------------------------------------------------------------------------- /dailyfresh/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/dailyfresh/urls.py -------------------------------------------------------------------------------- /dailyfresh/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/dailyfresh/wsgi.py -------------------------------------------------------------------------------- /db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/db/base_model.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/cart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/cart.html -------------------------------------------------------------------------------- /static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/css/main.css -------------------------------------------------------------------------------- /static/css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/css/reset.css -------------------------------------------------------------------------------- /static/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/detail.html -------------------------------------------------------------------------------- /static/images/adv01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/images/adv01.jpg -------------------------------------------------------------------------------- /static/images/adv02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/images/adv02.jpg -------------------------------------------------------------------------------- /static/images/banner01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/images/banner01.jpg -------------------------------------------------------------------------------- /static/images/banner02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/images/banner02.jpg -------------------------------------------------------------------------------- /static/images/banner03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/images/banner03.jpg -------------------------------------------------------------------------------- /static/images/banner04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/images/banner04.jpg -------------------------------------------------------------------------------- /static/images/banner05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/images/banner05.jpg -------------------------------------------------------------------------------- /static/images/banner06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/images/banner06.jpg -------------------------------------------------------------------------------- /static/images/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/images/down.png -------------------------------------------------------------------------------- /static/images/fruit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/images/fruit.jpg -------------------------------------------------------------------------------- /static/images/goods.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/images/goods.jpg -------------------------------------------------------------------------------- /static/images/goods/goods001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/images/goods/goods001.jpg -------------------------------------------------------------------------------- /static/images/goods/goods002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/images/goods/goods002.jpg -------------------------------------------------------------------------------- /static/images/goods/goods003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/images/goods/goods003.jpg -------------------------------------------------------------------------------- /static/images/goods/goods004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/images/goods/goods004.jpg -------------------------------------------------------------------------------- /static/images/goods/goods005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/images/goods/goods005.jpg -------------------------------------------------------------------------------- /static/images/goods/goods006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/images/goods/goods006.jpg -------------------------------------------------------------------------------- /static/images/goods/goods007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/images/goods/goods007.jpg -------------------------------------------------------------------------------- /static/images/goods/goods008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/images/goods/goods008.jpg -------------------------------------------------------------------------------- /static/images/goods/goods009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/images/goods/goods009.jpg -------------------------------------------------------------------------------- /static/images/goods/goods010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/images/goods/goods010.jpg -------------------------------------------------------------------------------- /static/images/goods/goods011.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/images/goods/goods011.jpg -------------------------------------------------------------------------------- /static/images/goods/goods012.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/images/goods/goods012.jpg -------------------------------------------------------------------------------- /static/images/goods/goods013.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/images/goods/goods013.jpg -------------------------------------------------------------------------------- /static/images/goods/goods014.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/images/goods/goods014.jpg -------------------------------------------------------------------------------- /static/images/goods/goods015.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/images/goods/goods015.jpg -------------------------------------------------------------------------------- /static/images/goods/goods016.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/images/goods/goods016.jpg -------------------------------------------------------------------------------- /static/images/goods/goods017.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/images/goods/goods017.jpg -------------------------------------------------------------------------------- /static/images/goods/goods018.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/images/goods/goods018.jpg -------------------------------------------------------------------------------- /static/images/goods/goods019.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/images/goods/goods019.jpg -------------------------------------------------------------------------------- /static/images/goods/goods020.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/images/goods/goods020.jpg -------------------------------------------------------------------------------- /static/images/goods/goods021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/images/goods/goods021.jpg -------------------------------------------------------------------------------- /static/images/goods02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/images/goods02.jpg -------------------------------------------------------------------------------- /static/images/goods_detail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/images/goods_detail.jpg -------------------------------------------------------------------------------- /static/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/images/icons.png -------------------------------------------------------------------------------- /static/images/icons02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/images/icons02.png -------------------------------------------------------------------------------- /static/images/interval_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/images/interval_line.png -------------------------------------------------------------------------------- /static/images/left_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/images/left_bg.jpg -------------------------------------------------------------------------------- /static/images/login_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/images/login_banner.png -------------------------------------------------------------------------------- /static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/images/logo.png -------------------------------------------------------------------------------- /static/images/logo02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/images/logo02.png -------------------------------------------------------------------------------- /static/images/pay_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/images/pay_icons.png -------------------------------------------------------------------------------- /static/images/register_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/images/register_banner.png -------------------------------------------------------------------------------- /static/images/shop_cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/images/shop_cart.png -------------------------------------------------------------------------------- /static/images/slide.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/images/slide.jpg -------------------------------------------------------------------------------- /static/images/slide02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/images/slide02.jpg -------------------------------------------------------------------------------- /static/images/slide03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/images/slide03.jpg -------------------------------------------------------------------------------- /static/images/slide04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/images/slide04.jpg -------------------------------------------------------------------------------- /static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/index.html -------------------------------------------------------------------------------- /static/js/jquery-1.12.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/js/jquery-1.12.4.min.js -------------------------------------------------------------------------------- /static/js/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/js/jquery-ui.min.js -------------------------------------------------------------------------------- /static/js/jquery.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/js/jquery.cookie.js -------------------------------------------------------------------------------- /static/js/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/js/register.js -------------------------------------------------------------------------------- /static/js/slide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/js/slide.js -------------------------------------------------------------------------------- /static/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/list.html -------------------------------------------------------------------------------- /static/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/login.html -------------------------------------------------------------------------------- /static/place_order.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/place_order.html -------------------------------------------------------------------------------- /static/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/register.html -------------------------------------------------------------------------------- /static/user_center_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/user_center_info.html -------------------------------------------------------------------------------- /static/user_center_order.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/user_center_order.html -------------------------------------------------------------------------------- /static/user_center_site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/static/user_center_site.html -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/base_detail_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/templates/base_detail_list.html -------------------------------------------------------------------------------- /templates/base_no_cart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/templates/base_no_cart.html -------------------------------------------------------------------------------- /templates/base_user_center.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/templates/base_user_center.html -------------------------------------------------------------------------------- /templates/cart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/templates/cart.html -------------------------------------------------------------------------------- /templates/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/templates/detail.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/templates/list.html -------------------------------------------------------------------------------- /templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/templates/login.html -------------------------------------------------------------------------------- /templates/order_comment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/templates/order_comment.html -------------------------------------------------------------------------------- /templates/place_order.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/templates/place_order.html -------------------------------------------------------------------------------- /templates/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/templates/register.html -------------------------------------------------------------------------------- /templates/search/indexes/goods/goodssku_text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/templates/search/indexes/goods/goodssku_text.txt -------------------------------------------------------------------------------- /templates/search/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/templates/search/search.html -------------------------------------------------------------------------------- /templates/search/search1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/templates/search/search1.html -------------------------------------------------------------------------------- /templates/static_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/templates/static_base.html -------------------------------------------------------------------------------- /templates/static_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/templates/static_index.html -------------------------------------------------------------------------------- /templates/user_center_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/templates/user_center_info.html -------------------------------------------------------------------------------- /templates/user_center_order.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/templates/user_center_order.html -------------------------------------------------------------------------------- /templates/user_center_site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/templates/user_center_site.html -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/test.py -------------------------------------------------------------------------------- /test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/test.txt -------------------------------------------------------------------------------- /utils/Mixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/utils/Mixin.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/fdfs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/fdfs/client.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/utils/fdfs/client.conf -------------------------------------------------------------------------------- /utils/fdfs/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/utils/fdfs/storage.py -------------------------------------------------------------------------------- /whoosh_index/MAIN_WRITELOCK: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /whoosh_index/MAIN_f8dxb6p823colf9c.seg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/whoosh_index/MAIN_f8dxb6p823colf9c.seg -------------------------------------------------------------------------------- /whoosh_index/_MAIN_1.toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZhang95/dailyfresh/HEAD/whoosh_index/_MAIN_1.toc --------------------------------------------------------------------------------