├── .gitattributes ├── PygElecSystem ├── .idea │ ├── PygElecSystem.iml │ ├── modules.xml │ └── workspace.xml ├── PygElecSystem ├── conf │ └── app.conf ├── controllers │ ├── cart.go │ ├── default.go │ ├── goods.go │ ├── order.go │ └── user.go ├── main.go ├── models │ └── model.go ├── routers │ └── router.go ├── static │ ├── css │ │ ├── all.css │ │ ├── main.css │ │ ├── pages-JD-index.css │ │ ├── pages-login.css │ │ └── reset.css │ ├── fonts │ │ ├── icon-moon.eot │ │ ├── icon-moon.svg │ │ ├── icon-moon.ttf │ │ ├── icon-moon.woff │ │ ├── icon-pc.eot │ │ ├── icon-pc.svg │ │ ├── icon-pc.ttf │ │ ├── icon-pc.woff │ │ ├── icon-tb.eot │ │ ├── icon-tb.svg │ │ ├── icon-tb.ttf │ │ ├── icon-tb.woff │ │ ├── icon-touch.eot │ │ ├── icon-touch.svg │ │ ├── icon-touch.ttf │ │ └── icon-touch.woff │ ├── goodsType.sql │ ├── images │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── _ │ │ │ ├── 01.png │ │ │ ├── b1.png │ │ │ ├── b2.png │ │ │ ├── b3.png │ │ │ ├── banner.png │ │ │ ├── bg-who1.png │ │ │ ├── buy001.jpg │ │ │ ├── buy002.jpg │ │ │ ├── buy01.jpg │ │ │ ├── car.png │ │ │ ├── clock.png │ │ │ ├── code.png │ │ │ ├── cooperation_banner.jpg │ │ │ ├── down-icon.png │ │ │ ├── dp01.png │ │ │ ├── dp02.png │ │ │ ├── dp03.png │ │ │ ├── dp04.png │ │ │ ├── empty_heart.png │ │ │ ├── erweima.jpg │ │ │ ├── fail.png │ │ │ ├── gocart.jpg │ │ │ ├── gocart01.jpg │ │ │ ├── goods1.jpg │ │ │ ├── gotop.png │ │ │ ├── icon-red.png │ │ │ ├── icon.png │ │ │ ├── intro01.png │ │ │ ├── intro02.png │ │ │ ├── intro03.png │ │ │ ├── itemlike01.png │ │ │ ├── itemlike02.png │ │ │ ├── itemlike03.png │ │ │ ├── itemlike04.png │ │ │ ├── itemlike05.png │ │ │ ├── itemlike06.png │ │ │ ├── l-m01.png │ │ │ ├── list.jpg │ │ │ ├── list.png │ │ │ ├── login-bg.png │ │ │ ├── manage-bg.png │ │ │ ├── mobile01.png │ │ │ ├── mobile02.png │ │ │ ├── mobile03.png │ │ │ ├── mobile04.png │ │ │ ├── mobile05.png │ │ │ ├── mobile06.png │ │ │ ├── part01.png │ │ │ ├── part02.png │ │ │ ├── part03.png │ │ │ ├── pay1.jpg │ │ │ ├── pay10.jpg │ │ │ ├── pay11.jpg │ │ │ ├── pay12.jpg │ │ │ ├── pay13.jpg │ │ │ ├── pay14.jpg │ │ │ ├── pay15.jpg │ │ │ ├── pay16.jpg │ │ │ ├── pay17.jpg │ │ │ ├── pay18.jpg │ │ │ ├── pay19.jpg │ │ │ ├── pay2.jpg │ │ │ ├── pay20.jpg │ │ │ ├── pay21.jpg │ │ │ ├── pay22.jpg │ │ │ ├── pay3.jpg │ │ │ ├── pay4.jpg │ │ │ ├── pay5.jpg │ │ │ ├── phone-bg.png │ │ │ ├── phone01.png │ │ │ ├── phone02.png │ │ │ ├── phone03.png │ │ │ ├── phone04.png │ │ │ ├── phone05.png │ │ │ ├── phone06.png │ │ │ ├── phone07.png │ │ │ ├── phone08.png │ │ │ ├── phone09.png │ │ │ ├── phone10.png │ │ │ ├── phone11.png │ │ │ ├── phone12.png │ │ │ ├── phone13.png │ │ │ ├── phone14.png │ │ │ ├── photo.jpg │ │ │ ├── photo.png │ │ │ ├── photo_icon.png │ │ │ ├── right.png │ │ │ ├── s1.png │ │ │ ├── s2.png │ │ │ ├── s3.png │ │ │ ├── sampling_head.jpg │ │ │ ├── seckillbg.png │ │ │ ├── shi_heart.png │ │ │ ├── shop-intro.png │ │ │ ├── shop-logo.png │ │ │ ├── shop-part.png │ │ │ ├── star.png │ │ │ ├── t.jpg │ │ │ ├── title_bg.jpg │ │ │ └── y24.png │ │ ├── account.png │ │ ├── ad.jpg │ │ ├── ad1.png │ │ ├── adv01.jpg │ │ ├── adv02.jpg │ │ ├── ali.png │ │ ├── banner01.jpg │ │ ├── banner02.jpg │ │ ├── banner03.jpg │ │ ├── banner04.jpg │ │ ├── banner05.jpg │ │ ├── banner06.jpg │ │ ├── banner1.jpg │ │ ├── banner1.png │ │ ├── banner2.jpg │ │ ├── banner3.jpg │ │ ├── banner4.jpg │ │ ├── barrow.png │ │ ├── bg0.png │ │ ├── bg2.png │ │ ├── bg3.png │ │ ├── brand01.png │ │ ├── brand02.png │ │ ├── brand03.png │ │ ├── brand04.png │ │ ├── brand05.png │ │ ├── brand06.png │ │ ├── brand07.png │ │ ├── brand08.png │ │ ├── brand09.png │ │ ├── brand10.png │ │ ├── brand11.png │ │ ├── brand12.png │ │ ├── brand13.png │ │ ├── brand_03.png │ │ ├── brand_05.png │ │ ├── brand_07.png │ │ ├── brand_09.png │ │ ├── brand_11.png │ │ ├── brand_13.png │ │ ├── brand_15.png │ │ ├── brand_17.png │ │ ├── brand_19.png │ │ ├── brand_21.png │ │ ├── cartPanelViewIcons.png │ │ ├── choosed.png │ │ ├── clock.png │ │ ├── delete.png │ │ ├── down.png │ │ ├── duihuan.png │ │ ├── erweima.png │ │ ├── floor-1-1.png │ │ ├── floor-1-2.png │ │ ├── floor-1-3.png │ │ ├── floor-1-4.png │ │ ├── floor-1-5.png │ │ ├── floor-1-6.png │ │ ├── floor-1-b01.png │ │ ├── floor-1-b02.png │ │ ├── floor-1-b03.png │ │ ├── fruit.jpg │ │ ├── goods.jpg │ │ ├── goods.png │ │ ├── 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 │ │ ├── icons03.png │ │ ├── interest01.png │ │ ├── interest02.png │ │ ├── interest03.png │ │ ├── interest04.png │ │ ├── interest05.png │ │ ├── interest06.png │ │ ├── interval_line.png │ │ ├── left_bg.jpg │ │ ├── like1.png │ │ ├── like2.png │ │ ├── like3.png │ │ ├── like4.png │ │ ├── like_01.png │ │ ├── like_02.png │ │ ├── like_03.png │ │ ├── like_04.png │ │ ├── like_05.png │ │ ├── like_06.png │ │ ├── linker.png │ │ ├── lock.png │ │ ├── login_banner.png │ │ ├── loginbg.png │ │ ├── logo.png │ │ ├── logo02.png │ │ ├── mod-list.png │ │ ├── pay_icons.png │ │ ├── photo.png │ │ ├── qq.png │ │ ├── quan.png │ │ ├── register_banner.png │ │ ├── shop_cart.png │ │ ├── sina.png │ │ ├── slide.jpg │ │ ├── slide02.jpg │ │ ├── slide03.jpg │ │ ├── slide04.jpg │ │ ├── today01.png │ │ ├── today02.png │ │ ├── today03.png │ │ ├── today04.png │ │ ├── weixin.png │ │ ├── wx_cz.jpg │ │ └── zoom.png │ └── js │ │ ├── all.js │ │ ├── index.js │ │ ├── jquery-1.12.4.min.js │ │ ├── jquery-ui.min.js │ │ ├── jquery.cookie.js │ │ ├── login.js │ │ ├── register.js │ │ └── slide.js ├── tests │ └── default_test.go └── views │ ├── cart.html │ ├── detail.html │ ├── index.html │ ├── index.tpl │ ├── index_sx.html │ ├── list.html │ ├── login.html │ ├── place_order.html │ ├── register-email.html │ ├── register.html │ ├── search.html │ ├── user_center_info.html │ ├── user_center_layout.html │ ├── user_center_order.html │ └── user_center_site.html └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/.gitattributes -------------------------------------------------------------------------------- /PygElecSystem/.idea/PygElecSystem.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/.idea/PygElecSystem.iml -------------------------------------------------------------------------------- /PygElecSystem/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/.idea/modules.xml -------------------------------------------------------------------------------- /PygElecSystem/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/.idea/workspace.xml -------------------------------------------------------------------------------- /PygElecSystem/PygElecSystem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/PygElecSystem -------------------------------------------------------------------------------- /PygElecSystem/conf/app.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/conf/app.conf -------------------------------------------------------------------------------- /PygElecSystem/controllers/cart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/controllers/cart.go -------------------------------------------------------------------------------- /PygElecSystem/controllers/default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/controllers/default.go -------------------------------------------------------------------------------- /PygElecSystem/controllers/goods.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/controllers/goods.go -------------------------------------------------------------------------------- /PygElecSystem/controllers/order.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/controllers/order.go -------------------------------------------------------------------------------- /PygElecSystem/controllers/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/controllers/user.go -------------------------------------------------------------------------------- /PygElecSystem/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/main.go -------------------------------------------------------------------------------- /PygElecSystem/models/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/models/model.go -------------------------------------------------------------------------------- /PygElecSystem/routers/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/routers/router.go -------------------------------------------------------------------------------- /PygElecSystem/static/css/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/css/all.css -------------------------------------------------------------------------------- /PygElecSystem/static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/css/main.css -------------------------------------------------------------------------------- /PygElecSystem/static/css/pages-JD-index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/css/pages-JD-index.css -------------------------------------------------------------------------------- /PygElecSystem/static/css/pages-login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/css/pages-login.css -------------------------------------------------------------------------------- /PygElecSystem/static/css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/css/reset.css -------------------------------------------------------------------------------- /PygElecSystem/static/fonts/icon-moon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/fonts/icon-moon.eot -------------------------------------------------------------------------------- /PygElecSystem/static/fonts/icon-moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/fonts/icon-moon.svg -------------------------------------------------------------------------------- /PygElecSystem/static/fonts/icon-moon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/fonts/icon-moon.ttf -------------------------------------------------------------------------------- /PygElecSystem/static/fonts/icon-moon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/fonts/icon-moon.woff -------------------------------------------------------------------------------- /PygElecSystem/static/fonts/icon-pc.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/fonts/icon-pc.eot -------------------------------------------------------------------------------- /PygElecSystem/static/fonts/icon-pc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/fonts/icon-pc.svg -------------------------------------------------------------------------------- /PygElecSystem/static/fonts/icon-pc.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/fonts/icon-pc.ttf -------------------------------------------------------------------------------- /PygElecSystem/static/fonts/icon-pc.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/fonts/icon-pc.woff -------------------------------------------------------------------------------- /PygElecSystem/static/fonts/icon-tb.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/fonts/icon-tb.eot -------------------------------------------------------------------------------- /PygElecSystem/static/fonts/icon-tb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/fonts/icon-tb.svg -------------------------------------------------------------------------------- /PygElecSystem/static/fonts/icon-tb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/fonts/icon-tb.ttf -------------------------------------------------------------------------------- /PygElecSystem/static/fonts/icon-tb.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/fonts/icon-tb.woff -------------------------------------------------------------------------------- /PygElecSystem/static/fonts/icon-touch.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/fonts/icon-touch.eot -------------------------------------------------------------------------------- /PygElecSystem/static/fonts/icon-touch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/fonts/icon-touch.svg -------------------------------------------------------------------------------- /PygElecSystem/static/fonts/icon-touch.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/fonts/icon-touch.ttf -------------------------------------------------------------------------------- /PygElecSystem/static/fonts/icon-touch.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/fonts/icon-touch.woff -------------------------------------------------------------------------------- /PygElecSystem/static/goodsType.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/goodsType.sql -------------------------------------------------------------------------------- /PygElecSystem/static/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/1.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/2.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/01.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/b1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/b1.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/b2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/b2.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/b3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/b3.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/banner.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/bg-who1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/bg-who1.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/buy001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/buy001.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/buy002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/buy002.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/buy01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/buy01.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/car.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/clock.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/code.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/cooperation_banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/cooperation_banner.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/down-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/down-icon.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/dp01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/dp01.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/dp02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/dp02.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/dp03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/dp03.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/dp04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/dp04.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/empty_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/empty_heart.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/erweima.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/erweima.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/fail.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/gocart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/gocart.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/gocart01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/gocart01.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/goods1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/goods1.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/gotop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/gotop.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/icon-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/icon-red.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/icon.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/intro01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/intro01.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/intro02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/intro02.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/intro03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/intro03.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/itemlike01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/itemlike01.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/itemlike02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/itemlike02.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/itemlike03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/itemlike03.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/itemlike04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/itemlike04.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/itemlike05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/itemlike05.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/itemlike06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/itemlike06.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/l-m01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/l-m01.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/list.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/list.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/list.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/login-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/login-bg.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/manage-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/manage-bg.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/mobile01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/mobile01.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/mobile02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/mobile02.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/mobile03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/mobile03.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/mobile04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/mobile04.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/mobile05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/mobile05.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/mobile06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/mobile06.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/part01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/part01.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/part02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/part02.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/part03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/part03.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/pay1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/pay1.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/pay10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/pay10.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/pay11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/pay11.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/pay12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/pay12.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/pay13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/pay13.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/pay14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/pay14.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/pay15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/pay15.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/pay16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/pay16.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/pay17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/pay17.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/pay18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/pay18.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/pay19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/pay19.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/pay2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/pay2.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/pay20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/pay20.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/pay21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/pay21.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/pay22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/pay22.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/pay3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/pay3.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/pay4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/pay4.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/pay5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/pay5.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/phone-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/phone-bg.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/phone01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/phone01.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/phone02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/phone02.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/phone03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/phone03.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/phone04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/phone04.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/phone05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/phone05.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/phone06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/phone06.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/phone07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/phone07.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/phone08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/phone08.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/phone09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/phone09.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/phone10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/phone10.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/phone11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/phone11.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/phone12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/phone12.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/phone13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/phone13.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/phone14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/phone14.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/photo.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/photo.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/photo_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/photo_icon.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/right.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/s1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/s1.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/s2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/s2.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/s3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/s3.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/sampling_head.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/sampling_head.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/seckillbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/seckillbg.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/shi_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/shi_heart.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/shop-intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/shop-intro.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/shop-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/shop-logo.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/shop-part.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/shop-part.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/star.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/t.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/t.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/title_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/title_bg.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/_/y24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/_/y24.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/account.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/ad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/ad.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/ad1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/ad1.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/adv01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/adv01.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/adv02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/adv02.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/ali.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/ali.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/banner01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/banner01.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/banner02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/banner02.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/banner03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/banner03.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/banner04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/banner04.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/banner05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/banner05.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/banner06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/banner06.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/banner1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/banner1.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/banner1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/banner1.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/banner2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/banner2.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/banner3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/banner3.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/banner4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/banner4.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/barrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/barrow.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/bg0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/bg0.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/bg2.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/bg3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/bg3.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/brand01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/brand01.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/brand02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/brand02.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/brand03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/brand03.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/brand04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/brand04.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/brand05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/brand05.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/brand06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/brand06.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/brand07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/brand07.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/brand08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/brand08.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/brand09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/brand09.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/brand10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/brand10.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/brand11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/brand11.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/brand12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/brand12.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/brand13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/brand13.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/brand_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/brand_03.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/brand_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/brand_05.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/brand_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/brand_07.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/brand_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/brand_09.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/brand_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/brand_11.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/brand_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/brand_13.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/brand_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/brand_15.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/brand_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/brand_17.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/brand_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/brand_19.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/brand_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/brand_21.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/cartPanelViewIcons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/cartPanelViewIcons.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/choosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/choosed.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/clock.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/delete.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/down.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/duihuan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/duihuan.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/erweima.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/erweima.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/floor-1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/floor-1-1.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/floor-1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/floor-1-2.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/floor-1-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/floor-1-3.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/floor-1-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/floor-1-4.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/floor-1-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/floor-1-5.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/floor-1-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/floor-1-6.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/floor-1-b01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/floor-1-b01.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/floor-1-b02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/floor-1-b02.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/floor-1-b03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/floor-1-b03.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/fruit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/fruit.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/goods.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/goods.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/goods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/goods.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/goods/goods001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/goods/goods001.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/goods/goods002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/goods/goods002.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/goods/goods003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/goods/goods003.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/goods/goods004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/goods/goods004.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/goods/goods005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/goods/goods005.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/goods/goods006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/goods/goods006.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/goods/goods007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/goods/goods007.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/goods/goods008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/goods/goods008.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/goods/goods009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/goods/goods009.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/goods/goods010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/goods/goods010.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/goods/goods011.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/goods/goods011.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/goods/goods012.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/goods/goods012.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/goods/goods013.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/goods/goods013.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/goods/goods014.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/goods/goods014.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/goods/goods015.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/goods/goods015.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/goods/goods016.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/goods/goods016.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/goods/goods017.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/goods/goods017.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/goods/goods018.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/goods/goods018.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/goods/goods019.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/goods/goods019.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/goods/goods020.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/goods/goods020.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/goods/goods021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/goods/goods021.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/goods02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/goods02.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/goods_detail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/goods_detail.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/icons.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/icons02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/icons02.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/icons03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/icons03.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/interest01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/interest01.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/interest02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/interest02.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/interest03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/interest03.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/interest04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/interest04.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/interest05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/interest05.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/interest06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/interest06.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/interval_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/interval_line.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/left_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/left_bg.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/like1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/like1.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/like2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/like2.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/like3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/like3.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/like4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/like4.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/like_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/like_01.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/like_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/like_02.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/like_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/like_03.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/like_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/like_04.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/like_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/like_05.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/like_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/like_06.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/linker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/linker.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/lock.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/login_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/login_banner.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/loginbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/loginbg.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/logo.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/logo02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/logo02.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/mod-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/mod-list.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/pay_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/pay_icons.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/photo.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/qq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/qq.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/quan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/quan.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/register_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/register_banner.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/shop_cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/shop_cart.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/sina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/sina.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/slide.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/slide.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/slide02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/slide02.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/slide03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/slide03.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/slide04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/slide04.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/today01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/today01.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/today02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/today02.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/today03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/today03.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/today04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/today04.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/weixin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/weixin.png -------------------------------------------------------------------------------- /PygElecSystem/static/images/wx_cz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/wx_cz.jpg -------------------------------------------------------------------------------- /PygElecSystem/static/images/zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/images/zoom.png -------------------------------------------------------------------------------- /PygElecSystem/static/js/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/js/all.js -------------------------------------------------------------------------------- /PygElecSystem/static/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/js/index.js -------------------------------------------------------------------------------- /PygElecSystem/static/js/jquery-1.12.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/js/jquery-1.12.4.min.js -------------------------------------------------------------------------------- /PygElecSystem/static/js/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/js/jquery-ui.min.js -------------------------------------------------------------------------------- /PygElecSystem/static/js/jquery.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/js/jquery.cookie.js -------------------------------------------------------------------------------- /PygElecSystem/static/js/login.js: -------------------------------------------------------------------------------- 1 | $(function() { 2 | $('input,textarea').placeholder(); 3 | }) -------------------------------------------------------------------------------- /PygElecSystem/static/js/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/js/register.js -------------------------------------------------------------------------------- /PygElecSystem/static/js/slide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/static/js/slide.js -------------------------------------------------------------------------------- /PygElecSystem/tests/default_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/tests/default_test.go -------------------------------------------------------------------------------- /PygElecSystem/views/cart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/views/cart.html -------------------------------------------------------------------------------- /PygElecSystem/views/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/views/detail.html -------------------------------------------------------------------------------- /PygElecSystem/views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/views/index.html -------------------------------------------------------------------------------- /PygElecSystem/views/index.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/views/index.tpl -------------------------------------------------------------------------------- /PygElecSystem/views/index_sx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/views/index_sx.html -------------------------------------------------------------------------------- /PygElecSystem/views/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/views/list.html -------------------------------------------------------------------------------- /PygElecSystem/views/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/views/login.html -------------------------------------------------------------------------------- /PygElecSystem/views/place_order.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/views/place_order.html -------------------------------------------------------------------------------- /PygElecSystem/views/register-email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/views/register-email.html -------------------------------------------------------------------------------- /PygElecSystem/views/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/views/register.html -------------------------------------------------------------------------------- /PygElecSystem/views/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/views/search.html -------------------------------------------------------------------------------- /PygElecSystem/views/user_center_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/views/user_center_info.html -------------------------------------------------------------------------------- /PygElecSystem/views/user_center_layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/views/user_center_layout.html -------------------------------------------------------------------------------- /PygElecSystem/views/user_center_order.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/views/user_center_order.html -------------------------------------------------------------------------------- /PygElecSystem/views/user_center_site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/PygElecSystem/views/user_center_site.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudenter/PygElecSystem/HEAD/README.md --------------------------------------------------------------------------------