├── pages ├── question │ ├── question.json │ ├── question.wxml │ └── question.wxss ├── questiong │ ├── question.json │ └── question.wxml ├── index │ └── index.json ├── assemble │ ├── index.json │ ├── index.wxml │ └── index.js ├── coupon │ ├── index.json │ ├── index.wxml │ ├── index.js │ └── index.wxss ├── help │ ├── index.json │ ├── index.wxml │ ├── index.wxss │ └── index.js ├── user │ └── index.json ├── bindPhone │ ├── index.json │ ├── index.wxml │ ├── index.wxss │ └── index.js ├── comment │ ├── index.json │ ├── index.wxml │ ├── index.wxss │ └── index.js ├── detail │ ├── detail.json │ └── detail.wxss ├── details │ └── index.json ├── evaluate │ ├── index.json │ └── index.wxml ├── extension │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── feedback │ ├── index.json │ ├── index.wxml │ ├── index.wxss │ └── index.js ├── integral │ ├── index.json │ ├── index.wxml │ ├── index.wxss │ └── index.js ├── logistics │ ├── index.json │ ├── index.wxml │ ├── index.wxss │ └── index.js ├── order │ └── index.json ├── record │ ├── index.json │ ├── index.wxml │ ├── index.js │ └── index.wxss ├── refund │ ├── index.json │ ├── index.js │ └── index.wxml ├── address-Add │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── address-Adds │ ├── index.json │ ├── index.wxss │ └── index.wxml ├── addressAdd │ ├── index.json │ ├── index.wxss │ └── index.wxml ├── addressList │ ├── index.json │ ├── index.wxml │ ├── index.wxss │ └── index.js ├── assemble_detail │ ├── index.json │ ├── index.wxml │ └── index.js ├── coupon_all │ ├── index.json │ ├── index.wxml │ └── index.js ├── footprint │ ├── index.json │ ├── index.wxml │ ├── index.js │ └── index.wxss ├── orderDetails │ └── index.json ├── refund_detail │ ├── index.json │ ├── index.wxss │ ├── index.js │ └── index.wxml ├── return_goods │ ├── index.json │ └── index.wxml ├── settlement │ ├── index.json │ ├── index.wxml │ ├── index.js │ └── index.wxss ├── withdrawaccount │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── cart │ └── index.json ├── list │ ├── index.json │ ├── index.wxml │ ├── index.wxss │ └── index.js ├── fenlei │ ├── index.json │ └── index.wxml ├── yijian │ ├── yijian.json │ ├── yijian.wxml │ ├── yijian.wxss │ └── yijian.js └── fenlei_detail │ ├── index.json │ └── index.wxml ├── img ├── bg1.png ├── cart.png ├── gotop.png ├── group.png ├── home.png ├── login.jpg ├── logo.png ├── menu.png ├── pwd.png ├── accunt.png ├── banner.jpg ├── groupH.png ├── icon0-0.png ├── more_b.png ├── shopcar.png ├── shops1.png ├── shops2.png ├── toggle.png ├── toggle1.png ├── toggle2.png ├── searchbtn.png ├── shareicon.png ├── shops3.png.png ├── collecticon.png └── collecticon2.png ├── images ├── edit.png ├── img1.jpg ├── img2.jpg ├── img3.jpg ├── logo.png ├── my_n.png ├── my_y.png ├── delete.png ├── list1.png ├── list2.png ├── list3.png ├── list4.png ├── party.png ├── return.png ├── wedding.png ├── Shopping.png ├── birthday.png ├── choice_n.png ├── choice_y.png ├── completed.png ├── festival.png ├── my_order.png ├── triangle.png ├── add_to cart.png ├── home_page_n.png ├── home_page_y.png ├── shopping_f.png ├── shopping_f_t.png ├── triangle_2.png ├── already_shipped.png ├── pending_delivery.png ├── pending_payment.png ├── shopping_select.png └── shopping_cart_return.png ├── CategoryIcon ├── baby │ ├── 1.png │ ├── 2.png │ ├── 3.png │ └── 4.png ├── diet │ ├── 1.png │ ├── 2.png │ ├── 3.png │ └── 4.png ├── home │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ └── 14.png ├── outfit │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── polo.png │ ├── chenshan.png │ ├── diaodai.png │ └── banshenqun.png ├── bedding │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ └── 7.png ├── kitchen │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ └── 8.png └── personal │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ └── hufu.png ├── README.md ├── sitemap.json ├── app.wxss ├── config.js ├── utils ├── promise.util.js ├── util.js └── common.util.js ├── project.config.json ├── app.js ├── app.json └── LICENSE /pages/question/question.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pages/questiong/question.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pages/index/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /pages/assemble/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "" 3 | } -------------------------------------------------------------------------------- /pages/coupon/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "优惠券" 3 | } -------------------------------------------------------------------------------- /pages/help/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "帮助中心" 3 | } -------------------------------------------------------------------------------- /pages/user/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "我的" 3 | } -------------------------------------------------------------------------------- /pages/bindPhone/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "绑定手机" 3 | } -------------------------------------------------------------------------------- /pages/comment/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "商品评价" 3 | } -------------------------------------------------------------------------------- /pages/detail/detail.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "订单详情" 3 | } -------------------------------------------------------------------------------- /pages/details/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "商品详情" 3 | } -------------------------------------------------------------------------------- /pages/evaluate/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "商品评价" 3 | } -------------------------------------------------------------------------------- /pages/extension/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "推广有礼" 3 | } -------------------------------------------------------------------------------- /pages/feedback/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "帮助中心" 3 | } -------------------------------------------------------------------------------- /pages/integral/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "我的积分" 3 | } -------------------------------------------------------------------------------- /pages/logistics/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "交易物流" 3 | } -------------------------------------------------------------------------------- /pages/order/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "我的订单" 3 | } -------------------------------------------------------------------------------- /pages/record/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "我的足迹" 3 | } -------------------------------------------------------------------------------- /pages/refund/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "退款退货" 3 | } -------------------------------------------------------------------------------- /pages/address-Add/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "新增地址" 3 | } -------------------------------------------------------------------------------- /pages/address-Adds/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "新增地址" 3 | } -------------------------------------------------------------------------------- /pages/addressAdd/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "修改地址" 3 | } -------------------------------------------------------------------------------- /pages/addressList/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "我的地址" 3 | } -------------------------------------------------------------------------------- /pages/assemble_detail/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "优惠券" 3 | } -------------------------------------------------------------------------------- /pages/coupon_all/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "优惠券" 3 | } -------------------------------------------------------------------------------- /pages/footprint/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "我的足迹" 3 | } -------------------------------------------------------------------------------- /pages/orderDetails/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "订单" 3 | } -------------------------------------------------------------------------------- /pages/refund_detail/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "退款退货" 3 | } -------------------------------------------------------------------------------- /pages/return_goods/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "申请退货" 3 | } -------------------------------------------------------------------------------- /pages/settlement/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "我的收藏" 3 | } -------------------------------------------------------------------------------- /pages/withdrawaccount/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "提现" 3 | } -------------------------------------------------------------------------------- /img/bg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/img/bg1.png -------------------------------------------------------------------------------- /img/cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/img/cart.png -------------------------------------------------------------------------------- /img/gotop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/img/gotop.png -------------------------------------------------------------------------------- /img/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/img/group.png -------------------------------------------------------------------------------- /img/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/img/home.png -------------------------------------------------------------------------------- /img/login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/img/login.jpg -------------------------------------------------------------------------------- /img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/img/logo.png -------------------------------------------------------------------------------- /img/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/img/menu.png -------------------------------------------------------------------------------- /img/pwd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/img/pwd.png -------------------------------------------------------------------------------- /images/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/images/edit.png -------------------------------------------------------------------------------- /images/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/images/img1.jpg -------------------------------------------------------------------------------- /images/img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/images/img2.jpg -------------------------------------------------------------------------------- /images/img3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/images/img3.jpg -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/images/logo.png -------------------------------------------------------------------------------- /images/my_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/images/my_n.png -------------------------------------------------------------------------------- /images/my_y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/images/my_y.png -------------------------------------------------------------------------------- /img/accunt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/img/accunt.png -------------------------------------------------------------------------------- /img/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/img/banner.jpg -------------------------------------------------------------------------------- /img/groupH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/img/groupH.png -------------------------------------------------------------------------------- /img/icon0-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/img/icon0-0.png -------------------------------------------------------------------------------- /img/more_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/img/more_b.png -------------------------------------------------------------------------------- /img/shopcar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/img/shopcar.png -------------------------------------------------------------------------------- /img/shops1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/img/shops1.png -------------------------------------------------------------------------------- /img/shops2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/img/shops2.png -------------------------------------------------------------------------------- /img/toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/img/toggle.png -------------------------------------------------------------------------------- /img/toggle1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/img/toggle1.png -------------------------------------------------------------------------------- /img/toggle2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/img/toggle2.png -------------------------------------------------------------------------------- /images/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/images/delete.png -------------------------------------------------------------------------------- /images/list1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/images/list1.png -------------------------------------------------------------------------------- /images/list2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/images/list2.png -------------------------------------------------------------------------------- /images/list3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/images/list3.png -------------------------------------------------------------------------------- /images/list4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/images/list4.png -------------------------------------------------------------------------------- /images/party.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/images/party.png -------------------------------------------------------------------------------- /images/return.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/images/return.png -------------------------------------------------------------------------------- /images/wedding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/images/wedding.png -------------------------------------------------------------------------------- /img/searchbtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/img/searchbtn.png -------------------------------------------------------------------------------- /img/shareicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/img/shareicon.png -------------------------------------------------------------------------------- /img/shops3.png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/img/shops3.png.png -------------------------------------------------------------------------------- /images/Shopping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/images/Shopping.png -------------------------------------------------------------------------------- /images/birthday.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/images/birthday.png -------------------------------------------------------------------------------- /images/choice_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/images/choice_n.png -------------------------------------------------------------------------------- /images/choice_y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/images/choice_y.png -------------------------------------------------------------------------------- /images/completed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/images/completed.png -------------------------------------------------------------------------------- /images/festival.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/images/festival.png -------------------------------------------------------------------------------- /images/my_order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/images/my_order.png -------------------------------------------------------------------------------- /images/triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/images/triangle.png -------------------------------------------------------------------------------- /img/collecticon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/img/collecticon.png -------------------------------------------------------------------------------- /img/collecticon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/img/collecticon2.png -------------------------------------------------------------------------------- /pages/cart/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "购物车", 3 | "disableScroll": true 4 | } -------------------------------------------------------------------------------- /pages/list/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "列表", 3 | "disableScroll":true 4 | } -------------------------------------------------------------------------------- /CategoryIcon/baby/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/CategoryIcon/baby/1.png -------------------------------------------------------------------------------- /CategoryIcon/baby/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/CategoryIcon/baby/2.png -------------------------------------------------------------------------------- /CategoryIcon/baby/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/CategoryIcon/baby/3.png -------------------------------------------------------------------------------- /CategoryIcon/baby/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/CategoryIcon/baby/4.png -------------------------------------------------------------------------------- /CategoryIcon/diet/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/CategoryIcon/diet/1.png -------------------------------------------------------------------------------- /CategoryIcon/diet/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/CategoryIcon/diet/2.png -------------------------------------------------------------------------------- /CategoryIcon/diet/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/CategoryIcon/diet/3.png -------------------------------------------------------------------------------- /CategoryIcon/diet/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/CategoryIcon/diet/4.png -------------------------------------------------------------------------------- /CategoryIcon/home/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/CategoryIcon/home/1.png -------------------------------------------------------------------------------- /CategoryIcon/home/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/CategoryIcon/home/2.png -------------------------------------------------------------------------------- /CategoryIcon/home/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/CategoryIcon/home/3.png -------------------------------------------------------------------------------- /CategoryIcon/home/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/CategoryIcon/home/4.png -------------------------------------------------------------------------------- /CategoryIcon/home/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/CategoryIcon/home/5.png -------------------------------------------------------------------------------- /images/add_to cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/images/add_to cart.png -------------------------------------------------------------------------------- /images/home_page_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/images/home_page_n.png -------------------------------------------------------------------------------- /images/home_page_y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/images/home_page_y.png -------------------------------------------------------------------------------- /images/shopping_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/images/shopping_f.png -------------------------------------------------------------------------------- /images/shopping_f_t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/images/shopping_f_t.png -------------------------------------------------------------------------------- /images/triangle_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/images/triangle_2.png -------------------------------------------------------------------------------- /pages/fenlei/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "navigationBarTitleText": "分类" 4 | } -------------------------------------------------------------------------------- /pages/yijian/yijian.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "意见反馈", 3 | "disableScroll": true 4 | } -------------------------------------------------------------------------------- /CategoryIcon/home/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/CategoryIcon/home/14.png -------------------------------------------------------------------------------- /CategoryIcon/outfit/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/CategoryIcon/outfit/2.png -------------------------------------------------------------------------------- /CategoryIcon/outfit/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/CategoryIcon/outfit/3.png -------------------------------------------------------------------------------- /CategoryIcon/outfit/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/CategoryIcon/outfit/4.png -------------------------------------------------------------------------------- /CategoryIcon/outfit/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/CategoryIcon/outfit/5.png -------------------------------------------------------------------------------- /CategoryIcon/outfit/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/CategoryIcon/outfit/6.png -------------------------------------------------------------------------------- /pages/fenlei_detail/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "navigationBarTitleText": "分类详情" 4 | } -------------------------------------------------------------------------------- /CategoryIcon/bedding/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/CategoryIcon/bedding/1.png -------------------------------------------------------------------------------- /CategoryIcon/bedding/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/CategoryIcon/bedding/2.png -------------------------------------------------------------------------------- /CategoryIcon/bedding/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/CategoryIcon/bedding/3.png -------------------------------------------------------------------------------- /CategoryIcon/bedding/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/CategoryIcon/bedding/4.png -------------------------------------------------------------------------------- /CategoryIcon/bedding/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/CategoryIcon/bedding/5.png -------------------------------------------------------------------------------- /CategoryIcon/bedding/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/CategoryIcon/bedding/6.png -------------------------------------------------------------------------------- /CategoryIcon/bedding/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/CategoryIcon/bedding/7.png -------------------------------------------------------------------------------- /CategoryIcon/kitchen/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/CategoryIcon/kitchen/1.png -------------------------------------------------------------------------------- /CategoryIcon/kitchen/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/CategoryIcon/kitchen/2.png -------------------------------------------------------------------------------- /CategoryIcon/kitchen/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/CategoryIcon/kitchen/3.png -------------------------------------------------------------------------------- /CategoryIcon/kitchen/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/CategoryIcon/kitchen/4.png -------------------------------------------------------------------------------- /CategoryIcon/kitchen/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/CategoryIcon/kitchen/5.png -------------------------------------------------------------------------------- /CategoryIcon/kitchen/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/CategoryIcon/kitchen/6.png -------------------------------------------------------------------------------- /CategoryIcon/kitchen/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/CategoryIcon/kitchen/7.png -------------------------------------------------------------------------------- /CategoryIcon/kitchen/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/CategoryIcon/kitchen/8.png -------------------------------------------------------------------------------- /CategoryIcon/outfit/polo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/CategoryIcon/outfit/polo.png -------------------------------------------------------------------------------- /CategoryIcon/personal/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/CategoryIcon/personal/1.png -------------------------------------------------------------------------------- /CategoryIcon/personal/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/CategoryIcon/personal/2.png -------------------------------------------------------------------------------- /CategoryIcon/personal/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/CategoryIcon/personal/3.png -------------------------------------------------------------------------------- /CategoryIcon/personal/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/CategoryIcon/personal/4.png -------------------------------------------------------------------------------- /images/already_shipped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/images/already_shipped.png -------------------------------------------------------------------------------- /images/pending_delivery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/images/pending_delivery.png -------------------------------------------------------------------------------- /images/pending_payment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/images/pending_payment.png -------------------------------------------------------------------------------- /images/shopping_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/images/shopping_select.png -------------------------------------------------------------------------------- /CategoryIcon/personal/hufu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/CategoryIcon/personal/hufu.png -------------------------------------------------------------------------------- /CategoryIcon/outfit/chenshan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/CategoryIcon/outfit/chenshan.png -------------------------------------------------------------------------------- /CategoryIcon/outfit/diaodai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/CategoryIcon/outfit/diaodai.png -------------------------------------------------------------------------------- /images/shopping_cart_return.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/images/shopping_cart_return.png -------------------------------------------------------------------------------- /CategoryIcon/outfit/banshenqun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comsenz/ShopDZ-minapp/HEAD/CategoryIcon/outfit/banshenqun.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # shopdz-minapp 2 | shopdz 商城小程序源码 3 | 4 | # 使用步骤 5 | - 申请小程序号,将小程序号AppId填写到 project.config.json appid 中。 6 | - 修改 config.js host 接口地址 7 | - 使用开发者工具运行小程序,测试功能是否正常 -------------------------------------------------------------------------------- /sitemap.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /app.wxss: -------------------------------------------------------------------------------- 1 | /**app.wxss**/ 2 | @import "/lib/weui.wxss"; 3 | .container { 4 | height: 100%; 5 | } 6 | image{ 7 | width: 100%; 8 | } 9 | .fl{ 10 | float: left 11 | } 12 | .fr{ 13 | float: right; 14 | } -------------------------------------------------------------------------------- /pages/help/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | {{title}} 4 | 5 |