├── .gitattributes ├── README.md ├── dailyfresh ├── .idea │ ├── dailyfresh.iml │ ├── encodings.xml │ ├── misc.xml │ ├── modules.xml │ └── workspace.xml ├── apps │ ├── __init__.py │ ├── cart │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── migrations │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ ├── __init__.cpython-35.pyc │ │ │ │ └── __init__.cpython-36.pyc │ │ ├── models.py │ │ ├── tests.py │ │ └── urls.py │ ├── goods │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-35.pyc │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── admin.cpython-35.pyc │ │ │ ├── admin.cpython-36.pyc │ │ │ ├── models.cpython-35.pyc │ │ │ ├── models.cpython-36.pyc │ │ │ ├── search_indexes.cpython-35.pyc │ │ │ ├── search_indexes.cpython-36.pyc │ │ │ ├── urls.cpython-35.pyc │ │ │ ├── urls.cpython-36.pyc │ │ │ ├── views.cpython-35.pyc │ │ │ └── views.cpython-36.pyc │ │ ├── admin.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ ├── 0001_initial.cpython-35.pyc │ │ │ │ ├── 0001_initial.cpython-36.pyc │ │ │ │ ├── __init__.cpython-35.pyc │ │ │ │ └── __init__.cpython-36.pyc │ │ ├── models.py │ │ ├── search_indexes.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── order │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto_20171113_1813.py │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ ├── 0001_initial.cpython-35.pyc │ │ │ │ ├── 0001_initial.cpython-36.pyc │ │ │ │ ├── 0002_auto_20171113_1813.cpython-35.pyc │ │ │ │ ├── 0002_auto_20171113_1813.cpython-36.pyc │ │ │ │ ├── __init__.cpython-35.pyc │ │ │ │ └── __init__.cpython-36.pyc │ │ ├── models.py │ │ ├── tests.py │ │ └── urls.py │ └── user │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-35.pyc │ │ ├── __init__.cpython-36.pyc │ │ ├── admin.cpython-35.pyc │ │ ├── admin.cpython-36.pyc │ │ ├── models.cpython-35.pyc │ │ ├── models.cpython-36.pyc │ │ ├── urls.cpython-35.pyc │ │ ├── urls.cpython-36.pyc │ │ ├── views.cpython-35.pyc │ │ └── views.cpython-36.pyc │ │ ├── admin.py │ │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── 0001_initial.cpython-35.pyc │ │ │ ├── 0001_initial.cpython-36.pyc │ │ │ ├── __init__.cpython-35.pyc │ │ │ └── __init__.cpython-36.pyc │ │ ├── models.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py ├── celery_tasks │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-35.pyc │ │ ├── __init__.cpython-36.pyc │ │ ├── tasks.cpython-35.pyc │ │ └── tasks.cpython-36.pyc │ └── tasks.py ├── dailyfresh │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-35.pyc │ │ ├── __init__.cpython-36.pyc │ │ ├── settings.cpython-35.pyc │ │ ├── settings.cpython-36.pyc │ │ ├── urls.cpython-35.pyc │ │ ├── urls.cpython-36.pyc │ │ ├── wsgi.cpython-35.pyc │ │ └── wsgi.cpython-36.pyc │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── db │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-35.pyc │ │ ├── __init__.cpython-36.pyc │ │ ├── base_model.cpython-35.pyc │ │ └── base_model.cpython-36.pyc │ └── base_model.py ├── manage.py ├── static │ ├── cart(1).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 │ │ │ ├── goods022.jpg │ │ │ ├── goods023.jpg │ │ │ ├── goods024.jpg │ │ │ ├── goods025.jpg │ │ │ ├── goods026.jpg │ │ │ ├── goods027.jpg │ │ │ ├── goods028.jpg │ │ │ ├── goods029.jpg │ │ │ ├── goods030.jpg │ │ │ ├── goods031.jpg │ │ │ ├── goods032.jpg │ │ │ ├── goods033.jpg │ │ │ ├── goods034.jpg │ │ │ ├── goods035.jpg │ │ │ ├── goods036.jpg │ │ │ ├── goods037.jpg │ │ │ ├── goods038.jpg │ │ │ ├── goods039.jpg │ │ │ ├── goods040.jpg │ │ │ ├── goods041.jpg │ │ │ └── goods042.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 │ ├── test.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 │ ├── detail.html │ ├── index.html │ ├── list.html │ ├── login.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 ├── utils │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-35.pyc │ │ ├── __init__.cpython-36.pyc │ │ ├── mixin.cpython-35.pyc │ │ └── mixin.cpython-36.pyc │ ├── fdfs │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-35.pyc │ │ │ └── storage.cpython-35.pyc │ │ ├── client.conf │ │ └── storage.py │ └── mixin.py ├── uwsgi.ini ├── uwsgi.log ├── uwsgi.pid ├── uwsgi2.ini ├── uwsgi2.log ├── uwsgi2.pid └── whoosh_index │ ├── MAIN_WRITELOCK │ ├── MAIN_lrwy4q2t15c84ifo.seg │ └── _MAIN_1.toc ├── mysql数据库 └── dailyfresh.sql ├── 关于系统.txt ├── 前端静态页面设计 ├── 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 └── 页面说明.txt └── 项目文档 ├── python电商项目.docx └── 项目说明文档.docx /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/.gitattributes -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/README.md -------------------------------------------------------------------------------- /dailyfresh/.idea/dailyfresh.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/.idea/dailyfresh.iml -------------------------------------------------------------------------------- /dailyfresh/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/.idea/encodings.xml -------------------------------------------------------------------------------- /dailyfresh/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/.idea/misc.xml -------------------------------------------------------------------------------- /dailyfresh/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/.idea/modules.xml -------------------------------------------------------------------------------- /dailyfresh/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/.idea/workspace.xml -------------------------------------------------------------------------------- /dailyfresh/apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dailyfresh/apps/cart/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dailyfresh/apps/cart/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/cart/admin.py -------------------------------------------------------------------------------- /dailyfresh/apps/cart/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dailyfresh/apps/cart/migrations/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/cart/migrations/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /dailyfresh/apps/cart/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/cart/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /dailyfresh/apps/cart/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/cart/models.py -------------------------------------------------------------------------------- /dailyfresh/apps/cart/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/cart/tests.py -------------------------------------------------------------------------------- /dailyfresh/apps/cart/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/cart/urls.py -------------------------------------------------------------------------------- /dailyfresh/apps/goods/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dailyfresh/apps/goods/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/goods/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /dailyfresh/apps/goods/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/goods/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /dailyfresh/apps/goods/__pycache__/admin.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/goods/__pycache__/admin.cpython-35.pyc -------------------------------------------------------------------------------- /dailyfresh/apps/goods/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/goods/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /dailyfresh/apps/goods/__pycache__/models.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/goods/__pycache__/models.cpython-35.pyc -------------------------------------------------------------------------------- /dailyfresh/apps/goods/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/goods/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /dailyfresh/apps/goods/__pycache__/search_indexes.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/goods/__pycache__/search_indexes.cpython-35.pyc -------------------------------------------------------------------------------- /dailyfresh/apps/goods/__pycache__/search_indexes.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/goods/__pycache__/search_indexes.cpython-36.pyc -------------------------------------------------------------------------------- /dailyfresh/apps/goods/__pycache__/urls.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/goods/__pycache__/urls.cpython-35.pyc -------------------------------------------------------------------------------- /dailyfresh/apps/goods/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/goods/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /dailyfresh/apps/goods/__pycache__/views.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/goods/__pycache__/views.cpython-35.pyc -------------------------------------------------------------------------------- /dailyfresh/apps/goods/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/goods/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /dailyfresh/apps/goods/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/goods/admin.py -------------------------------------------------------------------------------- /dailyfresh/apps/goods/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/goods/migrations/0001_initial.py -------------------------------------------------------------------------------- /dailyfresh/apps/goods/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dailyfresh/apps/goods/migrations/__pycache__/0001_initial.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/goods/migrations/__pycache__/0001_initial.cpython-35.pyc -------------------------------------------------------------------------------- /dailyfresh/apps/goods/migrations/__pycache__/0001_initial.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/goods/migrations/__pycache__/0001_initial.cpython-36.pyc -------------------------------------------------------------------------------- /dailyfresh/apps/goods/migrations/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/goods/migrations/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /dailyfresh/apps/goods/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/goods/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /dailyfresh/apps/goods/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/goods/models.py -------------------------------------------------------------------------------- /dailyfresh/apps/goods/search_indexes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/goods/search_indexes.py -------------------------------------------------------------------------------- /dailyfresh/apps/goods/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/goods/tests.py -------------------------------------------------------------------------------- /dailyfresh/apps/goods/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/goods/urls.py -------------------------------------------------------------------------------- /dailyfresh/apps/goods/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/goods/views.py -------------------------------------------------------------------------------- /dailyfresh/apps/order/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dailyfresh/apps/order/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/order/admin.py -------------------------------------------------------------------------------- /dailyfresh/apps/order/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/order/migrations/0001_initial.py -------------------------------------------------------------------------------- /dailyfresh/apps/order/migrations/0002_auto_20171113_1813.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/order/migrations/0002_auto_20171113_1813.py -------------------------------------------------------------------------------- /dailyfresh/apps/order/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dailyfresh/apps/order/migrations/__pycache__/0001_initial.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/order/migrations/__pycache__/0001_initial.cpython-35.pyc -------------------------------------------------------------------------------- /dailyfresh/apps/order/migrations/__pycache__/0001_initial.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/order/migrations/__pycache__/0001_initial.cpython-36.pyc -------------------------------------------------------------------------------- /dailyfresh/apps/order/migrations/__pycache__/0002_auto_20171113_1813.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/order/migrations/__pycache__/0002_auto_20171113_1813.cpython-35.pyc -------------------------------------------------------------------------------- /dailyfresh/apps/order/migrations/__pycache__/0002_auto_20171113_1813.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/order/migrations/__pycache__/0002_auto_20171113_1813.cpython-36.pyc -------------------------------------------------------------------------------- /dailyfresh/apps/order/migrations/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/order/migrations/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /dailyfresh/apps/order/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/order/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /dailyfresh/apps/order/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/order/models.py -------------------------------------------------------------------------------- /dailyfresh/apps/order/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/order/tests.py -------------------------------------------------------------------------------- /dailyfresh/apps/order/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/order/urls.py -------------------------------------------------------------------------------- /dailyfresh/apps/user/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dailyfresh/apps/user/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/user/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /dailyfresh/apps/user/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/user/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /dailyfresh/apps/user/__pycache__/admin.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/user/__pycache__/admin.cpython-35.pyc -------------------------------------------------------------------------------- /dailyfresh/apps/user/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/user/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /dailyfresh/apps/user/__pycache__/models.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/user/__pycache__/models.cpython-35.pyc -------------------------------------------------------------------------------- /dailyfresh/apps/user/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/user/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /dailyfresh/apps/user/__pycache__/urls.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/user/__pycache__/urls.cpython-35.pyc -------------------------------------------------------------------------------- /dailyfresh/apps/user/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/user/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /dailyfresh/apps/user/__pycache__/views.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/user/__pycache__/views.cpython-35.pyc -------------------------------------------------------------------------------- /dailyfresh/apps/user/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/user/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /dailyfresh/apps/user/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/user/admin.py -------------------------------------------------------------------------------- /dailyfresh/apps/user/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/user/migrations/0001_initial.py -------------------------------------------------------------------------------- /dailyfresh/apps/user/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dailyfresh/apps/user/migrations/__pycache__/0001_initial.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/user/migrations/__pycache__/0001_initial.cpython-35.pyc -------------------------------------------------------------------------------- /dailyfresh/apps/user/migrations/__pycache__/0001_initial.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/user/migrations/__pycache__/0001_initial.cpython-36.pyc -------------------------------------------------------------------------------- /dailyfresh/apps/user/migrations/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/user/migrations/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /dailyfresh/apps/user/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/user/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /dailyfresh/apps/user/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/user/models.py -------------------------------------------------------------------------------- /dailyfresh/apps/user/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/user/tests.py -------------------------------------------------------------------------------- /dailyfresh/apps/user/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/user/urls.py -------------------------------------------------------------------------------- /dailyfresh/apps/user/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/apps/user/views.py -------------------------------------------------------------------------------- /dailyfresh/celery_tasks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dailyfresh/celery_tasks/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/celery_tasks/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /dailyfresh/celery_tasks/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/celery_tasks/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /dailyfresh/celery_tasks/__pycache__/tasks.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/celery_tasks/__pycache__/tasks.cpython-35.pyc -------------------------------------------------------------------------------- /dailyfresh/celery_tasks/__pycache__/tasks.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/celery_tasks/__pycache__/tasks.cpython-36.pyc -------------------------------------------------------------------------------- /dailyfresh/celery_tasks/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/celery_tasks/tasks.py -------------------------------------------------------------------------------- /dailyfresh/dailyfresh/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/dailyfresh/__init__.py -------------------------------------------------------------------------------- /dailyfresh/dailyfresh/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/dailyfresh/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /dailyfresh/dailyfresh/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/dailyfresh/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /dailyfresh/dailyfresh/__pycache__/settings.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/dailyfresh/__pycache__/settings.cpython-35.pyc -------------------------------------------------------------------------------- /dailyfresh/dailyfresh/__pycache__/settings.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/dailyfresh/__pycache__/settings.cpython-36.pyc -------------------------------------------------------------------------------- /dailyfresh/dailyfresh/__pycache__/urls.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/dailyfresh/__pycache__/urls.cpython-35.pyc -------------------------------------------------------------------------------- /dailyfresh/dailyfresh/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/dailyfresh/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /dailyfresh/dailyfresh/__pycache__/wsgi.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/dailyfresh/__pycache__/wsgi.cpython-35.pyc -------------------------------------------------------------------------------- /dailyfresh/dailyfresh/__pycache__/wsgi.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/dailyfresh/__pycache__/wsgi.cpython-36.pyc -------------------------------------------------------------------------------- /dailyfresh/dailyfresh/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/dailyfresh/settings.py -------------------------------------------------------------------------------- /dailyfresh/dailyfresh/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/dailyfresh/urls.py -------------------------------------------------------------------------------- /dailyfresh/dailyfresh/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/dailyfresh/wsgi.py -------------------------------------------------------------------------------- /dailyfresh/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dailyfresh/db/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/db/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /dailyfresh/db/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/db/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /dailyfresh/db/__pycache__/base_model.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/db/__pycache__/base_model.cpython-35.pyc -------------------------------------------------------------------------------- /dailyfresh/db/__pycache__/base_model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/db/__pycache__/base_model.cpython-36.pyc -------------------------------------------------------------------------------- /dailyfresh/db/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/db/base_model.py -------------------------------------------------------------------------------- /dailyfresh/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/manage.py -------------------------------------------------------------------------------- /dailyfresh/static/cart(1).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/cart(1).html -------------------------------------------------------------------------------- /dailyfresh/static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/css/main.css -------------------------------------------------------------------------------- /dailyfresh/static/css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/css/reset.css -------------------------------------------------------------------------------- /dailyfresh/static/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/detail.html -------------------------------------------------------------------------------- /dailyfresh/static/images/adv01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/adv01.jpg -------------------------------------------------------------------------------- /dailyfresh/static/images/adv02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/adv02.jpg -------------------------------------------------------------------------------- /dailyfresh/static/images/banner01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/banner01.jpg -------------------------------------------------------------------------------- /dailyfresh/static/images/banner02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/banner02.jpg -------------------------------------------------------------------------------- /dailyfresh/static/images/banner03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/banner03.jpg -------------------------------------------------------------------------------- /dailyfresh/static/images/banner04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/banner04.jpg -------------------------------------------------------------------------------- /dailyfresh/static/images/banner05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/banner05.jpg -------------------------------------------------------------------------------- /dailyfresh/static/images/banner06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/banner06.jpg -------------------------------------------------------------------------------- /dailyfresh/static/images/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/down.png -------------------------------------------------------------------------------- /dailyfresh/static/images/fruit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/fruit.jpg -------------------------------------------------------------------------------- /dailyfresh/static/images/goods.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/goods.jpg -------------------------------------------------------------------------------- /dailyfresh/static/images/goods/goods001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/goods/goods001.jpg -------------------------------------------------------------------------------- /dailyfresh/static/images/goods/goods002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/goods/goods002.jpg -------------------------------------------------------------------------------- /dailyfresh/static/images/goods/goods003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/goods/goods003.jpg -------------------------------------------------------------------------------- /dailyfresh/static/images/goods/goods004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/goods/goods004.jpg -------------------------------------------------------------------------------- /dailyfresh/static/images/goods/goods005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/goods/goods005.jpg -------------------------------------------------------------------------------- /dailyfresh/static/images/goods/goods006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/goods/goods006.jpg -------------------------------------------------------------------------------- /dailyfresh/static/images/goods/goods007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/goods/goods007.jpg -------------------------------------------------------------------------------- /dailyfresh/static/images/goods/goods008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/goods/goods008.jpg -------------------------------------------------------------------------------- /dailyfresh/static/images/goods/goods009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/goods/goods009.jpg -------------------------------------------------------------------------------- /dailyfresh/static/images/goods/goods010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/goods/goods010.jpg -------------------------------------------------------------------------------- /dailyfresh/static/images/goods/goods011.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/goods/goods011.jpg -------------------------------------------------------------------------------- /dailyfresh/static/images/goods/goods012.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/goods/goods012.jpg -------------------------------------------------------------------------------- /dailyfresh/static/images/goods/goods013.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/goods/goods013.jpg -------------------------------------------------------------------------------- /dailyfresh/static/images/goods/goods014.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/goods/goods014.jpg -------------------------------------------------------------------------------- /dailyfresh/static/images/goods/goods015.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/goods/goods015.jpg -------------------------------------------------------------------------------- /dailyfresh/static/images/goods/goods016.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/goods/goods016.jpg -------------------------------------------------------------------------------- /dailyfresh/static/images/goods/goods017.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/goods/goods017.jpg -------------------------------------------------------------------------------- /dailyfresh/static/images/goods/goods018.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/goods/goods018.jpg -------------------------------------------------------------------------------- /dailyfresh/static/images/goods/goods019.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/goods/goods019.jpg -------------------------------------------------------------------------------- /dailyfresh/static/images/goods/goods020.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/goods/goods020.jpg -------------------------------------------------------------------------------- /dailyfresh/static/images/goods/goods021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/goods/goods021.jpg -------------------------------------------------------------------------------- /dailyfresh/static/images/goods/goods022.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/goods/goods022.jpg -------------------------------------------------------------------------------- /dailyfresh/static/images/goods/goods023.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/goods/goods023.jpg -------------------------------------------------------------------------------- /dailyfresh/static/images/goods/goods024.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/goods/goods024.jpg -------------------------------------------------------------------------------- /dailyfresh/static/images/goods/goods025.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/goods/goods025.jpg -------------------------------------------------------------------------------- /dailyfresh/static/images/goods/goods026.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/goods/goods026.jpg -------------------------------------------------------------------------------- /dailyfresh/static/images/goods/goods027.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/goods/goods027.jpg -------------------------------------------------------------------------------- /dailyfresh/static/images/goods/goods028.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/goods/goods028.jpg -------------------------------------------------------------------------------- /dailyfresh/static/images/goods/goods029.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/goods/goods029.jpg -------------------------------------------------------------------------------- /dailyfresh/static/images/goods/goods030.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/goods/goods030.jpg -------------------------------------------------------------------------------- /dailyfresh/static/images/goods/goods031.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/goods/goods031.jpg -------------------------------------------------------------------------------- /dailyfresh/static/images/goods/goods032.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/goods/goods032.jpg -------------------------------------------------------------------------------- /dailyfresh/static/images/goods/goods033.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/goods/goods033.jpg -------------------------------------------------------------------------------- /dailyfresh/static/images/goods/goods034.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/goods/goods034.jpg -------------------------------------------------------------------------------- /dailyfresh/static/images/goods/goods035.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/goods/goods035.jpg -------------------------------------------------------------------------------- /dailyfresh/static/images/goods/goods036.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/goods/goods036.jpg -------------------------------------------------------------------------------- /dailyfresh/static/images/goods/goods037.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/goods/goods037.jpg -------------------------------------------------------------------------------- /dailyfresh/static/images/goods/goods038.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/goods/goods038.jpg -------------------------------------------------------------------------------- /dailyfresh/static/images/goods/goods039.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/goods/goods039.jpg -------------------------------------------------------------------------------- /dailyfresh/static/images/goods/goods040.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/goods/goods040.jpg -------------------------------------------------------------------------------- /dailyfresh/static/images/goods/goods041.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/goods/goods041.jpg -------------------------------------------------------------------------------- /dailyfresh/static/images/goods/goods042.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/goods/goods042.jpg -------------------------------------------------------------------------------- /dailyfresh/static/images/goods02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/goods02.jpg -------------------------------------------------------------------------------- /dailyfresh/static/images/goods_detail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/goods_detail.jpg -------------------------------------------------------------------------------- /dailyfresh/static/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/icons.png -------------------------------------------------------------------------------- /dailyfresh/static/images/icons02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/icons02.png -------------------------------------------------------------------------------- /dailyfresh/static/images/interval_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/interval_line.png -------------------------------------------------------------------------------- /dailyfresh/static/images/left_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/left_bg.jpg -------------------------------------------------------------------------------- /dailyfresh/static/images/login_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/login_banner.png -------------------------------------------------------------------------------- /dailyfresh/static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/logo.png -------------------------------------------------------------------------------- /dailyfresh/static/images/logo02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/logo02.png -------------------------------------------------------------------------------- /dailyfresh/static/images/pay_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/pay_icons.png -------------------------------------------------------------------------------- /dailyfresh/static/images/register_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/register_banner.png -------------------------------------------------------------------------------- /dailyfresh/static/images/shop_cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/shop_cart.png -------------------------------------------------------------------------------- /dailyfresh/static/images/slide.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/slide.jpg -------------------------------------------------------------------------------- /dailyfresh/static/images/slide02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/slide02.jpg -------------------------------------------------------------------------------- /dailyfresh/static/images/slide03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/slide03.jpg -------------------------------------------------------------------------------- /dailyfresh/static/images/slide04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/images/slide04.jpg -------------------------------------------------------------------------------- /dailyfresh/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/index.html -------------------------------------------------------------------------------- /dailyfresh/static/js/jquery-1.12.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/js/jquery-1.12.4.min.js -------------------------------------------------------------------------------- /dailyfresh/static/js/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/js/jquery-ui.min.js -------------------------------------------------------------------------------- /dailyfresh/static/js/jquery.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/js/jquery.cookie.js -------------------------------------------------------------------------------- /dailyfresh/static/js/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/js/register.js -------------------------------------------------------------------------------- /dailyfresh/static/js/slide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/js/slide.js -------------------------------------------------------------------------------- /dailyfresh/static/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/list.html -------------------------------------------------------------------------------- /dailyfresh/static/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/login.html -------------------------------------------------------------------------------- /dailyfresh/static/place_order.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/place_order.html -------------------------------------------------------------------------------- /dailyfresh/static/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/register.html -------------------------------------------------------------------------------- /dailyfresh/static/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/test.html -------------------------------------------------------------------------------- /dailyfresh/static/user_center_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/user_center_info.html -------------------------------------------------------------------------------- /dailyfresh/static/user_center_order.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/user_center_order.html -------------------------------------------------------------------------------- /dailyfresh/static/user_center_site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/static/user_center_site.html -------------------------------------------------------------------------------- /dailyfresh/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/templates/base.html -------------------------------------------------------------------------------- /dailyfresh/templates/base_detail_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/templates/base_detail_list.html -------------------------------------------------------------------------------- /dailyfresh/templates/base_no_cart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/templates/base_no_cart.html -------------------------------------------------------------------------------- /dailyfresh/templates/base_user_center.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/templates/base_user_center.html -------------------------------------------------------------------------------- /dailyfresh/templates/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/templates/detail.html -------------------------------------------------------------------------------- /dailyfresh/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/templates/index.html -------------------------------------------------------------------------------- /dailyfresh/templates/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/templates/list.html -------------------------------------------------------------------------------- /dailyfresh/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/templates/login.html -------------------------------------------------------------------------------- /dailyfresh/templates/search/indexes/goods/goodssku_text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/templates/search/indexes/goods/goodssku_text.txt -------------------------------------------------------------------------------- /dailyfresh/templates/search/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/templates/search/search.html -------------------------------------------------------------------------------- /dailyfresh/templates/search/search1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/templates/search/search1.html -------------------------------------------------------------------------------- /dailyfresh/templates/static_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/templates/static_base.html -------------------------------------------------------------------------------- /dailyfresh/templates/static_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/templates/static_index.html -------------------------------------------------------------------------------- /dailyfresh/templates/user_center_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/templates/user_center_info.html -------------------------------------------------------------------------------- /dailyfresh/templates/user_center_order.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/templates/user_center_order.html -------------------------------------------------------------------------------- /dailyfresh/templates/user_center_site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/templates/user_center_site.html -------------------------------------------------------------------------------- /dailyfresh/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dailyfresh/utils/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/utils/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /dailyfresh/utils/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/utils/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /dailyfresh/utils/__pycache__/mixin.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/utils/__pycache__/mixin.cpython-35.pyc -------------------------------------------------------------------------------- /dailyfresh/utils/__pycache__/mixin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/utils/__pycache__/mixin.cpython-36.pyc -------------------------------------------------------------------------------- /dailyfresh/utils/fdfs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dailyfresh/utils/fdfs/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/utils/fdfs/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /dailyfresh/utils/fdfs/__pycache__/storage.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/utils/fdfs/__pycache__/storage.cpython-35.pyc -------------------------------------------------------------------------------- /dailyfresh/utils/fdfs/client.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/utils/fdfs/client.conf -------------------------------------------------------------------------------- /dailyfresh/utils/fdfs/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/utils/fdfs/storage.py -------------------------------------------------------------------------------- /dailyfresh/utils/mixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/utils/mixin.py -------------------------------------------------------------------------------- /dailyfresh/uwsgi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/uwsgi.ini -------------------------------------------------------------------------------- /dailyfresh/uwsgi.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/uwsgi.log -------------------------------------------------------------------------------- /dailyfresh/uwsgi.pid: -------------------------------------------------------------------------------- 1 | 7453 2 | -------------------------------------------------------------------------------- /dailyfresh/uwsgi2.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/uwsgi2.ini -------------------------------------------------------------------------------- /dailyfresh/uwsgi2.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/uwsgi2.log -------------------------------------------------------------------------------- /dailyfresh/uwsgi2.pid: -------------------------------------------------------------------------------- 1 | 8115 2 | -------------------------------------------------------------------------------- /dailyfresh/whoosh_index/MAIN_WRITELOCK: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dailyfresh/whoosh_index/MAIN_lrwy4q2t15c84ifo.seg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/whoosh_index/MAIN_lrwy4q2t15c84ifo.seg -------------------------------------------------------------------------------- /dailyfresh/whoosh_index/_MAIN_1.toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/dailyfresh/whoosh_index/_MAIN_1.toc -------------------------------------------------------------------------------- /mysql数据库/dailyfresh.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/mysql数据库/dailyfresh.sql -------------------------------------------------------------------------------- /关于系统.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/关于系统.txt -------------------------------------------------------------------------------- /前端静态页面设计/cart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/cart.html -------------------------------------------------------------------------------- /前端静态页面设计/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/css/main.css -------------------------------------------------------------------------------- /前端静态页面设计/css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/css/reset.css -------------------------------------------------------------------------------- /前端静态页面设计/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/detail.html -------------------------------------------------------------------------------- /前端静态页面设计/images/adv01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/images/adv01.jpg -------------------------------------------------------------------------------- /前端静态页面设计/images/adv02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/images/adv02.jpg -------------------------------------------------------------------------------- /前端静态页面设计/images/banner01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/images/banner01.jpg -------------------------------------------------------------------------------- /前端静态页面设计/images/banner02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/images/banner02.jpg -------------------------------------------------------------------------------- /前端静态页面设计/images/banner03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/images/banner03.jpg -------------------------------------------------------------------------------- /前端静态页面设计/images/banner04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/images/banner04.jpg -------------------------------------------------------------------------------- /前端静态页面设计/images/banner05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/images/banner05.jpg -------------------------------------------------------------------------------- /前端静态页面设计/images/banner06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/images/banner06.jpg -------------------------------------------------------------------------------- /前端静态页面设计/images/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/images/down.png -------------------------------------------------------------------------------- /前端静态页面设计/images/fruit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/images/fruit.jpg -------------------------------------------------------------------------------- /前端静态页面设计/images/goods.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/images/goods.jpg -------------------------------------------------------------------------------- /前端静态页面设计/images/goods/goods001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/images/goods/goods001.jpg -------------------------------------------------------------------------------- /前端静态页面设计/images/goods/goods002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/images/goods/goods002.jpg -------------------------------------------------------------------------------- /前端静态页面设计/images/goods/goods003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/images/goods/goods003.jpg -------------------------------------------------------------------------------- /前端静态页面设计/images/goods/goods004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/images/goods/goods004.jpg -------------------------------------------------------------------------------- /前端静态页面设计/images/goods/goods005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/images/goods/goods005.jpg -------------------------------------------------------------------------------- /前端静态页面设计/images/goods/goods006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/images/goods/goods006.jpg -------------------------------------------------------------------------------- /前端静态页面设计/images/goods/goods007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/images/goods/goods007.jpg -------------------------------------------------------------------------------- /前端静态页面设计/images/goods/goods008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/images/goods/goods008.jpg -------------------------------------------------------------------------------- /前端静态页面设计/images/goods/goods009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/images/goods/goods009.jpg -------------------------------------------------------------------------------- /前端静态页面设计/images/goods/goods010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/images/goods/goods010.jpg -------------------------------------------------------------------------------- /前端静态页面设计/images/goods/goods011.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/images/goods/goods011.jpg -------------------------------------------------------------------------------- /前端静态页面设计/images/goods/goods012.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/images/goods/goods012.jpg -------------------------------------------------------------------------------- /前端静态页面设计/images/goods/goods013.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/images/goods/goods013.jpg -------------------------------------------------------------------------------- /前端静态页面设计/images/goods/goods014.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/images/goods/goods014.jpg -------------------------------------------------------------------------------- /前端静态页面设计/images/goods/goods015.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/images/goods/goods015.jpg -------------------------------------------------------------------------------- /前端静态页面设计/images/goods/goods016.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/images/goods/goods016.jpg -------------------------------------------------------------------------------- /前端静态页面设计/images/goods/goods017.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/images/goods/goods017.jpg -------------------------------------------------------------------------------- /前端静态页面设计/images/goods/goods018.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/images/goods/goods018.jpg -------------------------------------------------------------------------------- /前端静态页面设计/images/goods/goods019.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/images/goods/goods019.jpg -------------------------------------------------------------------------------- /前端静态页面设计/images/goods/goods020.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/images/goods/goods020.jpg -------------------------------------------------------------------------------- /前端静态页面设计/images/goods/goods021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/images/goods/goods021.jpg -------------------------------------------------------------------------------- /前端静态页面设计/images/goods02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/images/goods02.jpg -------------------------------------------------------------------------------- /前端静态页面设计/images/goods_detail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/images/goods_detail.jpg -------------------------------------------------------------------------------- /前端静态页面设计/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/images/icons.png -------------------------------------------------------------------------------- /前端静态页面设计/images/icons02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/images/icons02.png -------------------------------------------------------------------------------- /前端静态页面设计/images/interval_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/images/interval_line.png -------------------------------------------------------------------------------- /前端静态页面设计/images/left_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/images/left_bg.jpg -------------------------------------------------------------------------------- /前端静态页面设计/images/login_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/images/login_banner.png -------------------------------------------------------------------------------- /前端静态页面设计/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/images/logo.png -------------------------------------------------------------------------------- /前端静态页面设计/images/logo02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/images/logo02.png -------------------------------------------------------------------------------- /前端静态页面设计/images/pay_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/images/pay_icons.png -------------------------------------------------------------------------------- /前端静态页面设计/images/register_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/images/register_banner.png -------------------------------------------------------------------------------- /前端静态页面设计/images/shop_cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/images/shop_cart.png -------------------------------------------------------------------------------- /前端静态页面设计/images/slide.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/images/slide.jpg -------------------------------------------------------------------------------- /前端静态页面设计/images/slide02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/images/slide02.jpg -------------------------------------------------------------------------------- /前端静态页面设计/images/slide03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/images/slide03.jpg -------------------------------------------------------------------------------- /前端静态页面设计/images/slide04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/images/slide04.jpg -------------------------------------------------------------------------------- /前端静态页面设计/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/index.html -------------------------------------------------------------------------------- /前端静态页面设计/js/jquery-1.12.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/js/jquery-1.12.4.min.js -------------------------------------------------------------------------------- /前端静态页面设计/js/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/js/jquery-ui.min.js -------------------------------------------------------------------------------- /前端静态页面设计/js/jquery.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/js/jquery.cookie.js -------------------------------------------------------------------------------- /前端静态页面设计/js/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/js/register.js -------------------------------------------------------------------------------- /前端静态页面设计/js/slide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/js/slide.js -------------------------------------------------------------------------------- /前端静态页面设计/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/list.html -------------------------------------------------------------------------------- /前端静态页面设计/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/login.html -------------------------------------------------------------------------------- /前端静态页面设计/place_order.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/place_order.html -------------------------------------------------------------------------------- /前端静态页面设计/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/register.html -------------------------------------------------------------------------------- /前端静态页面设计/user_center_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/user_center_info.html -------------------------------------------------------------------------------- /前端静态页面设计/user_center_order.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/user_center_order.html -------------------------------------------------------------------------------- /前端静态页面设计/user_center_site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/user_center_site.html -------------------------------------------------------------------------------- /前端静态页面设计/页面说明.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/前端静态页面设计/页面说明.txt -------------------------------------------------------------------------------- /项目文档/python电商项目.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/项目文档/python电商项目.docx -------------------------------------------------------------------------------- /项目文档/项目说明文档.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjianlin1985/Python_Django_Alipay_WebShopping/HEAD/项目文档/项目说明文档.docx --------------------------------------------------------------------------------