├── common ├── common.js ├── footer │ ├── footer.wxml │ └── footer.wxss ├── itemList │ ├── itemList.js │ ├── itemList.wxss │ ├── cartModel.js │ └── itemList.wxml └── header │ ├── header.wxml │ └── header.wxss ├── .gitignore ├── pages ├── home │ ├── home.json │ ├── index.json │ ├── home.wxss │ ├── home.wxml │ └── home.js ├── main │ ├── main.json │ ├── main.wxml │ ├── main.wxss │ └── main.js ├── hello │ ├── hello.json │ ├── hello.wxml │ └── hello.wxss ├── history │ ├── history.json │ ├── history.wxss │ ├── history.wxml │ └── history.js ├── mapView │ ├── mapView.json │ ├── mapView.wxss │ ├── mapView.wxml │ └── mapView.js ├── message │ ├── message.json │ ├── message.wxss │ └── message.wxml ├── publish │ └── publish.json ├── favorite │ ├── favorite.json │ ├── favorite.wxml │ ├── favorite.wxss │ └── favorite.js ├── goods │ ├── search │ │ ├── search.json │ │ ├── search.wxml │ │ ├── search.wxss │ │ └── search.js │ ├── labelGoodsList │ │ ├── labelGoodsList.json │ │ ├── labelGoodsList.wxml │ │ ├── labelGoodsList.wxss │ │ └── labelGoodsList.js │ ├── goodsSearch │ │ ├── goodsSearch.json │ │ ├── goodsSearch.wxml │ │ └── goodsSearch.wxss │ ├── goodsDetail │ │ └── goodsDetail.json │ └── goodsList │ │ └── goodsList.json ├── index │ └── index.json ├── petDoctor │ └── petDoctor.json ├── register │ ├── register.json │ ├── register.js │ ├── register.wxml │ └── register.wxss ├── messageList │ ├── messageList.json │ └── messageList.wxml ├── petArticle │ ├── petArticle.json │ ├── petArticle.wxml │ └── petArticle.wxss ├── order │ ├── orderDetail │ │ ├── orderDetail.json │ │ ├── orderDetail.js │ │ ├── orderDetail.wxml │ │ └── orderDetail.wxss │ ├── confirmOrder │ │ └── confirmOrder.json │ └── paymentOrder │ │ ├── paymentOrder.json │ │ └── paymentOrder.wxml ├── petArticleHome │ ├── petArticleHome.json │ ├── petArticleHome.wxml │ └── petArticleHome.wxss ├── petArticleList │ ├── petArticleList.json │ ├── petArticleList.wxml │ └── petArticleList.wxss ├── publishSuccess │ ├── publishSuccess.json │ ├── publishSuccess.wxml │ ├── publishSuccess.wxss │ └── publishSuccess.js ├── petDoctorSuccess │ ├── petDoctorSuccess.json │ ├── petDoctorSuccess.wxml │ ├── petDoctorSuccess.wxss │ └── petDoctorSuccess.js ├── labelDetail │ ├── labelDetail.json │ ├── labelDetail.wxml │ └── labelDetail.wxss ├── userCenter │ ├── userCenter │ │ ├── userCenter.json │ │ ├── userCenter.wxml │ │ ├── userCenter.js │ │ └── userCenter.wxss │ ├── orderList │ │ └── orderList.json │ ├── personal │ │ ├── personal.json │ │ ├── personal.wxss │ │ └── personal.wxml │ ├── addAddress │ │ ├── addAddress.json │ │ ├── addAddress.wxss │ │ └── addAddress.wxml │ └── addressList │ │ ├── addressList.json │ │ ├── addressList.wxss │ │ ├── addressList.wxml │ │ └── addressList.js ├── cart │ └── cart.json ├── cate │ ├── cate.json │ └── cate.wxml ├── logs │ ├── logs.json │ ├── logs.wxss │ ├── logs.wxml │ └── logs.js ├── cateList │ └── cateList.json ├── protocol │ ├── protocol.json │ ├── protocol.wxml │ ├── protocol.wxss │ └── protocol.js ├── labelList │ ├── labelList.json │ ├── labelList.wxss │ ├── labelList.wxml │ └── labelList.js ├── login │ ├── login.json │ ├── login.wxml │ └── login.wxss ├── comment │ ├── comment.json │ └── comment.wxml ├── services │ ├── services.json │ ├── services.wxss │ ├── services.wxml │ └── services.js ├── coupon │ ├── myCoupon │ │ ├── myCoupon.json │ │ ├── myCoupon.wxss │ │ ├── myCoupon.js │ │ └── myCoupon.wxml │ └── couponList │ │ ├── couponList.json │ │ ├── couponList.wxml │ │ ├── couponList.wxss │ │ └── couponList.js ├── serviceDetail │ ├── serviceDetail.json │ ├── serviceDetail.wxml │ ├── serviceDetail.wxss │ └── serviceDetail.js ├── test │ ├── test.js │ ├── test.wxml │ └── test.wxss └── template │ └── template.js ├── utils ├── .idea │ ├── .name │ ├── scopes │ │ └── scope_settings.xml │ ├── encodings.xml │ ├── vcs.xml │ ├── misc.xml │ ├── modules.xml │ └── utils.iml ├── config.js ├── util.js ├── wxLogin.js └── tools.js ├── static ├── images │ ├── add.png │ ├── home.png │ ├── kefu.png │ ├── more.jpg │ ├── my │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 2.png │ │ ├── 3.jpg │ │ ├── 4.png │ │ ├── btn.png │ │ ├── car.png │ │ ├── dot.png │ │ ├── jia.png │ │ ├── off.png │ │ ├── call.png │ │ ├── camera.png │ │ ├── cart.png │ │ ├── check.png │ │ ├── coupon.png │ │ ├── half.png │ │ ├── jian.png │ │ ├── jians.png │ │ ├── jias.png │ │ ├── kong.png │ │ ├── mall.png │ │ ├── money.png │ │ ├── more.png │ │ ├── normal.png │ │ ├── order.png │ │ ├── order2.png │ │ ├── person.png │ │ ├── phone.png │ │ ├── qian.jpg │ │ ├── rarrow.png │ │ ├── rmoney.png │ │ ├── select.png │ │ ├── shop.png │ │ ├── text.png │ │ ├── tiao.jpg │ │ ├── user.png │ │ ├── address.png │ │ ├── checked.png │ │ ├── checking.png │ │ ├── coupon1.png │ │ ├── coupon2.png │ │ ├── coupon3.png │ │ ├── daiFaHuo.png │ │ ├── ex_goods.jpg │ │ ├── head_img.jpg │ │ ├── homepage.png │ │ ├── my_order.png │ │ ├── off_icon.png │ │ ├── order-1.png │ │ ├── order-2.png │ │ ├── order-3.png │ │ ├── order-4.png │ │ ├── order-5.png │ │ ├── register.jpg │ │ ├── selected.png │ │ ├── service.png │ │ ├── shopping.png │ │ ├── yiFaHuo.png │ │ ├── about_icon.png │ │ ├── ad-checked.png │ │ ├── ad-checking.png │ │ ├── cart_icon.png │ │ ├── cate_icon.jpg │ │ ├── coupon_top.jpg │ │ ├── coupon_top.png │ │ ├── daiFuKuan.png │ │ ├── down_arrow.png │ │ ├── error_tip.png │ │ ├── forbidden.png │ │ ├── login_code.png │ │ ├── login_pass.png │ │ ├── order_num.png │ │ ├── orders_icon.png │ │ ├── right_arrow.png │ │ ├── selecteds.png │ │ ├── talkphone.png │ │ ├── user_icon.png │ │ ├── yiWanCheng.png │ │ ├── address_icon.png │ │ ├── address_info.png │ │ ├── collect_icon.png │ │ ├── discount_icon.png │ │ ├── login_account.png │ │ ├── password_eye.png │ │ ├── cash_coupon_icon.png │ │ ├── coupon_bg_small.png │ │ └── coupon_bg_small-1.png │ ├── text.png │ ├── addimg.jpg │ ├── check.png │ ├── delete.png │ ├── hello.jpg │ ├── hello1.png │ ├── more2.jpg │ ├── nodata.png │ ├── scroll.png │ ├── contact.png │ ├── publish.png │ ├── sell_out.png │ ├── success.png │ ├── number │ │ ├── dot1.png │ │ ├── dot2.png │ │ ├── dot3.png │ │ ├── dot4.png │ │ ├── dot5.png │ │ ├── dot6.png │ │ ├── dot7.png │ │ ├── dot8.png │ │ └── dot9.png │ ├── scroll_pic.png │ ├── usercenter.png │ ├── tabBar │ │ ├── tab_my_normal.png │ │ ├── tab_home_normal.png │ │ ├── tab_home_selected.png │ │ ├── tab_mall_normal.png │ │ ├── tab_mall_selected.png │ │ ├── tab_my_selected.png │ │ ├── tab_search_normal.png │ │ ├── tab_category_normal.png │ │ ├── tab_search_selected.png │ │ ├── tab_category_selected.png │ │ ├── tab_shoppingcart_normal.png │ │ └── tab_shoppingcart_selected.png │ └── tab_category_selected.png ├── fonts │ ├── iconfont.eot │ ├── iconfont.ttf │ └── iconfont.woff └── icon.wxss ├── jsconfig.json ├── .vscode └── settings.json ├── project.config.json ├── app.js ├── app.json └── app.wxss /common/common.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *swp 2 | -------------------------------------------------------------------------------- /pages/home/home.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pages/home/index.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pages/main/main.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /utils/.idea/.name: -------------------------------------------------------------------------------- 1 | utils -------------------------------------------------------------------------------- /pages/hello/hello.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pages/history/history.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pages/mapView/mapView.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pages/message/message.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pages/publish/publish.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pages/favorite/favorite.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pages/goods/search/search.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pages/index/index.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /pages/petDoctor/petDoctor.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pages/register/register.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pages/messageList/messageList.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pages/petArticle/petArticle.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pages/order/orderDetail/orderDetail.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pages/petArticleHome/petArticleHome.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pages/petArticleList/petArticleList.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pages/publishSuccess/publishSuccess.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pages/goods/labelGoodsList/labelGoodsList.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pages/home/home.wxss: -------------------------------------------------------------------------------- 1 | /* pages/home/home.wxss */ -------------------------------------------------------------------------------- /pages/petDoctorSuccess/petDoctorSuccess.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pages/labelDetail/labelDetail.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /pages/history/history.wxss: -------------------------------------------------------------------------------- 1 | /* pages/history/history.wxss */ -------------------------------------------------------------------------------- /pages/userCenter/userCenter/userCenter.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | 4 | } -------------------------------------------------------------------------------- /pages/cart/cart.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "购物车" 3 | } -------------------------------------------------------------------------------- /pages/cate/cate.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "宠物分类" 3 | } -------------------------------------------------------------------------------- /pages/logs/logs.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "查看启动日志" 3 | } -------------------------------------------------------------------------------- /pages/cateList/cateList.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "有宠日志" 3 | } -------------------------------------------------------------------------------- /pages/protocol/protocol.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "协议和须知" 3 | } -------------------------------------------------------------------------------- /pages/goods/goodsSearch/goodsSearch.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "搜索列表" 3 | } -------------------------------------------------------------------------------- /static/images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/add.png -------------------------------------------------------------------------------- /static/images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/home.png -------------------------------------------------------------------------------- /static/images/kefu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/kefu.png -------------------------------------------------------------------------------- /static/images/more.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/more.jpg -------------------------------------------------------------------------------- /static/images/my/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/1.jpg -------------------------------------------------------------------------------- /static/images/my/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/2.jpg -------------------------------------------------------------------------------- /static/images/my/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/2.png -------------------------------------------------------------------------------- /static/images/my/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/3.jpg -------------------------------------------------------------------------------- /static/images/my/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/4.png -------------------------------------------------------------------------------- /static/images/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/text.png -------------------------------------------------------------------------------- /pages/labelList/labelList.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "微胖女神很旺家" 3 | } -------------------------------------------------------------------------------- /static/images/addimg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/addimg.jpg -------------------------------------------------------------------------------- /static/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/check.png -------------------------------------------------------------------------------- /static/images/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/delete.png -------------------------------------------------------------------------------- /static/images/hello.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/hello.jpg -------------------------------------------------------------------------------- /static/images/hello1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/hello1.png -------------------------------------------------------------------------------- /static/images/more2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/more2.jpg -------------------------------------------------------------------------------- /static/images/my/btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/btn.png -------------------------------------------------------------------------------- /static/images/my/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/car.png -------------------------------------------------------------------------------- /static/images/my/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/dot.png -------------------------------------------------------------------------------- /static/images/my/jia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/jia.png -------------------------------------------------------------------------------- /static/images/my/off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/off.png -------------------------------------------------------------------------------- /static/images/nodata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/nodata.png -------------------------------------------------------------------------------- /static/images/scroll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/scroll.png -------------------------------------------------------------------------------- /static/fonts/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/fonts/iconfont.eot -------------------------------------------------------------------------------- /static/fonts/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/fonts/iconfont.ttf -------------------------------------------------------------------------------- /static/fonts/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/fonts/iconfont.woff -------------------------------------------------------------------------------- /static/images/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/contact.png -------------------------------------------------------------------------------- /static/images/my/call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/call.png -------------------------------------------------------------------------------- /static/images/my/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/camera.png -------------------------------------------------------------------------------- /static/images/my/cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/cart.png -------------------------------------------------------------------------------- /static/images/my/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/check.png -------------------------------------------------------------------------------- /static/images/my/coupon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/coupon.png -------------------------------------------------------------------------------- /static/images/my/half.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/half.png -------------------------------------------------------------------------------- /static/images/my/jian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/jian.png -------------------------------------------------------------------------------- /static/images/my/jians.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/jians.png -------------------------------------------------------------------------------- /static/images/my/jias.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/jias.png -------------------------------------------------------------------------------- /static/images/my/kong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/kong.png -------------------------------------------------------------------------------- /static/images/my/mall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/mall.png -------------------------------------------------------------------------------- /static/images/my/money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/money.png -------------------------------------------------------------------------------- /static/images/my/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/more.png -------------------------------------------------------------------------------- /static/images/my/normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/normal.png -------------------------------------------------------------------------------- /static/images/my/order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/order.png -------------------------------------------------------------------------------- /static/images/my/order2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/order2.png -------------------------------------------------------------------------------- /static/images/my/person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/person.png -------------------------------------------------------------------------------- /static/images/my/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/phone.png -------------------------------------------------------------------------------- /static/images/my/qian.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/qian.jpg -------------------------------------------------------------------------------- /static/images/my/rarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/rarrow.png -------------------------------------------------------------------------------- /static/images/my/rmoney.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/rmoney.png -------------------------------------------------------------------------------- /static/images/my/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/select.png -------------------------------------------------------------------------------- /static/images/my/shop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/shop.png -------------------------------------------------------------------------------- /static/images/my/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/text.png -------------------------------------------------------------------------------- /static/images/my/tiao.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/tiao.jpg -------------------------------------------------------------------------------- /static/images/my/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/user.png -------------------------------------------------------------------------------- /static/images/publish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/publish.png -------------------------------------------------------------------------------- /static/images/sell_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/sell_out.png -------------------------------------------------------------------------------- /static/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/success.png -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es2015", 4 | "module": "commonjs" 5 | } 6 | } -------------------------------------------------------------------------------- /static/images/my/address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/address.png -------------------------------------------------------------------------------- /static/images/my/checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/checked.png -------------------------------------------------------------------------------- /static/images/my/checking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/checking.png -------------------------------------------------------------------------------- /static/images/my/coupon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/coupon1.png -------------------------------------------------------------------------------- /static/images/my/coupon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/coupon2.png -------------------------------------------------------------------------------- /static/images/my/coupon3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/coupon3.png -------------------------------------------------------------------------------- /static/images/my/daiFaHuo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/daiFaHuo.png -------------------------------------------------------------------------------- /static/images/my/ex_goods.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/ex_goods.jpg -------------------------------------------------------------------------------- /static/images/my/head_img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/head_img.jpg -------------------------------------------------------------------------------- /static/images/my/homepage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/homepage.png -------------------------------------------------------------------------------- /static/images/my/my_order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/my_order.png -------------------------------------------------------------------------------- /static/images/my/off_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/off_icon.png -------------------------------------------------------------------------------- /static/images/my/order-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/order-1.png -------------------------------------------------------------------------------- /static/images/my/order-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/order-2.png -------------------------------------------------------------------------------- /static/images/my/order-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/order-3.png -------------------------------------------------------------------------------- /static/images/my/order-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/order-4.png -------------------------------------------------------------------------------- /static/images/my/order-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/order-5.png -------------------------------------------------------------------------------- /static/images/my/register.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/register.jpg -------------------------------------------------------------------------------- /static/images/my/selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/selected.png -------------------------------------------------------------------------------- /static/images/my/service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/service.png -------------------------------------------------------------------------------- /static/images/my/shopping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/shopping.png -------------------------------------------------------------------------------- /static/images/my/yiFaHuo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/yiFaHuo.png -------------------------------------------------------------------------------- /static/images/number/dot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/number/dot1.png -------------------------------------------------------------------------------- /static/images/number/dot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/number/dot2.png -------------------------------------------------------------------------------- /static/images/number/dot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/number/dot3.png -------------------------------------------------------------------------------- /static/images/number/dot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/number/dot4.png -------------------------------------------------------------------------------- /static/images/number/dot5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/number/dot5.png -------------------------------------------------------------------------------- /static/images/number/dot6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/number/dot6.png -------------------------------------------------------------------------------- /static/images/number/dot7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/number/dot7.png -------------------------------------------------------------------------------- /static/images/number/dot8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/number/dot8.png -------------------------------------------------------------------------------- /static/images/number/dot9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/number/dot9.png -------------------------------------------------------------------------------- /static/images/scroll_pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/scroll_pic.png -------------------------------------------------------------------------------- /static/images/usercenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/usercenter.png -------------------------------------------------------------------------------- /static/images/my/about_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/about_icon.png -------------------------------------------------------------------------------- /static/images/my/ad-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/ad-checked.png -------------------------------------------------------------------------------- /static/images/my/ad-checking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/ad-checking.png -------------------------------------------------------------------------------- /static/images/my/cart_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/cart_icon.png -------------------------------------------------------------------------------- /static/images/my/cate_icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/cate_icon.jpg -------------------------------------------------------------------------------- /static/images/my/coupon_top.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/coupon_top.jpg -------------------------------------------------------------------------------- /static/images/my/coupon_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/coupon_top.png -------------------------------------------------------------------------------- /static/images/my/daiFuKuan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/daiFuKuan.png -------------------------------------------------------------------------------- /static/images/my/down_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/down_arrow.png -------------------------------------------------------------------------------- /static/images/my/error_tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/error_tip.png -------------------------------------------------------------------------------- /static/images/my/forbidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/forbidden.png -------------------------------------------------------------------------------- /static/images/my/login_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/login_code.png -------------------------------------------------------------------------------- /static/images/my/login_pass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/login_pass.png -------------------------------------------------------------------------------- /static/images/my/order_num.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/order_num.png -------------------------------------------------------------------------------- /static/images/my/orders_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/orders_icon.png -------------------------------------------------------------------------------- /static/images/my/right_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/right_arrow.png -------------------------------------------------------------------------------- /static/images/my/selecteds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/selecteds.png -------------------------------------------------------------------------------- /static/images/my/talkphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/talkphone.png -------------------------------------------------------------------------------- /static/images/my/user_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/user_icon.png -------------------------------------------------------------------------------- /static/images/my/yiWanCheng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/yiWanCheng.png -------------------------------------------------------------------------------- /static/images/my/address_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/address_icon.png -------------------------------------------------------------------------------- /static/images/my/address_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/address_info.png -------------------------------------------------------------------------------- /static/images/my/collect_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/collect_icon.png -------------------------------------------------------------------------------- /static/images/my/discount_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/discount_icon.png -------------------------------------------------------------------------------- /static/images/my/login_account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/login_account.png -------------------------------------------------------------------------------- /static/images/my/password_eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/password_eye.png -------------------------------------------------------------------------------- /static/images/my/cash_coupon_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/cash_coupon_icon.png -------------------------------------------------------------------------------- /static/images/my/coupon_bg_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/coupon_bg_small.png -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "files.associations": { 3 | "*.wxml": "html", 4 | "*.wxss": "css" 5 | } 6 | } -------------------------------------------------------------------------------- /pages/goods/goodsDetail/goodsDetail.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "有宠物日志", 3 | "enablePullDownRefresh": false 4 | } -------------------------------------------------------------------------------- /static/images/my/coupon_bg_small-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/my/coupon_bg_small-1.png -------------------------------------------------------------------------------- /static/images/tabBar/tab_my_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/tabBar/tab_my_normal.png -------------------------------------------------------------------------------- /static/images/tab_category_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/tab_category_selected.png -------------------------------------------------------------------------------- /static/images/tabBar/tab_home_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/tabBar/tab_home_normal.png -------------------------------------------------------------------------------- /static/images/tabBar/tab_home_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/tabBar/tab_home_selected.png -------------------------------------------------------------------------------- /static/images/tabBar/tab_mall_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/tabBar/tab_mall_normal.png -------------------------------------------------------------------------------- /static/images/tabBar/tab_mall_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/tabBar/tab_mall_selected.png -------------------------------------------------------------------------------- /static/images/tabBar/tab_my_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/tabBar/tab_my_selected.png -------------------------------------------------------------------------------- /static/images/tabBar/tab_search_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/tabBar/tab_search_normal.png -------------------------------------------------------------------------------- /static/images/tabBar/tab_category_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/tabBar/tab_category_normal.png -------------------------------------------------------------------------------- /static/images/tabBar/tab_search_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/tabBar/tab_search_selected.png -------------------------------------------------------------------------------- /pages/home/home.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /pages/login/login.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "登录", 3 | "enablePullDownRefresh": false, 4 | "backgroundTextStyle": "dark" 5 | } -------------------------------------------------------------------------------- /static/images/tabBar/tab_category_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/tabBar/tab_category_selected.png -------------------------------------------------------------------------------- /pages/comment/comment.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "商品评价", 3 | "enablePullDownRefresh": false, 4 | "backgroundTextStyle": "dark" 5 | } -------------------------------------------------------------------------------- /static/images/tabBar/tab_shoppingcart_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/tabBar/tab_shoppingcart_normal.png -------------------------------------------------------------------------------- /pages/services/services.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "便民服务", 3 | "enablePullDownRefresh": false, 4 | "backgroundTextStyle": "dark" 5 | } -------------------------------------------------------------------------------- /static/images/tabBar/tab_shoppingcart_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luopf/pet-xcx/HEAD/static/images/tabBar/tab_shoppingcart_selected.png -------------------------------------------------------------------------------- /pages/coupon/myCoupon/myCoupon.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "我的购物券", 3 | "enablePullDownRefresh": false, 4 | "backgroundTextStyle": "dark" 5 | } -------------------------------------------------------------------------------- /pages/goods/goodsList/goodsList.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "商品搜索", 3 | "enablePullDownRefresh": false, 4 | "backgroundTextStyle": "dark" 5 | } -------------------------------------------------------------------------------- /pages/history/history.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /pages/logs/logs.wxss: -------------------------------------------------------------------------------- 1 | .log-list { 2 | display: flex; 3 | flex-direction: column; 4 | padding: 40rpx; 5 | } 6 | .log-item { 7 | margin: 10rpx; 8 | } 9 | -------------------------------------------------------------------------------- /pages/coupon/couponList/couponList.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "领券中心", 3 | "enablePullDownRefresh": false, 4 | "backgroundTextStyle": "dark" 5 | } -------------------------------------------------------------------------------- /pages/serviceDetail/serviceDetail.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "便民服务", 3 | "enablePullDownRefresh": false, 4 | "backgroundTextStyle": "dark" 5 | } -------------------------------------------------------------------------------- /pages/userCenter/orderList/orderList.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "订单列表", 3 | "enablePullDownRefresh": false, 4 | "backgroundTextStyle": "dark" 5 | } -------------------------------------------------------------------------------- /pages/userCenter/personal/personal.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "个人资料", 3 | "enablePullDownRefresh": false, 4 | "backgroundTextStyle": "dark" 5 | } -------------------------------------------------------------------------------- /pages/mapView/mapView.wxss: -------------------------------------------------------------------------------- 1 | /* pages/mapView/mapView.wxss */ 2 | page{ 3 | width: 100%; 4 | height: 100%; 5 | } 6 | .mapview{ 7 | width: 100%; 8 | height: 100%; 9 | } -------------------------------------------------------------------------------- /pages/order/confirmOrder/confirmOrder.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "确认订单", 3 | "enablePullDownRefresh": false, 4 | "backgroundTextStyle": "dark" 5 | } -------------------------------------------------------------------------------- /pages/order/paymentOrder/paymentOrder.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "微信支付", 3 | "enablePullDownRefresh": false, 4 | "backgroundTextStyle": "dark" 5 | } -------------------------------------------------------------------------------- /pages/userCenter/addAddress/addAddress.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "地址管理", 3 | "enablePullDownRefresh": false, 4 | "backgroundTextStyle": "dark" 5 | } -------------------------------------------------------------------------------- /pages/userCenter/addressList/addressList.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "管理收货地址", 3 | "enablePullDownRefresh": false, 4 | "backgroundTextStyle": "dark" 5 | } -------------------------------------------------------------------------------- /utils/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /utils/config.js: -------------------------------------------------------------------------------- 1 | const CONFIG = { 2 | API_URL : { 3 | BASE_URL: "https://cwly.mengyayuer.com/", 4 | IMG_URL:"https://cwly.mengyayuer.com/upload" 5 | }, 6 | } 7 | module.exports = CONFIG; -------------------------------------------------------------------------------- /pages/petArticle/petArticle.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /utils/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /pages/logs/logs.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {{index + 1}}. {{log}} 5 | 6 | 7 | -------------------------------------------------------------------------------- /pages/protocol/protocol.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |