├── .gitattributes ├── .gitignore ├── .idea ├── dailyfresh.iml ├── encodings.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── README.md ├── apps ├── __init__.py ├── cart │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── goods │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── search_indexes.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── orders │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20181029_2124.py │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py └── users │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ ├── 0001_initial.py │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── celery_tasks ├── __init__.py └── tasks.py ├── dailyfresh ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py ├── db ├── README.md ├── __init__.py ├── apps │ ├── __init__.py │ ├── cart │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── goods │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── orders │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto_20181029_2124.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ └── users │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py ├── base_model.py ├── celery_tasks │ ├── __init__.py │ └── tasks.py ├── dailyfresh │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── db │ ├── __init__.py │ └── base_model.py ├── manage.py ├── static │ ├── css │ │ ├── main.css │ │ └── reset.css │ ├── 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 │ ├── js │ │ ├── jquery-1.12.4.min.js │ │ ├── jquery-ui.min.js │ │ ├── jquery.cookie.js │ │ ├── register.js │ │ └── slide.js │ └── 页面说明.txt ├── templates │ ├── base.html │ ├── base_detail_list.html │ ├── base_search_less.html │ ├── base_user_center.html │ ├── cart.html │ ├── detail.html │ ├── index.html │ ├── list.html │ ├── login.html │ ├── place_order.html │ ├── register.html │ ├── user_center_info.html │ ├── user_center_order.html │ └── user_center_site.html └── utils │ ├── __init__.py │ ├── fdfs │ ├── __init__.py │ ├── client.conf │ └── storage.py │ └── mixin.py ├── manage.py ├── static ├── css │ ├── main.css │ └── reset.css ├── 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 ├── js │ ├── jquery-1.12.4.min.js │ ├── jquery-ui.min.js │ ├── jquery.cookie.js │ ├── register.js │ └── slide.js └── 页面说明.txt ├── templates ├── base.html ├── base_detail_list.html ├── base_search_less.html ├── base_user_center.html ├── cart.html ├── detail.html ├── index.html ├── list.html ├── login.html ├── place_order.html ├── register.html ├── search │ ├── indexes │ │ └── goods │ │ │ └── goodssku_text.txt │ ├── search.html │ └── search1.html ├── user_center_info.html ├── user_center_order.html └── user_center_site.html ├── utils ├── __init__.py ├── fdfs │ ├── __init__.py │ ├── client.conf │ └── storage.py └── mixin.py └── whoosh_index ├── MAIN_4ez53iwkso49ryps.seg ├── MAIN_7501evhz38ro0ci7.seg ├── MAIN_7bfm532uq8x7ebuh.seg ├── MAIN_88n9kvizudj2zdc8.seg ├── MAIN_WRITELOCK ├── MAIN_njhnzhp2rxogwv7g.seg ├── MAIN_oxx53gkajyhcic3n.seg ├── MAIN_oz9vxzqyp11l2irl.seg ├── MAIN_re3y36s4wykew3hp.seg ├── MAIN_sum1ye52xzsniiui.seg ├── MAIN_szuswmf87sutgix0.seg ├── _MAIN_1.toc ├── _MAIN_5.toc └── _MAIN_9.toc /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/dailyfresh.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/.idea/dailyfresh.iml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # dailyfresh 2 | -------------------------------------------------------------------------------- /apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/cart/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/cart/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/apps/cart/admin.py -------------------------------------------------------------------------------- /apps/cart/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/apps/cart/apps.py -------------------------------------------------------------------------------- /apps/cart/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/cart/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/apps/cart/tests.py -------------------------------------------------------------------------------- /apps/cart/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/apps/cart/urls.py -------------------------------------------------------------------------------- /apps/cart/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/apps/cart/views.py -------------------------------------------------------------------------------- /apps/goods/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/goods/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/apps/goods/admin.py -------------------------------------------------------------------------------- /apps/goods/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/apps/goods/apps.py -------------------------------------------------------------------------------- /apps/goods/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/apps/goods/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/goods/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/goods/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/apps/goods/models.py -------------------------------------------------------------------------------- /apps/goods/search_indexes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/apps/goods/search_indexes.py -------------------------------------------------------------------------------- /apps/goods/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/apps/goods/tests.py -------------------------------------------------------------------------------- /apps/goods/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/apps/goods/urls.py -------------------------------------------------------------------------------- /apps/goods/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/apps/goods/views.py -------------------------------------------------------------------------------- /apps/orders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/orders/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/apps/orders/admin.py -------------------------------------------------------------------------------- /apps/orders/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/apps/orders/apps.py -------------------------------------------------------------------------------- /apps/orders/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/apps/orders/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/orders/migrations/0002_auto_20181029_2124.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/apps/orders/migrations/0002_auto_20181029_2124.py -------------------------------------------------------------------------------- /apps/orders/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/orders/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/apps/orders/models.py -------------------------------------------------------------------------------- /apps/orders/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/apps/orders/tests.py -------------------------------------------------------------------------------- /apps/orders/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/apps/orders/urls.py -------------------------------------------------------------------------------- /apps/orders/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/apps/orders/views.py -------------------------------------------------------------------------------- /apps/users/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/users/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/apps/users/admin.py -------------------------------------------------------------------------------- /apps/users/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/apps/users/apps.py -------------------------------------------------------------------------------- /apps/users/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/apps/users/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/users/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/users/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/apps/users/models.py -------------------------------------------------------------------------------- /apps/users/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/apps/users/tests.py -------------------------------------------------------------------------------- /apps/users/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/apps/users/urls.py -------------------------------------------------------------------------------- /apps/users/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/apps/users/views.py -------------------------------------------------------------------------------- /celery_tasks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /celery_tasks/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/celery_tasks/tasks.py -------------------------------------------------------------------------------- /dailyfresh/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dailyfresh/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/dailyfresh/settings.py -------------------------------------------------------------------------------- /dailyfresh/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/dailyfresh/urls.py -------------------------------------------------------------------------------- /dailyfresh/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/dailyfresh/wsgi.py -------------------------------------------------------------------------------- /db/README.md: -------------------------------------------------------------------------------- 1 | # dailyfresh 2 | -------------------------------------------------------------------------------- /db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db/apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db/apps/cart/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db/apps/cart/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/apps/cart/admin.py -------------------------------------------------------------------------------- /db/apps/cart/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/apps/cart/apps.py -------------------------------------------------------------------------------- /db/apps/cart/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db/apps/cart/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/apps/cart/tests.py -------------------------------------------------------------------------------- /db/apps/cart/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/apps/cart/urls.py -------------------------------------------------------------------------------- /db/apps/cart/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/apps/cart/views.py -------------------------------------------------------------------------------- /db/apps/goods/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db/apps/goods/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/apps/goods/admin.py -------------------------------------------------------------------------------- /db/apps/goods/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/apps/goods/apps.py -------------------------------------------------------------------------------- /db/apps/goods/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/apps/goods/migrations/0001_initial.py -------------------------------------------------------------------------------- /db/apps/goods/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db/apps/goods/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/apps/goods/models.py -------------------------------------------------------------------------------- /db/apps/goods/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/apps/goods/tests.py -------------------------------------------------------------------------------- /db/apps/goods/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/apps/goods/urls.py -------------------------------------------------------------------------------- /db/apps/goods/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/apps/goods/views.py -------------------------------------------------------------------------------- /db/apps/orders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db/apps/orders/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/apps/orders/admin.py -------------------------------------------------------------------------------- /db/apps/orders/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/apps/orders/apps.py -------------------------------------------------------------------------------- /db/apps/orders/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/apps/orders/migrations/0001_initial.py -------------------------------------------------------------------------------- /db/apps/orders/migrations/0002_auto_20181029_2124.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/apps/orders/migrations/0002_auto_20181029_2124.py -------------------------------------------------------------------------------- /db/apps/orders/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db/apps/orders/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/apps/orders/models.py -------------------------------------------------------------------------------- /db/apps/orders/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/apps/orders/tests.py -------------------------------------------------------------------------------- /db/apps/orders/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/apps/orders/urls.py -------------------------------------------------------------------------------- /db/apps/orders/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /db/apps/users/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db/apps/users/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/apps/users/admin.py -------------------------------------------------------------------------------- /db/apps/users/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/apps/users/apps.py -------------------------------------------------------------------------------- /db/apps/users/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/apps/users/migrations/0001_initial.py -------------------------------------------------------------------------------- /db/apps/users/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db/apps/users/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/apps/users/models.py -------------------------------------------------------------------------------- /db/apps/users/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/apps/users/tests.py -------------------------------------------------------------------------------- /db/apps/users/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/apps/users/urls.py -------------------------------------------------------------------------------- /db/apps/users/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/apps/users/views.py -------------------------------------------------------------------------------- /db/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/base_model.py -------------------------------------------------------------------------------- /db/celery_tasks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db/celery_tasks/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/celery_tasks/tasks.py -------------------------------------------------------------------------------- /db/dailyfresh/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db/dailyfresh/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/dailyfresh/settings.py -------------------------------------------------------------------------------- /db/dailyfresh/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/dailyfresh/urls.py -------------------------------------------------------------------------------- /db/dailyfresh/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/dailyfresh/wsgi.py -------------------------------------------------------------------------------- /db/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db/db/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/db/base_model.py -------------------------------------------------------------------------------- /db/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/manage.py -------------------------------------------------------------------------------- /db/static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/static/css/main.css -------------------------------------------------------------------------------- /db/static/css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/static/css/reset.css -------------------------------------------------------------------------------- /db/static/images/adv01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/static/images/adv01.jpg -------------------------------------------------------------------------------- /db/static/images/adv02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/static/images/adv02.jpg -------------------------------------------------------------------------------- /db/static/images/banner01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/static/images/banner01.jpg -------------------------------------------------------------------------------- /db/static/images/banner02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/static/images/banner02.jpg -------------------------------------------------------------------------------- /db/static/images/banner03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/static/images/banner03.jpg -------------------------------------------------------------------------------- /db/static/images/banner04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/static/images/banner04.jpg -------------------------------------------------------------------------------- /db/static/images/banner05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/static/images/banner05.jpg -------------------------------------------------------------------------------- /db/static/images/banner06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/static/images/banner06.jpg -------------------------------------------------------------------------------- /db/static/images/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/static/images/down.png -------------------------------------------------------------------------------- /db/static/images/fruit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/static/images/fruit.jpg -------------------------------------------------------------------------------- /db/static/images/goods.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/static/images/goods.jpg -------------------------------------------------------------------------------- /db/static/images/goods/goods001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/static/images/goods/goods001.jpg -------------------------------------------------------------------------------- /db/static/images/goods/goods002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/static/images/goods/goods002.jpg -------------------------------------------------------------------------------- /db/static/images/goods/goods003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/static/images/goods/goods003.jpg -------------------------------------------------------------------------------- /db/static/images/goods/goods004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/static/images/goods/goods004.jpg -------------------------------------------------------------------------------- /db/static/images/goods/goods005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/static/images/goods/goods005.jpg -------------------------------------------------------------------------------- /db/static/images/goods/goods006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/static/images/goods/goods006.jpg -------------------------------------------------------------------------------- /db/static/images/goods/goods007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/static/images/goods/goods007.jpg -------------------------------------------------------------------------------- /db/static/images/goods/goods008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/static/images/goods/goods008.jpg -------------------------------------------------------------------------------- /db/static/images/goods/goods009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/static/images/goods/goods009.jpg -------------------------------------------------------------------------------- /db/static/images/goods/goods010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/static/images/goods/goods010.jpg -------------------------------------------------------------------------------- /db/static/images/goods/goods011.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/static/images/goods/goods011.jpg -------------------------------------------------------------------------------- /db/static/images/goods/goods012.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/static/images/goods/goods012.jpg -------------------------------------------------------------------------------- /db/static/images/goods/goods013.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/static/images/goods/goods013.jpg -------------------------------------------------------------------------------- /db/static/images/goods/goods014.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/static/images/goods/goods014.jpg -------------------------------------------------------------------------------- /db/static/images/goods/goods015.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/static/images/goods/goods015.jpg -------------------------------------------------------------------------------- /db/static/images/goods/goods016.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/static/images/goods/goods016.jpg -------------------------------------------------------------------------------- /db/static/images/goods/goods017.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/static/images/goods/goods017.jpg -------------------------------------------------------------------------------- /db/static/images/goods/goods018.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/static/images/goods/goods018.jpg -------------------------------------------------------------------------------- /db/static/images/goods/goods019.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/static/images/goods/goods019.jpg -------------------------------------------------------------------------------- /db/static/images/goods/goods020.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/static/images/goods/goods020.jpg -------------------------------------------------------------------------------- /db/static/images/goods/goods021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/static/images/goods/goods021.jpg -------------------------------------------------------------------------------- /db/static/images/goods02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/static/images/goods02.jpg -------------------------------------------------------------------------------- /db/static/images/goods_detail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/static/images/goods_detail.jpg -------------------------------------------------------------------------------- /db/static/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/static/images/icons.png -------------------------------------------------------------------------------- /db/static/images/icons02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/static/images/icons02.png -------------------------------------------------------------------------------- /db/static/images/interval_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/static/images/interval_line.png -------------------------------------------------------------------------------- /db/static/images/left_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/static/images/left_bg.jpg -------------------------------------------------------------------------------- /db/static/images/login_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/static/images/login_banner.png -------------------------------------------------------------------------------- /db/static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/static/images/logo.png -------------------------------------------------------------------------------- /db/static/images/logo02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/static/images/logo02.png -------------------------------------------------------------------------------- /db/static/images/pay_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/static/images/pay_icons.png -------------------------------------------------------------------------------- /db/static/images/register_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/static/images/register_banner.png -------------------------------------------------------------------------------- /db/static/images/shop_cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/static/images/shop_cart.png -------------------------------------------------------------------------------- /db/static/images/slide.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/static/images/slide.jpg -------------------------------------------------------------------------------- /db/static/images/slide02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/static/images/slide02.jpg -------------------------------------------------------------------------------- /db/static/images/slide03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/static/images/slide03.jpg -------------------------------------------------------------------------------- /db/static/images/slide04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/static/images/slide04.jpg -------------------------------------------------------------------------------- /db/static/js/jquery-1.12.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/static/js/jquery-1.12.4.min.js -------------------------------------------------------------------------------- /db/static/js/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/static/js/jquery-ui.min.js -------------------------------------------------------------------------------- /db/static/js/jquery.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/static/js/jquery.cookie.js -------------------------------------------------------------------------------- /db/static/js/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/static/js/register.js -------------------------------------------------------------------------------- /db/static/js/slide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/static/js/slide.js -------------------------------------------------------------------------------- /db/static/页面说明.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/static/页面说明.txt -------------------------------------------------------------------------------- /db/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/templates/base.html -------------------------------------------------------------------------------- /db/templates/base_detail_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/templates/base_detail_list.html -------------------------------------------------------------------------------- /db/templates/base_search_less.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/templates/base_search_less.html -------------------------------------------------------------------------------- /db/templates/base_user_center.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/templates/base_user_center.html -------------------------------------------------------------------------------- /db/templates/cart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/templates/cart.html -------------------------------------------------------------------------------- /db/templates/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/templates/detail.html -------------------------------------------------------------------------------- /db/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/templates/index.html -------------------------------------------------------------------------------- /db/templates/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/templates/list.html -------------------------------------------------------------------------------- /db/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/templates/login.html -------------------------------------------------------------------------------- /db/templates/place_order.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/templates/place_order.html -------------------------------------------------------------------------------- /db/templates/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/templates/register.html -------------------------------------------------------------------------------- /db/templates/user_center_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/templates/user_center_info.html -------------------------------------------------------------------------------- /db/templates/user_center_order.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/templates/user_center_order.html -------------------------------------------------------------------------------- /db/templates/user_center_site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/templates/user_center_site.html -------------------------------------------------------------------------------- /db/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db/utils/fdfs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db/utils/fdfs/client.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/utils/fdfs/client.conf -------------------------------------------------------------------------------- /db/utils/fdfs/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/utils/fdfs/storage.py -------------------------------------------------------------------------------- /db/utils/mixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/db/utils/mixin.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/manage.py -------------------------------------------------------------------------------- /static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/static/css/main.css -------------------------------------------------------------------------------- /static/css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/static/css/reset.css -------------------------------------------------------------------------------- /static/images/adv01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/static/images/adv01.jpg -------------------------------------------------------------------------------- /static/images/adv02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/static/images/adv02.jpg -------------------------------------------------------------------------------- /static/images/banner01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/static/images/banner01.jpg -------------------------------------------------------------------------------- /static/images/banner02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/static/images/banner02.jpg -------------------------------------------------------------------------------- /static/images/banner03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/static/images/banner03.jpg -------------------------------------------------------------------------------- /static/images/banner04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/static/images/banner04.jpg -------------------------------------------------------------------------------- /static/images/banner05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/static/images/banner05.jpg -------------------------------------------------------------------------------- /static/images/banner06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/static/images/banner06.jpg -------------------------------------------------------------------------------- /static/images/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/static/images/down.png -------------------------------------------------------------------------------- /static/images/fruit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/static/images/fruit.jpg -------------------------------------------------------------------------------- /static/images/goods.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/static/images/goods.jpg -------------------------------------------------------------------------------- /static/images/goods/goods001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/static/images/goods/goods001.jpg -------------------------------------------------------------------------------- /static/images/goods/goods002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/static/images/goods/goods002.jpg -------------------------------------------------------------------------------- /static/images/goods/goods003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/static/images/goods/goods003.jpg -------------------------------------------------------------------------------- /static/images/goods/goods004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/static/images/goods/goods004.jpg -------------------------------------------------------------------------------- /static/images/goods/goods005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/static/images/goods/goods005.jpg -------------------------------------------------------------------------------- /static/images/goods/goods006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/static/images/goods/goods006.jpg -------------------------------------------------------------------------------- /static/images/goods/goods007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/static/images/goods/goods007.jpg -------------------------------------------------------------------------------- /static/images/goods/goods008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/static/images/goods/goods008.jpg -------------------------------------------------------------------------------- /static/images/goods/goods009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/static/images/goods/goods009.jpg -------------------------------------------------------------------------------- /static/images/goods/goods010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/static/images/goods/goods010.jpg -------------------------------------------------------------------------------- /static/images/goods/goods011.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/static/images/goods/goods011.jpg -------------------------------------------------------------------------------- /static/images/goods/goods012.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/static/images/goods/goods012.jpg -------------------------------------------------------------------------------- /static/images/goods/goods013.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/static/images/goods/goods013.jpg -------------------------------------------------------------------------------- /static/images/goods/goods014.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/static/images/goods/goods014.jpg -------------------------------------------------------------------------------- /static/images/goods/goods015.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/static/images/goods/goods015.jpg -------------------------------------------------------------------------------- /static/images/goods/goods016.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/static/images/goods/goods016.jpg -------------------------------------------------------------------------------- /static/images/goods/goods017.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/static/images/goods/goods017.jpg -------------------------------------------------------------------------------- /static/images/goods/goods018.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/static/images/goods/goods018.jpg -------------------------------------------------------------------------------- /static/images/goods/goods019.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/static/images/goods/goods019.jpg -------------------------------------------------------------------------------- /static/images/goods/goods020.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/static/images/goods/goods020.jpg -------------------------------------------------------------------------------- /static/images/goods/goods021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/static/images/goods/goods021.jpg -------------------------------------------------------------------------------- /static/images/goods02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/static/images/goods02.jpg -------------------------------------------------------------------------------- /static/images/goods_detail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/static/images/goods_detail.jpg -------------------------------------------------------------------------------- /static/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/static/images/icons.png -------------------------------------------------------------------------------- /static/images/icons02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/static/images/icons02.png -------------------------------------------------------------------------------- /static/images/interval_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/static/images/interval_line.png -------------------------------------------------------------------------------- /static/images/left_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/static/images/left_bg.jpg -------------------------------------------------------------------------------- /static/images/login_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/static/images/login_banner.png -------------------------------------------------------------------------------- /static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/static/images/logo.png -------------------------------------------------------------------------------- /static/images/logo02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/static/images/logo02.png -------------------------------------------------------------------------------- /static/images/pay_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/static/images/pay_icons.png -------------------------------------------------------------------------------- /static/images/register_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/static/images/register_banner.png -------------------------------------------------------------------------------- /static/images/shop_cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/static/images/shop_cart.png -------------------------------------------------------------------------------- /static/images/slide.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/static/images/slide.jpg -------------------------------------------------------------------------------- /static/images/slide02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/static/images/slide02.jpg -------------------------------------------------------------------------------- /static/images/slide03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/static/images/slide03.jpg -------------------------------------------------------------------------------- /static/images/slide04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/static/images/slide04.jpg -------------------------------------------------------------------------------- /static/js/jquery-1.12.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/static/js/jquery-1.12.4.min.js -------------------------------------------------------------------------------- /static/js/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/static/js/jquery-ui.min.js -------------------------------------------------------------------------------- /static/js/jquery.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/static/js/jquery.cookie.js -------------------------------------------------------------------------------- /static/js/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/static/js/register.js -------------------------------------------------------------------------------- /static/js/slide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/static/js/slide.js -------------------------------------------------------------------------------- /static/页面说明.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/static/页面说明.txt -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/base_detail_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/templates/base_detail_list.html -------------------------------------------------------------------------------- /templates/base_search_less.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/templates/base_search_less.html -------------------------------------------------------------------------------- /templates/base_user_center.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/templates/base_user_center.html -------------------------------------------------------------------------------- /templates/cart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/templates/cart.html -------------------------------------------------------------------------------- /templates/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/templates/detail.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/templates/list.html -------------------------------------------------------------------------------- /templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/templates/login.html -------------------------------------------------------------------------------- /templates/place_order.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/templates/place_order.html -------------------------------------------------------------------------------- /templates/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/templates/register.html -------------------------------------------------------------------------------- /templates/search/indexes/goods/goodssku_text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/templates/search/indexes/goods/goodssku_text.txt -------------------------------------------------------------------------------- /templates/search/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/templates/search/search.html -------------------------------------------------------------------------------- /templates/search/search1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/templates/search/search1.html -------------------------------------------------------------------------------- /templates/user_center_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/templates/user_center_info.html -------------------------------------------------------------------------------- /templates/user_center_order.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/templates/user_center_order.html -------------------------------------------------------------------------------- /templates/user_center_site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/templates/user_center_site.html -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/fdfs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/fdfs/client.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/utils/fdfs/client.conf -------------------------------------------------------------------------------- /utils/fdfs/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/utils/fdfs/storage.py -------------------------------------------------------------------------------- /utils/mixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/utils/mixin.py -------------------------------------------------------------------------------- /whoosh_index/MAIN_4ez53iwkso49ryps.seg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/whoosh_index/MAIN_4ez53iwkso49ryps.seg -------------------------------------------------------------------------------- /whoosh_index/MAIN_7501evhz38ro0ci7.seg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/whoosh_index/MAIN_7501evhz38ro0ci7.seg -------------------------------------------------------------------------------- /whoosh_index/MAIN_7bfm532uq8x7ebuh.seg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/whoosh_index/MAIN_7bfm532uq8x7ebuh.seg -------------------------------------------------------------------------------- /whoosh_index/MAIN_88n9kvizudj2zdc8.seg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/whoosh_index/MAIN_88n9kvizudj2zdc8.seg -------------------------------------------------------------------------------- /whoosh_index/MAIN_WRITELOCK: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /whoosh_index/MAIN_njhnzhp2rxogwv7g.seg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/whoosh_index/MAIN_njhnzhp2rxogwv7g.seg -------------------------------------------------------------------------------- /whoosh_index/MAIN_oxx53gkajyhcic3n.seg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/whoosh_index/MAIN_oxx53gkajyhcic3n.seg -------------------------------------------------------------------------------- /whoosh_index/MAIN_oz9vxzqyp11l2irl.seg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/whoosh_index/MAIN_oz9vxzqyp11l2irl.seg -------------------------------------------------------------------------------- /whoosh_index/MAIN_re3y36s4wykew3hp.seg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/whoosh_index/MAIN_re3y36s4wykew3hp.seg -------------------------------------------------------------------------------- /whoosh_index/MAIN_sum1ye52xzsniiui.seg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/whoosh_index/MAIN_sum1ye52xzsniiui.seg -------------------------------------------------------------------------------- /whoosh_index/MAIN_szuswmf87sutgix0.seg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/whoosh_index/MAIN_szuswmf87sutgix0.seg -------------------------------------------------------------------------------- /whoosh_index/_MAIN_1.toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/whoosh_index/_MAIN_1.toc -------------------------------------------------------------------------------- /whoosh_index/_MAIN_5.toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/whoosh_index/_MAIN_5.toc -------------------------------------------------------------------------------- /whoosh_index/_MAIN_9.toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddlee/dailyfresh/HEAD/whoosh_index/_MAIN_9.toc --------------------------------------------------------------------------------