├── faye ├── leyou-cart │ ├── src │ │ ├── test │ │ │ └── java │ │ │ │ └── test.java │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── leyou │ │ │ │ ├── cart │ │ │ │ └── client │ │ │ │ │ └── GoodsClient.java │ │ │ │ └── LeyouCartApplication.java │ │ │ └── resources │ │ │ └── application.yml │ └── target │ │ └── classes │ │ ├── com │ │ └── leyou │ │ │ ├── cart │ │ │ ├── pojo │ │ │ │ └── Cart.class │ │ │ ├── client │ │ │ │ └── GoodsClient.class │ │ │ ├── config │ │ │ │ ├── JwtProperties.class │ │ │ │ └── LeyouWebMvcConfiguration.class │ │ │ ├── service │ │ │ │ └── CartService.class │ │ │ ├── controller │ │ │ │ └── CartController.class │ │ │ └── interceptor │ │ │ │ └── LoginInterceptor.class │ │ │ └── LeyouCartApplication.class │ │ └── application.yml ├── leyou-auth │ ├── leyou-auth-common │ │ ├── src │ │ │ ├── test │ │ │ │ └── java │ │ │ │ │ ├── test.java │ │ │ │ │ └── person.java │ │ │ └── main │ │ │ │ ├── resources │ │ │ │ ├── application.yml │ │ │ │ └── static │ │ │ │ │ └── Vue.html │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── leyou │ │ │ │ └── common │ │ │ │ └── utils │ │ │ │ └── JwtConstans.java │ │ └── target │ │ │ ├── test-classes │ │ │ ├── test2.class │ │ │ └── person.class │ │ │ └── classes │ │ │ ├── application.yml │ │ │ ├── com │ │ │ └── leyou │ │ │ │ └── common │ │ │ │ ├── pojo │ │ │ │ └── UserInfo.class │ │ │ │ └── utils │ │ │ │ ├── JwtUtils.class │ │ │ │ ├── RsaUtils.class │ │ │ │ ├── JwtConstans.class │ │ │ │ └── ObjectUtils.class │ │ │ └── static │ │ │ └── Vue.html │ └── leyou-auth-service │ │ ├── target │ │ └── classes │ │ │ ├── com │ │ │ └── leyou │ │ │ │ ├── LeyouAuthApplication.class │ │ │ │ └── auth │ │ │ │ ├── client │ │ │ │ └── UserClient.class │ │ │ │ ├── service │ │ │ │ └── AuthService.class │ │ │ │ ├── config │ │ │ │ └── JwtProperties.class │ │ │ │ └── controller │ │ │ │ └── AuthController.class │ │ │ └── application.yml │ │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── leyou │ │ │ ├── auth │ │ │ └── client │ │ │ │ └── UserClient.java │ │ │ └── LeyouAuthApplication.java │ │ └── resources │ │ └── application.yml ├── leyou-gateway │ ├── src │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── leyou │ │ │ ├── config │ │ │ └── LeyouCorsConfiguration.java │ │ │ └── LeyouGatewayAppliaction.java │ └── target │ │ └── classes │ │ └── com │ │ └── leyou │ │ ├── filter │ │ └── LoginFliter.class │ │ ├── LeyouGatewayAppliaction.class │ │ └── config │ │ └── gateway │ │ ├── JwtProperties.class │ │ ├── FilterProperties.class │ │ └── LeyouCorsConfiguration.class ├── leyou-item │ ├── leyou-item-service │ │ ├── src │ │ │ ├── test │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── leyou │ │ │ │ │ └── item │ │ │ │ │ └── test │ │ │ │ │ └── test.java │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── leyou │ │ │ │ ├── item │ │ │ │ ├── mapper │ │ │ │ │ ├── SkuMapper.java │ │ │ │ │ ├── SpuMapper.java │ │ │ │ │ ├── StockMapper.java │ │ │ │ │ ├── SpecGroupMapper.java │ │ │ │ │ ├── SpecParmMapper.java │ │ │ │ │ └── SpuDetailMapper.java │ │ │ │ └── service │ │ │ │ │ ├── ICategoryService.java │ │ │ │ │ └── IBrandServcie.java │ │ │ │ └── LeyouItemAppliaction.java │ │ └── target │ │ │ ├── test-classes │ │ │ └── com │ │ │ │ └── leyou │ │ │ │ └── item │ │ │ │ └── test │ │ │ │ └── test.class │ │ │ └── classes │ │ │ └── com │ │ │ └── leyou │ │ │ ├── LeyouItemAppliaction.class │ │ │ └── item │ │ │ ├── mapper │ │ │ ├── SkuMapper.class │ │ │ ├── SpuMapper.class │ │ │ ├── BrandMapper.class │ │ │ ├── StockMapper.class │ │ │ ├── CategoryMapper.class │ │ │ ├── SpecParmMapper.class │ │ │ ├── SpecGroupMapper.class │ │ │ └── SpuDetailMapper.class │ │ │ ├── service │ │ │ ├── GoodsService.class │ │ │ ├── IBrandServcie.class │ │ │ ├── ICategoryService.class │ │ │ ├── Impl │ │ │ │ ├── BrandServiceImpl.class │ │ │ │ └── CategoryServiceImpl.class │ │ │ └── SpecificationService.class │ │ │ └── cotroller │ │ │ ├── BrandController.class │ │ │ ├── GoodsController.class │ │ │ ├── CatagoryController.class │ │ │ └── SpecificationController.class │ ├── leyou-item-interfaces │ │ ├── target │ │ │ └── classes │ │ │ │ └── com │ │ │ │ └── leyou │ │ │ │ └── item │ │ │ │ ├── bo │ │ │ │ └── SpuBo.class │ │ │ │ ├── pojo │ │ │ │ ├── Sku.class │ │ │ │ ├── Spu.class │ │ │ │ ├── Brand.class │ │ │ │ ├── Stock.class │ │ │ │ ├── Category.class │ │ │ │ ├── SpecGroup.class │ │ │ │ ├── SpecParam.class │ │ │ │ └── SpuDetail.class │ │ │ │ └── api │ │ │ │ ├── BrandApi.class │ │ │ │ ├── GoodsApi.class │ │ │ │ ├── CatagoryApi.class │ │ │ │ └── SpecificationApi.class │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── leyou │ │ │ └── item │ │ │ └── api │ │ │ ├── CatagoryApi.java │ │ │ └── BrandApi.java │ └── leyou-item.iml ├── leyou-order │ ├── target │ │ └── classes │ │ │ └── com │ │ │ └── leyou │ │ │ ├── utils │ │ │ ├── PayState.class │ │ │ └── PayHelper.class │ │ │ ├── config │ │ │ ├── MvcConfig.class │ │ │ ├── PayConfig.class │ │ │ ├── IdWorkerConfig.class │ │ │ ├── JwtProperties.class │ │ │ ├── PayProperties.class │ │ │ ├── SwaggerConfig.class │ │ │ └── IdWorkerProperties.class │ │ │ ├── order │ │ │ ├── pojo │ │ │ │ ├── Order.class │ │ │ │ ├── OrderDetail.class │ │ │ │ └── OrderStatus.class │ │ │ ├── mapper │ │ │ │ ├── OrderMapper.class │ │ │ │ ├── OrderDetailMapper.class │ │ │ │ └── OrderStatusMapper.class │ │ │ ├── service │ │ │ │ ├── OrderService.class │ │ │ │ └── api │ │ │ │ │ └── GoodsService.class │ │ │ ├── controller │ │ │ │ └── OrderController.class │ │ │ └── interceptor │ │ │ │ └── LoginInterceptor.class │ │ │ └── LeyouOrderApplication.class │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── leyou │ │ ├── order │ │ ├── mapper │ │ │ ├── OrderStatusMapper.java │ │ │ ├── OrderDetailMapper.java │ │ │ └── OrderMapper.java │ │ └── service │ │ │ └── api │ │ │ └── GoodsService.java │ │ ├── utils │ │ └── PayState.java │ │ └── config │ │ └── IdWorkerConfig.java ├── leyou-sms │ ├── target │ │ └── classes │ │ │ ├── com │ │ │ └── leyou │ │ │ │ ├── LeyouSmsApplication.class │ │ │ │ └── sms │ │ │ │ ├── utils │ │ │ │ └── SmsUtils.class │ │ │ │ ├── config │ │ │ │ └── SmsProperties.class │ │ │ │ └── listener │ │ │ │ └── SmsListener.class │ │ │ └── application.yml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── leyou │ │ │ └── LeyouSmsApplication.java │ │ └── resources │ │ └── application.yml ├── leyou-search │ ├── target │ │ ├── classes │ │ │ ├── com │ │ │ │ └── leyou │ │ │ │ │ ├── LeyouSearchService.class │ │ │ │ │ └── search │ │ │ │ │ ├── pojo │ │ │ │ │ ├── Goods.class │ │ │ │ │ ├── SearchRequest.class │ │ │ │ │ └── SearchResult.class │ │ │ │ │ ├── Client │ │ │ │ │ ├── BrandClient.class │ │ │ │ │ ├── GoodsClient.class │ │ │ │ │ ├── CategoryClient.class │ │ │ │ │ └── SpecificationClient.class │ │ │ │ │ ├── service │ │ │ │ │ ├── SearchService.class │ │ │ │ │ ├── SearchService$1.class │ │ │ │ │ └── SearchService$2.class │ │ │ │ │ ├── listener │ │ │ │ │ └── GoodsListener.class │ │ │ │ │ ├── controller │ │ │ │ │ └── SearchController.class │ │ │ │ │ └── reponsitory │ │ │ │ │ └── GoodReponsitory.class │ │ │ └── application.yml │ │ └── test-classes │ │ │ └── com │ │ │ └── leyou │ │ │ └── search │ │ │ └── test │ │ │ ├── test.class │ │ │ ├── test$1.class │ │ │ └── ElasticsearchTest.class │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── leyou │ │ │ ├── search │ │ │ ├── Client │ │ │ │ ├── GoodsClient.java │ │ │ │ ├── BrandClient.java │ │ │ │ ├── CategoryClient.java │ │ │ │ └── SpecificationClient.java │ │ │ └── reponsitory │ │ │ │ └── GoodReponsitory.java │ │ │ └── LeyouSearchService.java │ │ └── resources │ │ └── application.yml ├── leyou-common │ └── target │ │ └── classes │ │ └── com │ │ └── leyou │ │ └── common │ │ ├── utils │ │ ├── IdWorker.class │ │ ├── JsonUtils.class │ │ ├── CookieUtils.class │ │ └── NumberUtils.class │ │ └── pojo │ │ └── PageResult.class ├── leyou-goods-web │ ├── target │ │ ├── test-classes │ │ │ └── leyou │ │ │ │ └── Goods │ │ │ │ └── test │ │ │ │ └── test.class │ │ └── classes │ │ │ ├── com │ │ │ └── leyou │ │ │ │ ├── Goods │ │ │ │ ├── Client │ │ │ │ │ ├── BrandClient.class │ │ │ │ │ ├── GoodsClient.class │ │ │ │ │ ├── CategoryClient.class │ │ │ │ │ └── SpecificationClient.class │ │ │ │ ├── listener │ │ │ │ │ └── GoodsListener.class │ │ │ │ ├── service │ │ │ │ │ ├── GoodsService.class │ │ │ │ │ └── GoodHtmlService.class │ │ │ │ └── controller │ │ │ │ │ └── GoodsController.class │ │ │ │ └── LeyouGoodsWebApplication.class │ │ │ └── application.yml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── leyou │ │ │ ├── Goods │ │ │ └── Client │ │ │ │ ├── GoodsClient.java │ │ │ │ ├── BrandClient.java │ │ │ │ ├── CategoryClient.java │ │ │ │ └── SpecificationClient.java │ │ │ └── LeyouGoodsWebApplication.java │ │ └── resources │ │ └── application.yml ├── leyou-upload │ ├── target │ │ ├── test-classes │ │ │ └── com │ │ │ │ └── leyou │ │ │ │ └── test │ │ │ │ └── FastDFSTest.class │ │ └── classes │ │ │ ├── com │ │ │ └── leyou │ │ │ │ ├── LeyouUploadApplication.class │ │ │ │ ├── service │ │ │ │ ├── IUploadService.class │ │ │ │ └── Impl │ │ │ │ │ └── UploadServiceImpl.class │ │ │ │ ├── config │ │ │ │ ├── FastClientImporter.class │ │ │ │ └── LeyouCorsConfiguration.class │ │ │ │ └── controller │ │ │ │ └── UploadController.class │ │ │ └── application.yml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── leyou │ │ │ ├── service │ │ │ └── IUploadService.java │ │ │ ├── LeyouUploadApplication.java │ │ │ └── config │ │ │ └── FastClientImporter.java │ │ └── resources │ │ └── application.yml ├── leyou-register │ ├── target │ │ └── classes │ │ │ ├── com │ │ │ └── leyou │ │ │ │ └── LeyouRegisterApplication.class │ │ │ └── application.yml │ └── src │ │ └── main │ │ ├── resources │ │ └── application.yml │ │ └── java │ │ └── com │ │ └── leyou │ │ └── LeyouRegisterApplication.java ├── leyou-user │ ├── leyou-user-interface │ │ ├── target │ │ │ └── classes │ │ │ │ └── com │ │ │ │ └── leyou │ │ │ │ └── user │ │ │ │ ├── pojo │ │ │ │ └── User.class │ │ │ │ └── api │ │ │ │ └── UserApi.class │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── leyou │ │ │ └── user │ │ │ └── api │ │ │ └── UserApi.java │ └── leyou-user-service │ │ ├── target │ │ ├── classes │ │ │ └── com │ │ │ │ └── leyou │ │ │ │ ├── LeyouUserApplication.class │ │ │ │ └── user │ │ │ │ ├── ulits │ │ │ │ └── CodecUtils.class │ │ │ │ ├── mapper │ │ │ │ └── UserMapper.class │ │ │ │ ├── service │ │ │ │ └── UserService.class │ │ │ │ └── controller │ │ │ │ └── UserController.class │ │ └── test-classes │ │ │ └── com │ │ │ └── leyou │ │ │ └── user │ │ │ └── test │ │ │ ├── RedisTest.class │ │ │ └── StringTest.class │ │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── leyou │ │ ├── user │ │ └── mapper │ │ │ └── UserMapper.java │ │ └── LeyouUserApplication.java └── .idea │ ├── inspectionProfiles │ └── Project_Default.xml │ └── libraries │ ├── Maven__junit_junit_4_12.xml │ ├── Maven__antlr_antlr_2_7_7.xml │ ├── Maven__org_ow2_asm_asm_5_0_4.xml │ ├── Maven__stax_stax_api_1_0_1.xml │ ├── Maven__xpp3_xpp3_min_1_1_4c.xml │ ├── Maven__org_json_json_20170516.xml │ ├── Maven__com_tdunning_t_digest_3_0.xml │ ├── Maven__com_vividsolutions_jts_1_13.xml │ ├── Maven__io_jsonwebtoken_jjwt_0_9_0.xml │ ├── Maven__io_reactivex_rxjava_1_3_8.xml │ ├── Maven__org_yaml_snakeyaml_1_19.xml │ ├── Maven__xmlpull_xmlpull_1_1_3_1.xml │ ├── Maven__com_carrotsearch_hppc_0_7_1.xml │ ├── Maven__com_google_guava_guava_15_0.xml │ ├── Maven__com_google_guava_guava_16_0.xml │ ├── Maven__com_google_guava_guava_20_0.xml │ ├── Maven__org_mybatis_mybatis_3_4_6.xml │ ├── Maven__com_zaxxer_HikariCP_2_7_9.xml │ ├── Maven__commons_io_commons_io_2_2.xml │ ├── Maven__commons_io_commons_io_2_4.xml │ ├── Maven__io_reactivex_rxnetty_0_4_9.xml │ ├── Maven__joda_time_joda_time_2_9_9.xml │ ├── Maven__net_minidev_json_smart_2_3.xml │ ├── Maven__org_objenesis_objenesis_2_6.xml │ ├── Maven__aopalliance_aopalliance_1_0.xml │ ├── Maven__com_google_inject_guice_4_1_0.xml │ ├── Maven__javax_inject_javax_inject_1.xml │ ├── Maven__org_elasticsearch_jna_4_4_0_1.xml │ ├── Maven__org_slf4j_slf4j_api_1_7_25.xml │ ├── Maven__com_google_code_gson_gson_2_8_5.xml │ ├── Maven__org_antlr_antlr_runtime_3_4.xml │ ├── Maven__org_elasticsearch_securesm_1_2.xml │ ├── Maven__com_fasterxml_classmate_1_3_4.xml │ ├── Maven__com_netflix_ribbon_ribbon_2_2_5.xml │ ├── Maven__javax_ws_rs_jsr311_api_1_1_1.xml │ ├── Maven__tk_mybatis_mapper_base_1_0_1.xml │ ├── Maven__tk_mybatis_mapper_core_1_0_2.xml │ ├── Maven__commons_lang_commons_lang_2_6.xml │ ├── Maven__org_mockito_mockito_all_1_9_5.xml │ ├── Maven__com_rabbitmq_amqp_client_5_4_3.xml │ ├── Maven__javax_xml_stream_stax_api_1_0_2.xml │ ├── Maven__org_hamcrest_hamcrest_core_1_3.xml │ ├── Maven__tk_mybatis_mapper_extra_1_0_1.xml │ ├── Maven__com_github_wxpay_wxpay_sdk_0_0_3.xml │ ├── Maven__com_netflix_zuul_zuul_core_1_3_1.xml │ ├── Maven__net_bytebuddy_byte_buddy_1_7_11.xml │ ├── Maven__net_jcip_jcip_annotations_1_0.xml │ ├── Maven__org_assertj_assertj_core_3_9_1.xml │ ├── Maven__org_slf4j_jul_to_slf4j_1_7_25.xml │ ├── Maven__org_xmlunit_xmlunit_core_2_5_1.xml │ ├── Maven__org_antlr_stringtemplate_3_2_1.xml │ ├── Maven__org_freemarker_freemarker_2_3_28.xml │ ├── Maven__org_skyscreamer_jsonassert_1_5_0.xml │ ├── Maven__tk_mybatis_mapper_spring_1_0_1.xml │ ├── Maven__commons_codec_commons_codec_1_11.xml │ ├── Maven__net_coobird_thumbnailator_0_4_8.xml │ ├── Maven__net_minidev_accessors_smart_1_2.xml │ ├── Maven__org_mockito_mockito_core_2_15_0.xml │ ├── Maven__tk_mybatis_mapper_weekend_1_1_3.xml │ ├── Maven__ch_qos_logback_logback_core_1_2_3.xml │ ├── Maven__com_google_code_findbugs_jsr305_3_0_1.xml │ ├── Maven__com_jayway_jsonpath_json_path_2_4_0.xml │ ├── Maven__com_sun_jersey_jersey_core_1_19_1.xml │ ├── Maven__commons_jxpath_commons_jxpath_1_3.xml │ ├── Maven__io_reactivex_rxnetty_servo_0_4_9.xml │ ├── Maven__io_springfox_springfox_spi_2_8_0.xml │ ├── Maven__org_aspectj_aspectjweaver_1_8_13.xml │ ├── Maven__org_mybatis_mybatis_spring_1_3_2.xml │ ├── Maven__org_slf4j_jcl_over_slf4j_1_7_25.xml │ ├── Maven__com_github_jsqlparser_jsqlparser_1_0.xml │ ├── Maven__io_springfox_springfox_core_2_8_0.xml │ ├── Maven__io_swagger_swagger_models_1_5_14.xml │ ├── Maven__org_apache_commons_commons_math_2_2.xml │ ├── Maven__org_apache_lucene_lucene_core_6_6_1.xml │ ├── Maven__org_apache_lucene_lucene_join_6_6_1.xml │ ├── Maven__org_apache_lucene_lucene_misc_6_6_1.xml │ ├── Maven__org_codehaus_jettison_jettison_1_3_7.xml │ ├── Maven__org_hamcrest_hamcrest_library_1_3.xml │ ├── Maven__org_javassist_javassist_3_21_0_GA.xml │ └── Maven__org_reflections_reflections_0_9_11.xml ├── .gitattributes ├── leyou-manage-web ├── leyou-manage-web │ ├── static │ │ └── .gitkeep │ ├── .gitattributes │ ├── config │ │ ├── prod.env.js │ │ └── dev.env.js │ ├── build │ │ └── logo.png │ ├── src │ │ ├── assets │ │ │ ├── 1.jpeg │ │ │ ├── 2.jpeg │ │ │ ├── baby.png │ │ │ ├── logo.png │ │ │ ├── KFOlCnqEu92Fr1MmEU9fBBc4.woff2 │ │ │ └── flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2 │ │ ├── App.vue │ │ ├── pages │ │ │ ├── user │ │ │ │ └── Statistics.vue │ │ │ └── trade │ │ │ │ └── Promotion.vue │ │ ├── .gitrepo │ │ └── http.js │ ├── .editorconfig │ ├── .gitignore │ ├── .postcssrc.js │ ├── index.html │ ├── .babelrc │ └── README.md ├── package-lock.json └── .idea │ ├── modules.xml │ └── leyou-manage-web.iml └── leyou-portal ├── package-lock.json ├── js ├── pages │ ├── home.js │ ├── login.js │ ├── register.js │ ├── shoplogin.js │ └── getOrderInfo.js ├── plugins │ └── qs.js └── widget │ └── nav.js ├── img ├── Logo.png ├── _ │ ├── 01.png │ ├── b1.png │ ├── b2.png │ ├── b3.png │ ├── s1.png │ ├── s2.png │ ├── s3.png │ ├── t.jpg │ ├── car.png │ ├── code.png │ ├── dp01.png │ ├── dp02.png │ ├── dp03.png │ ├── dp04.png │ ├── fail.png │ ├── icon.png │ ├── list.jpg │ ├── list.png │ ├── pay1.jpg │ ├── pay2.jpg │ ├── pay3.jpg │ ├── pay4.jpg │ ├── pay5.jpg │ ├── y24.png │ ├── banner.png │ ├── buy001.jpg │ ├── buy002.jpg │ ├── buy01.jpg │ ├── clock.png │ ├── erweima.jpg │ ├── gocart.jpg │ ├── gotop.png │ ├── intro01.png │ ├── intro02.png │ ├── intro03.png │ ├── l-m01.png │ ├── part01.png │ ├── part02.png │ ├── part03.png │ ├── pay10.jpg │ ├── pay11.jpg │ ├── pay12.jpg │ ├── pay13.jpg │ ├── pay14.jpg │ ├── pay15.jpg │ ├── pay16.jpg │ ├── pay17.jpg │ ├── pay18.jpg │ ├── pay19.jpg │ ├── pay20.jpg │ ├── pay21.jpg │ ├── pay22.jpg │ ├── phone01.png │ ├── phone02.png │ ├── phone03.png │ ├── phone04.png │ ├── phone05.png │ ├── phone06.png │ ├── phone07.png │ ├── phone08.png │ ├── phone09.png │ ├── phone10.png │ ├── phone11.png │ ├── phone12.png │ ├── phone13.png │ ├── phone14.png │ ├── photo.png │ ├── right.png │ ├── down-icon.png │ ├── gocart01.jpg │ ├── icon-red.png │ ├── login-bg.png │ ├── manage-bg.png │ ├── mobile01.png │ ├── mobile02.png │ ├── mobile03.png │ ├── mobile04.png │ ├── mobile05.png │ ├── mobile06.png │ ├── phone-bg.png │ ├── seckillbg.png │ ├── shi_heart.png │ ├── shop-logo.png │ ├── shop-part.png │ ├── title_bg.jpg │ ├── empty_heart.png │ ├── itemlike01.png │ ├── itemlike02.png │ ├── itemlike03.png │ ├── itemlike04.png │ ├── itemlike05.png │ ├── itemlike06.png │ ├── photo_icon.png │ ├── shop-intro.png │ ├── sampling_head.jpg │ └── cooperation_banner.jpg ├── ad.jpg ├── ad1.png ├── ali.png ├── lock.png ├── qq.png ├── quan.png ├── sina.png ├── zoom.png ├── barrow.png ├── clock.png ├── delete.png ├── goods.png ├── icons.png ├── like1.png ├── like2.png ├── like3.png ├── like4.png ├── linker.png ├── photo.png ├── weixin.png ├── wx_cz.jpg ├── account.png ├── banner1.jpg ├── banner1.png ├── banner2.jpg ├── banner3.jpg ├── banner3x.jpg ├── banner4.jpg ├── brand01.png ├── brand02.png ├── brand03.png ├── brand04.png ├── brand05.png ├── brand06.png ├── brand07.png ├── brand08.png ├── brand09.png ├── brand10.png ├── brand11.png ├── brand12.png ├── brand13.png ├── brand_03.png ├── brand_05.png ├── brand_07.png ├── brand_09.png ├── brand_11.png ├── brand_13.png ├── brand_15.png ├── brand_17.png ├── brand_19.png ├── brand_21.png ├── choosed.png ├── duihuan.png ├── erweima.png ├── floor-1-1.png ├── floor-1-2.png ├── floor-1-3.png ├── floor-1-4.png ├── floor-1-5.png ├── floor-1-6.png ├── icon-red.png ├── like_01.png ├── like_02.png ├── like_03.png ├── like_04.png ├── like_05.png ├── like_06.png ├── loginbg.png ├── mod-list.png ├── phone-bg.png ├── today01.png ├── today02.png ├── today03.png ├── today04.png ├── floor-1-b01.png ├── floor-1-b02.png ├── floor-1-b03.png ├── interest01.png ├── interest02.png ├── interest03.png ├── interest04.png ├── interest05.png ├── interest06.png ├── 57b51ea9Nb862ca5e.png ├── assets │ └── img │ │ ├── pay │ │ ├── fail.png │ │ ├── icon.png │ │ ├── pay1.jpg │ │ ├── pay2.jpg │ │ ├── pay3.jpg │ │ ├── pay4.jpg │ │ ├── pay5.jpg │ │ ├── pay10.jpg │ │ ├── pay11.jpg │ │ ├── pay12.jpg │ │ ├── pay13.jpg │ │ ├── pay14.jpg │ │ ├── pay15.jpg │ │ ├── pay16.jpg │ │ ├── pay17.jpg │ │ ├── pay18.jpg │ │ ├── pay19.jpg │ │ ├── pay20.jpg │ │ ├── pay21.jpg │ │ ├── pay22.jpg │ │ └── right.png │ │ ├── zoom │ │ ├── b1.png │ │ ├── b2.png │ │ ├── b3.png │ │ ├── s1.png │ │ ├── s2.png │ │ └── s3.png │ │ ├── phone │ │ ├── dp01.png │ │ ├── dp02.png │ │ ├── dp03.png │ │ ├── dp04.png │ │ ├── intro01.png │ │ ├── intro02.png │ │ ├── intro03.png │ │ ├── l-m01.png │ │ ├── part01.png │ │ ├── part02.png │ │ ├── part03.png │ │ ├── phone01.png │ │ ├── phone02.png │ │ ├── phone03.png │ │ ├── phone04.png │ │ ├── phone05.png │ │ ├── phone06.png │ │ ├── phone07.png │ │ ├── phone08.png │ │ ├── phone09.png │ │ ├── phone10.png │ │ ├── phone11.png │ │ ├── phone12.png │ │ ├── phone13.png │ │ ├── phone14.png │ │ ├── mobile01.png │ │ ├── mobile02.png │ │ ├── mobile03.png │ │ ├── mobile04.png │ │ ├── mobile05.png │ │ └── mobile06.png │ │ ├── success-cart │ │ ├── buy01.jpg │ │ ├── buy001.jpg │ │ ├── buy002.jpg │ │ ├── gocart.jpg │ │ └── gocart01.jpg │ │ └── itemlike │ │ ├── itemlike01.png │ │ ├── itemlike02.png │ │ ├── itemlike03.png │ │ ├── itemlike04.png │ │ ├── itemlike05.png │ │ └── itemlike06.png └── cartPanelViewIcons.png ├── fonts ├── icon-pc.eot ├── icon-pc.ttf ├── icon-tb.eot ├── icon-tb.ttf ├── icon-moon.eot ├── icon-moon.ttf ├── icon-pc.woff ├── icon-tb.woff ├── icon-moon.woff ├── icon-touch.eot ├── icon-touch.ttf └── icon-touch.woff ├── .idea ├── modules.xml └── misc.xml ├── leyou-portal.iml └── copyright.html /faye/leyou-cart/src/test/java/test.java: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.js linguist-language=java 2 | -------------------------------------------------------------------------------- /leyou-manage-web/leyou-manage-web/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /faye/leyou-auth/leyou-auth-common/src/test/java/test.java: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /leyou-manage-web/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "lockfileVersion": 1 3 | } 4 | -------------------------------------------------------------------------------- /leyou-portal/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "lockfileVersion": 1 3 | } 4 | -------------------------------------------------------------------------------- /faye/leyou-gateway/src/main/java/com/leyou/config/LeyouCorsConfiguration.java: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /leyou-manage-web/leyou-manage-web/.gitattributes: -------------------------------------------------------------------------------- 1 | *.js linguist-language=java 2 | -------------------------------------------------------------------------------- /leyou-portal/js/pages/home.js: -------------------------------------------------------------------------------- 1 | $(function() { 2 | $('input,textarea').placeholder(); 3 | }) -------------------------------------------------------------------------------- /leyou-portal/js/pages/login.js: -------------------------------------------------------------------------------- 1 | $(function() { 2 | $('input,textarea').placeholder(); 3 | }) -------------------------------------------------------------------------------- /leyou-portal/js/pages/register.js: -------------------------------------------------------------------------------- 1 | $(function() { 2 | $('input,textarea').placeholder(); 3 | }) -------------------------------------------------------------------------------- /leyou-portal/js/pages/shoplogin.js: -------------------------------------------------------------------------------- 1 | $(function() { 2 | $('input,textarea').placeholder(); 3 | }) -------------------------------------------------------------------------------- /leyou-portal/img/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/Logo.png -------------------------------------------------------------------------------- /leyou-portal/img/_/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/01.png -------------------------------------------------------------------------------- /leyou-portal/img/_/b1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/b1.png -------------------------------------------------------------------------------- /leyou-portal/img/_/b2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/b2.png -------------------------------------------------------------------------------- /leyou-portal/img/_/b3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/b3.png -------------------------------------------------------------------------------- /leyou-portal/img/_/s1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/s1.png -------------------------------------------------------------------------------- /leyou-portal/img/_/s2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/s2.png -------------------------------------------------------------------------------- /leyou-portal/img/_/s3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/s3.png -------------------------------------------------------------------------------- /leyou-portal/img/_/t.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/t.jpg -------------------------------------------------------------------------------- /leyou-portal/img/ad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/ad.jpg -------------------------------------------------------------------------------- /leyou-portal/img/ad1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/ad1.png -------------------------------------------------------------------------------- /leyou-portal/img/ali.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/ali.png -------------------------------------------------------------------------------- /leyou-portal/img/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/lock.png -------------------------------------------------------------------------------- /leyou-portal/img/qq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/qq.png -------------------------------------------------------------------------------- /leyou-portal/img/quan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/quan.png -------------------------------------------------------------------------------- /leyou-portal/img/sina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/sina.png -------------------------------------------------------------------------------- /leyou-portal/img/zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/zoom.png -------------------------------------------------------------------------------- /leyou-portal/img/_/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/car.png -------------------------------------------------------------------------------- /leyou-portal/img/_/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/code.png -------------------------------------------------------------------------------- /leyou-portal/img/_/dp01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/dp01.png -------------------------------------------------------------------------------- /leyou-portal/img/_/dp02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/dp02.png -------------------------------------------------------------------------------- /leyou-portal/img/_/dp03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/dp03.png -------------------------------------------------------------------------------- /leyou-portal/img/_/dp04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/dp04.png -------------------------------------------------------------------------------- /leyou-portal/img/_/fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/fail.png -------------------------------------------------------------------------------- /leyou-portal/img/_/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/icon.png -------------------------------------------------------------------------------- /leyou-portal/img/_/list.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/list.jpg -------------------------------------------------------------------------------- /leyou-portal/img/_/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/list.png -------------------------------------------------------------------------------- /leyou-portal/img/_/pay1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/pay1.jpg -------------------------------------------------------------------------------- /leyou-portal/img/_/pay2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/pay2.jpg -------------------------------------------------------------------------------- /leyou-portal/img/_/pay3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/pay3.jpg -------------------------------------------------------------------------------- /leyou-portal/img/_/pay4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/pay4.jpg -------------------------------------------------------------------------------- /leyou-portal/img/_/pay5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/pay5.jpg -------------------------------------------------------------------------------- /leyou-portal/img/_/y24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/y24.png -------------------------------------------------------------------------------- /leyou-portal/img/barrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/barrow.png -------------------------------------------------------------------------------- /leyou-portal/img/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/clock.png -------------------------------------------------------------------------------- /leyou-portal/img/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/delete.png -------------------------------------------------------------------------------- /leyou-portal/img/goods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/goods.png -------------------------------------------------------------------------------- /leyou-portal/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/icons.png -------------------------------------------------------------------------------- /leyou-portal/img/like1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/like1.png -------------------------------------------------------------------------------- /leyou-portal/img/like2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/like2.png -------------------------------------------------------------------------------- /leyou-portal/img/like3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/like3.png -------------------------------------------------------------------------------- /leyou-portal/img/like4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/like4.png -------------------------------------------------------------------------------- /leyou-portal/img/linker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/linker.png -------------------------------------------------------------------------------- /leyou-portal/img/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/photo.png -------------------------------------------------------------------------------- /leyou-portal/img/weixin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/weixin.png -------------------------------------------------------------------------------- /leyou-portal/img/wx_cz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/wx_cz.jpg -------------------------------------------------------------------------------- /leyou-portal/fonts/icon-pc.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/fonts/icon-pc.eot -------------------------------------------------------------------------------- /leyou-portal/fonts/icon-pc.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/fonts/icon-pc.ttf -------------------------------------------------------------------------------- /leyou-portal/fonts/icon-tb.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/fonts/icon-tb.eot -------------------------------------------------------------------------------- /leyou-portal/fonts/icon-tb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/fonts/icon-tb.ttf -------------------------------------------------------------------------------- /leyou-portal/img/_/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/banner.png -------------------------------------------------------------------------------- /leyou-portal/img/_/buy001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/buy001.jpg -------------------------------------------------------------------------------- /leyou-portal/img/_/buy002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/buy002.jpg -------------------------------------------------------------------------------- /leyou-portal/img/_/buy01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/buy01.jpg -------------------------------------------------------------------------------- /leyou-portal/img/_/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/clock.png -------------------------------------------------------------------------------- /leyou-portal/img/_/erweima.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/erweima.jpg -------------------------------------------------------------------------------- /leyou-portal/img/_/gocart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/gocart.jpg -------------------------------------------------------------------------------- /leyou-portal/img/_/gotop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/gotop.png -------------------------------------------------------------------------------- /leyou-portal/img/_/intro01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/intro01.png -------------------------------------------------------------------------------- /leyou-portal/img/_/intro02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/intro02.png -------------------------------------------------------------------------------- /leyou-portal/img/_/intro03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/intro03.png -------------------------------------------------------------------------------- /leyou-portal/img/_/l-m01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/l-m01.png -------------------------------------------------------------------------------- /leyou-portal/img/_/part01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/part01.png -------------------------------------------------------------------------------- /leyou-portal/img/_/part02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/part02.png -------------------------------------------------------------------------------- /leyou-portal/img/_/part03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/part03.png -------------------------------------------------------------------------------- /leyou-portal/img/_/pay10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/pay10.jpg -------------------------------------------------------------------------------- /leyou-portal/img/_/pay11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/pay11.jpg -------------------------------------------------------------------------------- /leyou-portal/img/_/pay12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/pay12.jpg -------------------------------------------------------------------------------- /leyou-portal/img/_/pay13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/pay13.jpg -------------------------------------------------------------------------------- /leyou-portal/img/_/pay14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/pay14.jpg -------------------------------------------------------------------------------- /leyou-portal/img/_/pay15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/pay15.jpg -------------------------------------------------------------------------------- /leyou-portal/img/_/pay16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/pay16.jpg -------------------------------------------------------------------------------- /leyou-portal/img/_/pay17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/pay17.jpg -------------------------------------------------------------------------------- /leyou-portal/img/_/pay18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/pay18.jpg -------------------------------------------------------------------------------- /leyou-portal/img/_/pay19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/pay19.jpg -------------------------------------------------------------------------------- /leyou-portal/img/_/pay20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/pay20.jpg -------------------------------------------------------------------------------- /leyou-portal/img/_/pay21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/pay21.jpg -------------------------------------------------------------------------------- /leyou-portal/img/_/pay22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/pay22.jpg -------------------------------------------------------------------------------- /leyou-portal/img/_/phone01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/phone01.png -------------------------------------------------------------------------------- /leyou-portal/img/_/phone02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/phone02.png -------------------------------------------------------------------------------- /leyou-portal/img/_/phone03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/phone03.png -------------------------------------------------------------------------------- /leyou-portal/img/_/phone04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/phone04.png -------------------------------------------------------------------------------- /leyou-portal/img/_/phone05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/phone05.png -------------------------------------------------------------------------------- /leyou-portal/img/_/phone06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/phone06.png -------------------------------------------------------------------------------- /leyou-portal/img/_/phone07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/phone07.png -------------------------------------------------------------------------------- /leyou-portal/img/_/phone08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/phone08.png -------------------------------------------------------------------------------- /leyou-portal/img/_/phone09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/phone09.png -------------------------------------------------------------------------------- /leyou-portal/img/_/phone10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/phone10.png -------------------------------------------------------------------------------- /leyou-portal/img/_/phone11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/phone11.png -------------------------------------------------------------------------------- /leyou-portal/img/_/phone12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/phone12.png -------------------------------------------------------------------------------- /leyou-portal/img/_/phone13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/phone13.png -------------------------------------------------------------------------------- /leyou-portal/img/_/phone14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/phone14.png -------------------------------------------------------------------------------- /leyou-portal/img/_/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/photo.png -------------------------------------------------------------------------------- /leyou-portal/img/_/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/right.png -------------------------------------------------------------------------------- /leyou-portal/img/account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/account.png -------------------------------------------------------------------------------- /leyou-portal/img/banner1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/banner1.jpg -------------------------------------------------------------------------------- /leyou-portal/img/banner1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/banner1.png -------------------------------------------------------------------------------- /leyou-portal/img/banner2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/banner2.jpg -------------------------------------------------------------------------------- /leyou-portal/img/banner3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/banner3.jpg -------------------------------------------------------------------------------- /leyou-portal/img/banner3x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/banner3x.jpg -------------------------------------------------------------------------------- /leyou-portal/img/banner4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/banner4.jpg -------------------------------------------------------------------------------- /leyou-portal/img/brand01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/brand01.png -------------------------------------------------------------------------------- /leyou-portal/img/brand02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/brand02.png -------------------------------------------------------------------------------- /leyou-portal/img/brand03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/brand03.png -------------------------------------------------------------------------------- /leyou-portal/img/brand04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/brand04.png -------------------------------------------------------------------------------- /leyou-portal/img/brand05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/brand05.png -------------------------------------------------------------------------------- /leyou-portal/img/brand06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/brand06.png -------------------------------------------------------------------------------- /leyou-portal/img/brand07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/brand07.png -------------------------------------------------------------------------------- /leyou-portal/img/brand08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/brand08.png -------------------------------------------------------------------------------- /leyou-portal/img/brand09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/brand09.png -------------------------------------------------------------------------------- /leyou-portal/img/brand10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/brand10.png -------------------------------------------------------------------------------- /leyou-portal/img/brand11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/brand11.png -------------------------------------------------------------------------------- /leyou-portal/img/brand12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/brand12.png -------------------------------------------------------------------------------- /leyou-portal/img/brand13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/brand13.png -------------------------------------------------------------------------------- /leyou-portal/img/brand_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/brand_03.png -------------------------------------------------------------------------------- /leyou-portal/img/brand_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/brand_05.png -------------------------------------------------------------------------------- /leyou-portal/img/brand_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/brand_07.png -------------------------------------------------------------------------------- /leyou-portal/img/brand_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/brand_09.png -------------------------------------------------------------------------------- /leyou-portal/img/brand_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/brand_11.png -------------------------------------------------------------------------------- /leyou-portal/img/brand_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/brand_13.png -------------------------------------------------------------------------------- /leyou-portal/img/brand_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/brand_15.png -------------------------------------------------------------------------------- /leyou-portal/img/brand_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/brand_17.png -------------------------------------------------------------------------------- /leyou-portal/img/brand_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/brand_19.png -------------------------------------------------------------------------------- /leyou-portal/img/brand_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/brand_21.png -------------------------------------------------------------------------------- /leyou-portal/img/choosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/choosed.png -------------------------------------------------------------------------------- /leyou-portal/img/duihuan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/duihuan.png -------------------------------------------------------------------------------- /leyou-portal/img/erweima.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/erweima.png -------------------------------------------------------------------------------- /leyou-portal/img/floor-1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/floor-1-1.png -------------------------------------------------------------------------------- /leyou-portal/img/floor-1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/floor-1-2.png -------------------------------------------------------------------------------- /leyou-portal/img/floor-1-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/floor-1-3.png -------------------------------------------------------------------------------- /leyou-portal/img/floor-1-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/floor-1-4.png -------------------------------------------------------------------------------- /leyou-portal/img/floor-1-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/floor-1-5.png -------------------------------------------------------------------------------- /leyou-portal/img/floor-1-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/floor-1-6.png -------------------------------------------------------------------------------- /leyou-portal/img/icon-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/icon-red.png -------------------------------------------------------------------------------- /leyou-portal/img/like_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/like_01.png -------------------------------------------------------------------------------- /leyou-portal/img/like_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/like_02.png -------------------------------------------------------------------------------- /leyou-portal/img/like_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/like_03.png -------------------------------------------------------------------------------- /leyou-portal/img/like_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/like_04.png -------------------------------------------------------------------------------- /leyou-portal/img/like_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/like_05.png -------------------------------------------------------------------------------- /leyou-portal/img/like_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/like_06.png -------------------------------------------------------------------------------- /leyou-portal/img/loginbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/loginbg.png -------------------------------------------------------------------------------- /leyou-portal/img/mod-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/mod-list.png -------------------------------------------------------------------------------- /leyou-portal/img/phone-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/phone-bg.png -------------------------------------------------------------------------------- /leyou-portal/img/today01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/today01.png -------------------------------------------------------------------------------- /leyou-portal/img/today02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/today02.png -------------------------------------------------------------------------------- /leyou-portal/img/today03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/today03.png -------------------------------------------------------------------------------- /leyou-portal/img/today04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/today04.png -------------------------------------------------------------------------------- /leyou-portal/fonts/icon-moon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/fonts/icon-moon.eot -------------------------------------------------------------------------------- /leyou-portal/fonts/icon-moon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/fonts/icon-moon.ttf -------------------------------------------------------------------------------- /leyou-portal/fonts/icon-pc.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/fonts/icon-pc.woff -------------------------------------------------------------------------------- /leyou-portal/fonts/icon-tb.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/fonts/icon-tb.woff -------------------------------------------------------------------------------- /leyou-portal/img/_/down-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/down-icon.png -------------------------------------------------------------------------------- /leyou-portal/img/_/gocart01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/gocart01.jpg -------------------------------------------------------------------------------- /leyou-portal/img/_/icon-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/icon-red.png -------------------------------------------------------------------------------- /leyou-portal/img/_/login-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/login-bg.png -------------------------------------------------------------------------------- /leyou-portal/img/_/manage-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/manage-bg.png -------------------------------------------------------------------------------- /leyou-portal/img/_/mobile01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/mobile01.png -------------------------------------------------------------------------------- /leyou-portal/img/_/mobile02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/mobile02.png -------------------------------------------------------------------------------- /leyou-portal/img/_/mobile03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/mobile03.png -------------------------------------------------------------------------------- /leyou-portal/img/_/mobile04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/mobile04.png -------------------------------------------------------------------------------- /leyou-portal/img/_/mobile05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/mobile05.png -------------------------------------------------------------------------------- /leyou-portal/img/_/mobile06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/mobile06.png -------------------------------------------------------------------------------- /leyou-portal/img/_/phone-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/phone-bg.png -------------------------------------------------------------------------------- /leyou-portal/img/_/seckillbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/seckillbg.png -------------------------------------------------------------------------------- /leyou-portal/img/_/shi_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/shi_heart.png -------------------------------------------------------------------------------- /leyou-portal/img/_/shop-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/shop-logo.png -------------------------------------------------------------------------------- /leyou-portal/img/_/shop-part.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/shop-part.png -------------------------------------------------------------------------------- /leyou-portal/img/_/title_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/title_bg.jpg -------------------------------------------------------------------------------- /leyou-portal/img/floor-1-b01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/floor-1-b01.png -------------------------------------------------------------------------------- /leyou-portal/img/floor-1-b02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/floor-1-b02.png -------------------------------------------------------------------------------- /leyou-portal/img/floor-1-b03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/floor-1-b03.png -------------------------------------------------------------------------------- /leyou-portal/img/interest01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/interest01.png -------------------------------------------------------------------------------- /leyou-portal/img/interest02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/interest02.png -------------------------------------------------------------------------------- /leyou-portal/img/interest03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/interest03.png -------------------------------------------------------------------------------- /leyou-portal/img/interest04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/interest04.png -------------------------------------------------------------------------------- /leyou-portal/img/interest05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/interest05.png -------------------------------------------------------------------------------- /leyou-portal/img/interest06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/interest06.png -------------------------------------------------------------------------------- /leyou-portal/fonts/icon-moon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/fonts/icon-moon.woff -------------------------------------------------------------------------------- /leyou-portal/fonts/icon-touch.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/fonts/icon-touch.eot -------------------------------------------------------------------------------- /leyou-portal/fonts/icon-touch.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/fonts/icon-touch.ttf -------------------------------------------------------------------------------- /leyou-portal/fonts/icon-touch.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/fonts/icon-touch.woff -------------------------------------------------------------------------------- /leyou-portal/img/_/empty_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/empty_heart.png -------------------------------------------------------------------------------- /leyou-portal/img/_/itemlike01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/itemlike01.png -------------------------------------------------------------------------------- /leyou-portal/img/_/itemlike02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/itemlike02.png -------------------------------------------------------------------------------- /leyou-portal/img/_/itemlike03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/itemlike03.png -------------------------------------------------------------------------------- /leyou-portal/img/_/itemlike04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/itemlike04.png -------------------------------------------------------------------------------- /leyou-portal/img/_/itemlike05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/itemlike05.png -------------------------------------------------------------------------------- /leyou-portal/img/_/itemlike06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/itemlike06.png -------------------------------------------------------------------------------- /leyou-portal/img/_/photo_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/photo_icon.png -------------------------------------------------------------------------------- /leyou-portal/img/_/shop-intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/shop-intro.png -------------------------------------------------------------------------------- /leyou-portal/img/_/sampling_head.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/sampling_head.jpg -------------------------------------------------------------------------------- /leyou-manage-web/leyou-manage-web/config/prod.env.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | module.exports = { 3 | NODE_ENV: '"production"' 4 | } 5 | -------------------------------------------------------------------------------- /leyou-portal/img/57b51ea9Nb862ca5e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/57b51ea9Nb862ca5e.png -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/pay/fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/pay/fail.png -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/pay/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/pay/icon.png -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/pay/pay1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/pay/pay1.jpg -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/pay/pay2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/pay/pay2.jpg -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/pay/pay3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/pay/pay3.jpg -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/pay/pay4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/pay/pay4.jpg -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/pay/pay5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/pay/pay5.jpg -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/zoom/b1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/zoom/b1.png -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/zoom/b2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/zoom/b2.png -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/zoom/b3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/zoom/b3.png -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/zoom/s1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/zoom/s1.png -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/zoom/s2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/zoom/s2.png -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/zoom/s3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/zoom/s3.png -------------------------------------------------------------------------------- /leyou-portal/img/cartPanelViewIcons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/cartPanelViewIcons.png -------------------------------------------------------------------------------- /leyou-portal/img/_/cooperation_banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/_/cooperation_banner.jpg -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/pay/pay10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/pay/pay10.jpg -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/pay/pay11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/pay/pay11.jpg -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/pay/pay12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/pay/pay12.jpg -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/pay/pay13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/pay/pay13.jpg -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/pay/pay14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/pay/pay14.jpg -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/pay/pay15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/pay/pay15.jpg -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/pay/pay16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/pay/pay16.jpg -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/pay/pay17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/pay/pay17.jpg -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/pay/pay18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/pay/pay18.jpg -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/pay/pay19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/pay/pay19.jpg -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/pay/pay20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/pay/pay20.jpg -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/pay/pay21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/pay/pay21.jpg -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/pay/pay22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/pay/pay22.jpg -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/pay/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/pay/right.png -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/phone/dp01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/phone/dp01.png -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/phone/dp02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/phone/dp02.png -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/phone/dp03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/phone/dp03.png -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/phone/dp04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/phone/dp04.png -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/phone/intro01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/phone/intro01.png -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/phone/intro02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/phone/intro02.png -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/phone/intro03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/phone/intro03.png -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/phone/l-m01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/phone/l-m01.png -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/phone/part01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/phone/part01.png -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/phone/part02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/phone/part02.png -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/phone/part03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/phone/part03.png -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/phone/phone01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/phone/phone01.png -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/phone/phone02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/phone/phone02.png -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/phone/phone03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/phone/phone03.png -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/phone/phone04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/phone/phone04.png -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/phone/phone05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/phone/phone05.png -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/phone/phone06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/phone/phone06.png -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/phone/phone07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/phone/phone07.png -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/phone/phone08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/phone/phone08.png -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/phone/phone09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/phone/phone09.png -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/phone/phone10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/phone/phone10.png -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/phone/phone11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/phone/phone11.png -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/phone/phone12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/phone/phone12.png -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/phone/phone13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/phone/phone13.png -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/phone/phone14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/phone/phone14.png -------------------------------------------------------------------------------- /faye/leyou-item/leyou-item-service/src/test/java/com/leyou/item/test/test.java: -------------------------------------------------------------------------------- 1 | package com.leyou.item.test; 2 | 3 | public class test { 4 | } 5 | -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/phone/mobile01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/phone/mobile01.png -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/phone/mobile02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/phone/mobile02.png -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/phone/mobile03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/phone/mobile03.png -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/phone/mobile04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/phone/mobile04.png -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/phone/mobile05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/phone/mobile05.png -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/phone/mobile06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/phone/mobile06.png -------------------------------------------------------------------------------- /leyou-manage-web/leyou-manage-web/build/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-manage-web/leyou-manage-web/build/logo.png -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/success-cart/buy01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/success-cart/buy01.jpg -------------------------------------------------------------------------------- /leyou-manage-web/leyou-manage-web/src/assets/1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-manage-web/leyou-manage-web/src/assets/1.jpeg -------------------------------------------------------------------------------- /leyou-manage-web/leyou-manage-web/src/assets/2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-manage-web/leyou-manage-web/src/assets/2.jpeg -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/itemlike/itemlike01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/itemlike/itemlike01.png -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/itemlike/itemlike02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/itemlike/itemlike02.png -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/itemlike/itemlike03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/itemlike/itemlike03.png -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/itemlike/itemlike04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/itemlike/itemlike04.png -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/itemlike/itemlike05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/itemlike/itemlike05.png -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/itemlike/itemlike06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/itemlike/itemlike06.png -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/success-cart/buy001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/success-cart/buy001.jpg -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/success-cart/buy002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/success-cart/buy002.jpg -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/success-cart/gocart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/success-cart/gocart.jpg -------------------------------------------------------------------------------- /leyou-manage-web/leyou-manage-web/src/assets/baby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-manage-web/leyou-manage-web/src/assets/baby.png -------------------------------------------------------------------------------- /leyou-manage-web/leyou-manage-web/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-manage-web/leyou-manage-web/src/assets/logo.png -------------------------------------------------------------------------------- /leyou-portal/img/assets/img/success-cart/gocart01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-portal/img/assets/img/success-cart/gocart01.jpg -------------------------------------------------------------------------------- /faye/leyou-cart/target/classes/com/leyou/cart/pojo/Cart.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-cart/target/classes/com/leyou/cart/pojo/Cart.class -------------------------------------------------------------------------------- /faye/leyou-order/target/classes/com/leyou/utils/PayState.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-order/target/classes/com/leyou/utils/PayState.class -------------------------------------------------------------------------------- /faye/leyou-auth/leyou-auth-common/target/test-classes/test2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-auth/leyou-auth-common/target/test-classes/test2.class -------------------------------------------------------------------------------- /faye/leyou-order/target/classes/com/leyou/config/MvcConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-order/target/classes/com/leyou/config/MvcConfig.class -------------------------------------------------------------------------------- /faye/leyou-order/target/classes/com/leyou/config/PayConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-order/target/classes/com/leyou/config/PayConfig.class -------------------------------------------------------------------------------- /faye/leyou-order/target/classes/com/leyou/order/pojo/Order.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-order/target/classes/com/leyou/order/pojo/Order.class -------------------------------------------------------------------------------- /faye/leyou-order/target/classes/com/leyou/utils/PayHelper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-order/target/classes/com/leyou/utils/PayHelper.class -------------------------------------------------------------------------------- /faye/leyou-sms/target/classes/com/leyou/LeyouSmsApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-sms/target/classes/com/leyou/LeyouSmsApplication.class -------------------------------------------------------------------------------- /faye/leyou-sms/target/classes/com/leyou/sms/utils/SmsUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-sms/target/classes/com/leyou/sms/utils/SmsUtils.class -------------------------------------------------------------------------------- /faye/leyou-auth/leyou-auth-common/target/test-classes/person.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-auth/leyou-auth-common/target/test-classes/person.class -------------------------------------------------------------------------------- /faye/leyou-cart/target/classes/com/leyou/LeyouCartApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-cart/target/classes/com/leyou/LeyouCartApplication.class -------------------------------------------------------------------------------- /faye/leyou-search/target/classes/com/leyou/LeyouSearchService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-search/target/classes/com/leyou/LeyouSearchService.class -------------------------------------------------------------------------------- /faye/leyou-search/target/classes/com/leyou/search/pojo/Goods.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-search/target/classes/com/leyou/search/pojo/Goods.class -------------------------------------------------------------------------------- /faye/leyou-cart/target/classes/com/leyou/cart/client/GoodsClient.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-cart/target/classes/com/leyou/cart/client/GoodsClient.class -------------------------------------------------------------------------------- /faye/leyou-common/target/classes/com/leyou/common/utils/IdWorker.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-common/target/classes/com/leyou/common/utils/IdWorker.class -------------------------------------------------------------------------------- /faye/leyou-gateway/target/classes/com/leyou/filter/LoginFliter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-gateway/target/classes/com/leyou/filter/LoginFliter.class -------------------------------------------------------------------------------- /faye/leyou-goods-web/target/test-classes/leyou/Goods/test/test.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-goods-web/target/test-classes/leyou/Goods/test/test.class -------------------------------------------------------------------------------- /faye/leyou-order/target/classes/com/leyou/LeyouOrderApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-order/target/classes/com/leyou/LeyouOrderApplication.class -------------------------------------------------------------------------------- /faye/leyou-order/target/classes/com/leyou/config/IdWorkerConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-order/target/classes/com/leyou/config/IdWorkerConfig.class -------------------------------------------------------------------------------- /faye/leyou-order/target/classes/com/leyou/config/JwtProperties.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-order/target/classes/com/leyou/config/JwtProperties.class -------------------------------------------------------------------------------- /faye/leyou-order/target/classes/com/leyou/config/PayProperties.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-order/target/classes/com/leyou/config/PayProperties.class -------------------------------------------------------------------------------- /faye/leyou-order/target/classes/com/leyou/config/SwaggerConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-order/target/classes/com/leyou/config/SwaggerConfig.class -------------------------------------------------------------------------------- /faye/leyou-order/target/classes/com/leyou/order/pojo/OrderDetail.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-order/target/classes/com/leyou/order/pojo/OrderDetail.class -------------------------------------------------------------------------------- /faye/leyou-order/target/classes/com/leyou/order/pojo/OrderStatus.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-order/target/classes/com/leyou/order/pojo/OrderStatus.class -------------------------------------------------------------------------------- /faye/leyou-search/target/test-classes/com/leyou/search/test/test.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-search/target/test-classes/com/leyou/search/test/test.class -------------------------------------------------------------------------------- /faye/leyou-sms/target/classes/com/leyou/sms/config/SmsProperties.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-sms/target/classes/com/leyou/sms/config/SmsProperties.class -------------------------------------------------------------------------------- /faye/leyou-sms/target/classes/com/leyou/sms/listener/SmsListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-sms/target/classes/com/leyou/sms/listener/SmsListener.class -------------------------------------------------------------------------------- /faye/leyou-upload/target/test-classes/com/leyou/test/FastDFSTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-upload/target/test-classes/com/leyou/test/FastDFSTest.class -------------------------------------------------------------------------------- /faye/leyou-cart/target/classes/com/leyou/cart/config/JwtProperties.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-cart/target/classes/com/leyou/cart/config/JwtProperties.class -------------------------------------------------------------------------------- /faye/leyou-cart/target/classes/com/leyou/cart/service/CartService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-cart/target/classes/com/leyou/cart/service/CartService.class -------------------------------------------------------------------------------- /faye/leyou-common/target/classes/com/leyou/common/pojo/PageResult.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-common/target/classes/com/leyou/common/pojo/PageResult.class -------------------------------------------------------------------------------- /faye/leyou-common/target/classes/com/leyou/common/utils/JsonUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-common/target/classes/com/leyou/common/utils/JsonUtils.class -------------------------------------------------------------------------------- /faye/leyou-order/target/classes/com/leyou/order/mapper/OrderMapper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-order/target/classes/com/leyou/order/mapper/OrderMapper.class -------------------------------------------------------------------------------- /faye/leyou-search/target/test-classes/com/leyou/search/test/test$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-search/target/test-classes/com/leyou/search/test/test$1.class -------------------------------------------------------------------------------- /faye/leyou-upload/target/classes/com/leyou/LeyouUploadApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-upload/target/classes/com/leyou/LeyouUploadApplication.class -------------------------------------------------------------------------------- /faye/leyou-upload/target/classes/com/leyou/service/IUploadService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-upload/target/classes/com/leyou/service/IUploadService.class -------------------------------------------------------------------------------- /leyou-manage-web/leyou-manage-web/src/App.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 10 | -------------------------------------------------------------------------------- /faye/leyou-common/target/classes/com/leyou/common/utils/CookieUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-common/target/classes/com/leyou/common/utils/CookieUtils.class -------------------------------------------------------------------------------- /faye/leyou-common/target/classes/com/leyou/common/utils/NumberUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-common/target/classes/com/leyou/common/utils/NumberUtils.class -------------------------------------------------------------------------------- /faye/leyou-gateway/target/classes/com/leyou/LeyouGatewayAppliaction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-gateway/target/classes/com/leyou/LeyouGatewayAppliaction.class -------------------------------------------------------------------------------- /faye/leyou-order/target/classes/com/leyou/config/IdWorkerProperties.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-order/target/classes/com/leyou/config/IdWorkerProperties.class -------------------------------------------------------------------------------- /faye/leyou-order/target/classes/com/leyou/order/service/OrderService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-order/target/classes/com/leyou/order/service/OrderService.class -------------------------------------------------------------------------------- /faye/leyou-register/target/classes/com/leyou/LeyouRegisterApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-register/target/classes/com/leyou/LeyouRegisterApplication.class -------------------------------------------------------------------------------- /faye/leyou-search/target/classes/com/leyou/search/Client/BrandClient.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-search/target/classes/com/leyou/search/Client/BrandClient.class -------------------------------------------------------------------------------- /faye/leyou-search/target/classes/com/leyou/search/Client/GoodsClient.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-search/target/classes/com/leyou/search/Client/GoodsClient.class -------------------------------------------------------------------------------- /faye/leyou-search/target/classes/com/leyou/search/pojo/SearchRequest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-search/target/classes/com/leyou/search/pojo/SearchRequest.class -------------------------------------------------------------------------------- /faye/leyou-search/target/classes/com/leyou/search/pojo/SearchResult.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-search/target/classes/com/leyou/search/pojo/SearchResult.class -------------------------------------------------------------------------------- /faye/leyou-upload/target/classes/com/leyou/config/FastClientImporter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-upload/target/classes/com/leyou/config/FastClientImporter.class -------------------------------------------------------------------------------- /leyou-manage-web/leyou-manage-web/src/assets/KFOlCnqEu92Fr1MmEU9fBBc4.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-manage-web/leyou-manage-web/src/assets/KFOlCnqEu92Fr1MmEU9fBBc4.woff2 -------------------------------------------------------------------------------- /faye/leyou-auth/leyou-auth-common/target/classes/application.yml: -------------------------------------------------------------------------------- 1 | zuul: 2 | routes: 3 | service-provider: /service-provider/** 4 | service-consumer: /service-consumer/** 5 | prefix: /api # 添加路由前缀 -------------------------------------------------------------------------------- /faye/leyou-cart/target/classes/com/leyou/cart/controller/CartController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-cart/target/classes/com/leyou/cart/controller/CartController.class -------------------------------------------------------------------------------- /faye/leyou-goods-web/target/classes/com/leyou/Goods/Client/BrandClient.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-goods-web/target/classes/com/leyou/Goods/Client/BrandClient.class -------------------------------------------------------------------------------- /faye/leyou-goods-web/target/classes/com/leyou/Goods/Client/GoodsClient.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-goods-web/target/classes/com/leyou/Goods/Client/GoodsClient.class -------------------------------------------------------------------------------- /faye/leyou-goods-web/target/classes/com/leyou/LeyouGoodsWebApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-goods-web/target/classes/com/leyou/LeyouGoodsWebApplication.class -------------------------------------------------------------------------------- /faye/leyou-search/target/classes/com/leyou/search/Client/CategoryClient.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-search/target/classes/com/leyou/search/Client/CategoryClient.class -------------------------------------------------------------------------------- /faye/leyou-search/target/classes/com/leyou/search/service/SearchService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-search/target/classes/com/leyou/search/service/SearchService.class -------------------------------------------------------------------------------- /faye/leyou-upload/target/classes/com/leyou/controller/UploadController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-upload/target/classes/com/leyou/controller/UploadController.class -------------------------------------------------------------------------------- /faye/leyou-auth/leyou-auth-common/src/main/resources/application.yml: -------------------------------------------------------------------------------- 1 | zuul: 2 | routes: 3 | service-provider: /service-provider/** 4 | service-consumer: /service-consumer/** 5 | prefix: /api # 添加路由前缀 -------------------------------------------------------------------------------- /faye/leyou-cart/target/classes/com/leyou/cart/interceptor/LoginInterceptor.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-cart/target/classes/com/leyou/cart/interceptor/LoginInterceptor.class -------------------------------------------------------------------------------- /faye/leyou-gateway/target/classes/com/leyou/config/gateway/JwtProperties.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-gateway/target/classes/com/leyou/config/gateway/JwtProperties.class -------------------------------------------------------------------------------- /faye/leyou-goods-web/target/classes/com/leyou/Goods/Client/CategoryClient.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-goods-web/target/classes/com/leyou/Goods/Client/CategoryClient.class -------------------------------------------------------------------------------- /faye/leyou-goods-web/target/classes/com/leyou/Goods/listener/GoodsListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-goods-web/target/classes/com/leyou/Goods/listener/GoodsListener.class -------------------------------------------------------------------------------- /faye/leyou-goods-web/target/classes/com/leyou/Goods/service/GoodsService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-goods-web/target/classes/com/leyou/Goods/service/GoodsService.class -------------------------------------------------------------------------------- /faye/leyou-order/target/classes/com/leyou/order/controller/OrderController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-order/target/classes/com/leyou/order/controller/OrderController.class -------------------------------------------------------------------------------- /faye/leyou-order/target/classes/com/leyou/order/mapper/OrderDetailMapper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-order/target/classes/com/leyou/order/mapper/OrderDetailMapper.class -------------------------------------------------------------------------------- /faye/leyou-order/target/classes/com/leyou/order/mapper/OrderStatusMapper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-order/target/classes/com/leyou/order/mapper/OrderStatusMapper.class -------------------------------------------------------------------------------- /faye/leyou-order/target/classes/com/leyou/order/service/api/GoodsService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-order/target/classes/com/leyou/order/service/api/GoodsService.class -------------------------------------------------------------------------------- /faye/leyou-search/target/classes/com/leyou/search/listener/GoodsListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-search/target/classes/com/leyou/search/listener/GoodsListener.class -------------------------------------------------------------------------------- /faye/leyou-search/target/classes/com/leyou/search/service/SearchService$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-search/target/classes/com/leyou/search/service/SearchService$1.class -------------------------------------------------------------------------------- /faye/leyou-search/target/classes/com/leyou/search/service/SearchService$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-search/target/classes/com/leyou/search/service/SearchService$2.class -------------------------------------------------------------------------------- /faye/leyou-upload/target/classes/com/leyou/config/LeyouCorsConfiguration.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-upload/target/classes/com/leyou/config/LeyouCorsConfiguration.class -------------------------------------------------------------------------------- /faye/leyou-upload/target/classes/com/leyou/service/Impl/UploadServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-upload/target/classes/com/leyou/service/Impl/UploadServiceImpl.class -------------------------------------------------------------------------------- /leyou-manage-web/leyou-manage-web/src/assets/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/leyou-manage-web/leyou-manage-web/src/assets/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2 -------------------------------------------------------------------------------- /faye/leyou-gateway/target/classes/com/leyou/config/gateway/FilterProperties.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-gateway/target/classes/com/leyou/config/gateway/FilterProperties.class -------------------------------------------------------------------------------- /faye/leyou-goods-web/target/classes/com/leyou/Goods/service/GoodHtmlService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-goods-web/target/classes/com/leyou/Goods/service/GoodHtmlService.class -------------------------------------------------------------------------------- /faye/leyou-item/leyou-item-interfaces/target/classes/com/leyou/item/bo/SpuBo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-item/leyou-item-interfaces/target/classes/com/leyou/item/bo/SpuBo.class -------------------------------------------------------------------------------- /faye/leyou-item/leyou-item-interfaces/target/classes/com/leyou/item/pojo/Sku.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-item/leyou-item-interfaces/target/classes/com/leyou/item/pojo/Sku.class -------------------------------------------------------------------------------- /faye/leyou-item/leyou-item-interfaces/target/classes/com/leyou/item/pojo/Spu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-item/leyou-item-interfaces/target/classes/com/leyou/item/pojo/Spu.class -------------------------------------------------------------------------------- /faye/leyou-order/target/classes/com/leyou/order/interceptor/LoginInterceptor.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-order/target/classes/com/leyou/order/interceptor/LoginInterceptor.class -------------------------------------------------------------------------------- /faye/leyou-search/target/classes/com/leyou/search/Client/SpecificationClient.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-search/target/classes/com/leyou/search/Client/SpecificationClient.class -------------------------------------------------------------------------------- /faye/leyou-user/leyou-user-interface/target/classes/com/leyou/user/pojo/User.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-user/leyou-user-interface/target/classes/com/leyou/user/pojo/User.class -------------------------------------------------------------------------------- /faye/leyou-auth/leyou-auth-common/target/classes/com/leyou/common/pojo/UserInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-auth/leyou-auth-common/target/classes/com/leyou/common/pojo/UserInfo.class -------------------------------------------------------------------------------- /faye/leyou-cart/target/classes/com/leyou/cart/config/LeyouWebMvcConfiguration.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-cart/target/classes/com/leyou/cart/config/LeyouWebMvcConfiguration.class -------------------------------------------------------------------------------- /faye/leyou-goods-web/target/classes/com/leyou/Goods/Client/SpecificationClient.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-goods-web/target/classes/com/leyou/Goods/Client/SpecificationClient.class -------------------------------------------------------------------------------- /faye/leyou-goods-web/target/classes/com/leyou/Goods/controller/GoodsController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-goods-web/target/classes/com/leyou/Goods/controller/GoodsController.class -------------------------------------------------------------------------------- /faye/leyou-item/leyou-item-interfaces/target/classes/com/leyou/item/pojo/Brand.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-item/leyou-item-interfaces/target/classes/com/leyou/item/pojo/Brand.class -------------------------------------------------------------------------------- /faye/leyou-item/leyou-item-interfaces/target/classes/com/leyou/item/pojo/Stock.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-item/leyou-item-interfaces/target/classes/com/leyou/item/pojo/Stock.class -------------------------------------------------------------------------------- /faye/leyou-item/leyou-item-service/target/test-classes/com/leyou/item/test/test.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-item/leyou-item-service/target/test-classes/com/leyou/item/test/test.class -------------------------------------------------------------------------------- /faye/leyou-search/target/classes/com/leyou/search/controller/SearchController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-search/target/classes/com/leyou/search/controller/SearchController.class -------------------------------------------------------------------------------- /faye/leyou-search/target/classes/com/leyou/search/reponsitory/GoodReponsitory.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-search/target/classes/com/leyou/search/reponsitory/GoodReponsitory.class -------------------------------------------------------------------------------- /faye/leyou-search/target/test-classes/com/leyou/search/test/ElasticsearchTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-search/target/test-classes/com/leyou/search/test/ElasticsearchTest.class -------------------------------------------------------------------------------- /faye/leyou-user/leyou-user-interface/target/classes/com/leyou/user/api/UserApi.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-user/leyou-user-interface/target/classes/com/leyou/user/api/UserApi.class -------------------------------------------------------------------------------- /faye/leyou-auth/leyou-auth-common/target/classes/com/leyou/common/utils/JwtUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-auth/leyou-auth-common/target/classes/com/leyou/common/utils/JwtUtils.class -------------------------------------------------------------------------------- /faye/leyou-auth/leyou-auth-common/target/classes/com/leyou/common/utils/RsaUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-auth/leyou-auth-common/target/classes/com/leyou/common/utils/RsaUtils.class -------------------------------------------------------------------------------- /faye/leyou-auth/leyou-auth-service/target/classes/com/leyou/LeyouAuthApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-auth/leyou-auth-service/target/classes/com/leyou/LeyouAuthApplication.class -------------------------------------------------------------------------------- /faye/leyou-gateway/target/classes/com/leyou/config/gateway/LeyouCorsConfiguration.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-gateway/target/classes/com/leyou/config/gateway/LeyouCorsConfiguration.class -------------------------------------------------------------------------------- /faye/leyou-item/leyou-item-interfaces/target/classes/com/leyou/item/api/BrandApi.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-item/leyou-item-interfaces/target/classes/com/leyou/item/api/BrandApi.class -------------------------------------------------------------------------------- /faye/leyou-item/leyou-item-interfaces/target/classes/com/leyou/item/api/GoodsApi.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-item/leyou-item-interfaces/target/classes/com/leyou/item/api/GoodsApi.class -------------------------------------------------------------------------------- /faye/leyou-item/leyou-item-interfaces/target/classes/com/leyou/item/pojo/Category.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-item/leyou-item-interfaces/target/classes/com/leyou/item/pojo/Category.class -------------------------------------------------------------------------------- /faye/leyou-item/leyou-item-service/target/classes/com/leyou/LeyouItemAppliaction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-item/leyou-item-service/target/classes/com/leyou/LeyouItemAppliaction.class -------------------------------------------------------------------------------- /faye/leyou-item/leyou-item-service/target/classes/com/leyou/item/mapper/SkuMapper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-item/leyou-item-service/target/classes/com/leyou/item/mapper/SkuMapper.class -------------------------------------------------------------------------------- /faye/leyou-item/leyou-item-service/target/classes/com/leyou/item/mapper/SpuMapper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-item/leyou-item-service/target/classes/com/leyou/item/mapper/SpuMapper.class -------------------------------------------------------------------------------- /faye/leyou-user/leyou-user-service/target/classes/com/leyou/LeyouUserApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-user/leyou-user-service/target/classes/com/leyou/LeyouUserApplication.class -------------------------------------------------------------------------------- /faye/leyou-user/leyou-user-service/target/classes/com/leyou/user/ulits/CodecUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-user/leyou-user-service/target/classes/com/leyou/user/ulits/CodecUtils.class -------------------------------------------------------------------------------- /faye/leyou-auth/leyou-auth-common/target/classes/com/leyou/common/utils/JwtConstans.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-auth/leyou-auth-common/target/classes/com/leyou/common/utils/JwtConstans.class -------------------------------------------------------------------------------- /faye/leyou-auth/leyou-auth-common/target/classes/com/leyou/common/utils/ObjectUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-auth/leyou-auth-common/target/classes/com/leyou/common/utils/ObjectUtils.class -------------------------------------------------------------------------------- /faye/leyou-auth/leyou-auth-service/target/classes/com/leyou/auth/client/UserClient.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-auth/leyou-auth-service/target/classes/com/leyou/auth/client/UserClient.class -------------------------------------------------------------------------------- /faye/leyou-auth/leyou-auth-service/target/classes/com/leyou/auth/service/AuthService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-auth/leyou-auth-service/target/classes/com/leyou/auth/service/AuthService.class -------------------------------------------------------------------------------- /faye/leyou-item/leyou-item-interfaces/target/classes/com/leyou/item/api/CatagoryApi.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-item/leyou-item-interfaces/target/classes/com/leyou/item/api/CatagoryApi.class -------------------------------------------------------------------------------- /faye/leyou-item/leyou-item-interfaces/target/classes/com/leyou/item/pojo/SpecGroup.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-item/leyou-item-interfaces/target/classes/com/leyou/item/pojo/SpecGroup.class -------------------------------------------------------------------------------- /faye/leyou-item/leyou-item-interfaces/target/classes/com/leyou/item/pojo/SpecParam.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-item/leyou-item-interfaces/target/classes/com/leyou/item/pojo/SpecParam.class -------------------------------------------------------------------------------- /faye/leyou-item/leyou-item-interfaces/target/classes/com/leyou/item/pojo/SpuDetail.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-item/leyou-item-interfaces/target/classes/com/leyou/item/pojo/SpuDetail.class -------------------------------------------------------------------------------- /faye/leyou-item/leyou-item-service/target/classes/com/leyou/item/mapper/BrandMapper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-item/leyou-item-service/target/classes/com/leyou/item/mapper/BrandMapper.class -------------------------------------------------------------------------------- /faye/leyou-item/leyou-item-service/target/classes/com/leyou/item/mapper/StockMapper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-item/leyou-item-service/target/classes/com/leyou/item/mapper/StockMapper.class -------------------------------------------------------------------------------- /faye/leyou-user/leyou-user-service/target/classes/com/leyou/user/mapper/UserMapper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-user/leyou-user-service/target/classes/com/leyou/user/mapper/UserMapper.class -------------------------------------------------------------------------------- /faye/leyou-user/leyou-user-service/target/classes/com/leyou/user/service/UserService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-user/leyou-user-service/target/classes/com/leyou/user/service/UserService.class -------------------------------------------------------------------------------- /faye/leyou-user/leyou-user-service/target/test-classes/com/leyou/user/test/RedisTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-user/leyou-user-service/target/test-classes/com/leyou/user/test/RedisTest.class -------------------------------------------------------------------------------- /faye/leyou-auth/leyou-auth-service/target/classes/com/leyou/auth/config/JwtProperties.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-auth/leyou-auth-service/target/classes/com/leyou/auth/config/JwtProperties.class -------------------------------------------------------------------------------- /faye/leyou-item/leyou-item-service/target/classes/com/leyou/item/mapper/CategoryMapper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-item/leyou-item-service/target/classes/com/leyou/item/mapper/CategoryMapper.class -------------------------------------------------------------------------------- /faye/leyou-item/leyou-item-service/target/classes/com/leyou/item/mapper/SpecParmMapper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-item/leyou-item-service/target/classes/com/leyou/item/mapper/SpecParmMapper.class -------------------------------------------------------------------------------- /faye/leyou-item/leyou-item-service/target/classes/com/leyou/item/service/GoodsService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-item/leyou-item-service/target/classes/com/leyou/item/service/GoodsService.class -------------------------------------------------------------------------------- /faye/leyou-item/leyou-item-service/target/classes/com/leyou/item/service/IBrandServcie.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-item/leyou-item-service/target/classes/com/leyou/item/service/IBrandServcie.class -------------------------------------------------------------------------------- /faye/leyou-user/leyou-user-service/target/test-classes/com/leyou/user/test/StringTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-user/leyou-user-service/target/test-classes/com/leyou/user/test/StringTest.class -------------------------------------------------------------------------------- /leyou-manage-web/leyou-manage-web/config/dev.env.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | const merge = require('webpack-merge') 3 | const prodEnv = require('./prod.env') 4 | 5 | module.exports = merge(prodEnv, { 6 | NODE_ENV: '"development"' 7 | }) 8 | -------------------------------------------------------------------------------- /faye/leyou-item/leyou-item-interfaces/target/classes/com/leyou/item/api/SpecificationApi.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-item/leyou-item-interfaces/target/classes/com/leyou/item/api/SpecificationApi.class -------------------------------------------------------------------------------- /faye/leyou-item/leyou-item-service/target/classes/com/leyou/item/mapper/SpecGroupMapper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-item/leyou-item-service/target/classes/com/leyou/item/mapper/SpecGroupMapper.class -------------------------------------------------------------------------------- /faye/leyou-item/leyou-item-service/target/classes/com/leyou/item/mapper/SpuDetailMapper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-item/leyou-item-service/target/classes/com/leyou/item/mapper/SpuDetailMapper.class -------------------------------------------------------------------------------- /faye/leyou-item/leyou-item-service/target/classes/com/leyou/item/service/ICategoryService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-item/leyou-item-service/target/classes/com/leyou/item/service/ICategoryService.class -------------------------------------------------------------------------------- /leyou-manage-web/leyou-manage-web/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | indent_style = space 6 | indent_size = 2 7 | end_of_line = lf 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | -------------------------------------------------------------------------------- /faye/leyou-auth/leyou-auth-service/target/classes/com/leyou/auth/controller/AuthController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-auth/leyou-auth-service/target/classes/com/leyou/auth/controller/AuthController.class -------------------------------------------------------------------------------- /faye/leyou-item/leyou-item-service/target/classes/com/leyou/item/cotroller/BrandController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-item/leyou-item-service/target/classes/com/leyou/item/cotroller/BrandController.class -------------------------------------------------------------------------------- /faye/leyou-item/leyou-item-service/target/classes/com/leyou/item/cotroller/GoodsController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-item/leyou-item-service/target/classes/com/leyou/item/cotroller/GoodsController.class -------------------------------------------------------------------------------- /faye/leyou-user/leyou-user-service/target/classes/com/leyou/user/controller/UserController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-user/leyou-user-service/target/classes/com/leyou/user/controller/UserController.class -------------------------------------------------------------------------------- /faye/leyou-item/leyou-item-service/target/classes/com/leyou/item/cotroller/CatagoryController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-item/leyou-item-service/target/classes/com/leyou/item/cotroller/CatagoryController.class -------------------------------------------------------------------------------- /faye/leyou-item/leyou-item-service/target/classes/com/leyou/item/service/Impl/BrandServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-item/leyou-item-service/target/classes/com/leyou/item/service/Impl/BrandServiceImpl.class -------------------------------------------------------------------------------- /faye/leyou-item/leyou-item-service/target/classes/com/leyou/item/service/SpecificationService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-item/leyou-item-service/target/classes/com/leyou/item/service/SpecificationService.class -------------------------------------------------------------------------------- /faye/leyou-upload/src/main/java/com/leyou/service/IUploadService.java: -------------------------------------------------------------------------------- 1 | package com.leyou.service; 2 | 3 | import org.springframework.web.multipart.MultipartFile; 4 | 5 | public interface IUploadService { 6 | String upload(MultipartFile file); 7 | } 8 | -------------------------------------------------------------------------------- /faye/leyou-auth/leyou-auth-common/target/classes/static/Vue.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Title 6 | 7 | 8 | 9 | 10 | 12 | -------------------------------------------------------------------------------- /faye/leyou-item/leyou-item-service/target/classes/com/leyou/item/cotroller/SpecificationController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-item/leyou-item-service/target/classes/com/leyou/item/cotroller/SpecificationController.class -------------------------------------------------------------------------------- /faye/leyou-item/leyou-item-service/target/classes/com/leyou/item/service/Impl/CategoryServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faye-ch/faye_shop/HEAD/faye/leyou-item/leyou-item-service/target/classes/com/leyou/item/service/Impl/CategoryServiceImpl.class -------------------------------------------------------------------------------- /faye/leyou-auth/leyou-auth-common/src/main/resources/static/Vue.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Title 6 | 7 | 8 | 9 | 10 | 12 | -------------------------------------------------------------------------------- /faye/leyou-item/leyou-item-service/src/main/java/com/leyou/item/mapper/SkuMapper.java: -------------------------------------------------------------------------------- 1 | package com.leyou.item.mapper; 2 | 3 | import com.leyou.item.pojo.Sku; 4 | import tk.mybatis.mapper.common.Mapper; 5 | 6 | public interface SkuMapper extends Mapper { 7 | } 8 | -------------------------------------------------------------------------------- /faye/leyou-item/leyou-item-service/src/main/java/com/leyou/item/mapper/SpuMapper.java: -------------------------------------------------------------------------------- 1 | package com.leyou.item.mapper; 2 | 3 | import com.leyou.item.pojo.Spu; 4 | import tk.mybatis.mapper.common.Mapper; 5 | 6 | public interface SpuMapper extends Mapper { 7 | } 8 | -------------------------------------------------------------------------------- /faye/leyou-user/leyou-user-service/src/main/java/com/leyou/user/mapper/UserMapper.java: -------------------------------------------------------------------------------- 1 | package com.leyou.user.mapper; 2 | 3 | import com.leyou.user.pojo.User; 4 | import tk.mybatis.mapper.common.Mapper; 5 | 6 | public interface UserMapper extends Mapper { 7 | } 8 | -------------------------------------------------------------------------------- /leyou-manage-web/leyou-manage-web/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | /dist/ 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | 8 | # Editor directories and files 9 | .idea 10 | .vscode 11 | *.suo 12 | *.ntvs* 13 | *.njsproj 14 | *.sln 15 | -------------------------------------------------------------------------------- /faye/leyou-item/leyou-item-service/src/main/java/com/leyou/item/mapper/StockMapper.java: -------------------------------------------------------------------------------- 1 | package com.leyou.item.mapper; 2 | 3 | import com.leyou.item.pojo.Stock; 4 | import tk.mybatis.mapper.common.Mapper; 5 | 6 | public interface StockMapper extends Mapper { 7 | } 8 | -------------------------------------------------------------------------------- /leyou-manage-web/leyou-manage-web/src/pages/user/Statistics.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 10 | 11 | 14 | -------------------------------------------------------------------------------- /faye/leyou-item/leyou-item-service/src/main/java/com/leyou/item/mapper/SpecGroupMapper.java: -------------------------------------------------------------------------------- 1 | package com.leyou.item.mapper; 2 | 3 | import com.leyou.item.pojo.SpecGroup; 4 | import tk.mybatis.mapper.common.Mapper; 5 | public interface SpecGroupMapper extends Mapper { 6 | } 7 | -------------------------------------------------------------------------------- /faye/leyou-order/src/main/java/com/leyou/order/mapper/OrderStatusMapper.java: -------------------------------------------------------------------------------- 1 | package com.leyou.order.mapper; 2 | 3 | import com.leyou.order.pojo.OrderStatus; 4 | import tk.mybatis.mapper.common.Mapper; 5 | 6 | public interface OrderStatusMapper extends Mapper { 7 | } 8 | -------------------------------------------------------------------------------- /faye/leyou-auth/leyou-auth-common/src/main/java/com/leyou/common/utils/JwtConstans.java: -------------------------------------------------------------------------------- 1 | package com.leyou.common.utils; 2 | 3 | public abstract class JwtConstans { 4 | public static final String JWT_KEY_ID = "id"; 5 | public static final String JWT_KEY_USER_NAME = "username"; 6 | } -------------------------------------------------------------------------------- /faye/leyou-item/leyou-item-service/src/main/java/com/leyou/item/mapper/SpecParmMapper.java: -------------------------------------------------------------------------------- 1 | package com.leyou.item.mapper; 2 | 3 | import com.leyou.item.pojo.SpecParam; 4 | import tk.mybatis.mapper.common.Mapper; 5 | 6 | public interface SpecParmMapper extends Mapper { 7 | } 8 | -------------------------------------------------------------------------------- /faye/leyou-item/leyou-item-service/src/main/java/com/leyou/item/mapper/SpuDetailMapper.java: -------------------------------------------------------------------------------- 1 | package com.leyou.item.mapper; 2 | 3 | import com.leyou.item.pojo.SpuDetail; 4 | import tk.mybatis.mapper.common.Mapper; 5 | 6 | public interface SpuDetailMapper extends Mapper { 7 | } 8 | -------------------------------------------------------------------------------- /leyou-manage-web/leyou-manage-web/src/pages/trade/Promotion.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 12 | 13 | 16 | -------------------------------------------------------------------------------- /faye/leyou-cart/src/main/java/com/leyou/cart/client/GoodsClient.java: -------------------------------------------------------------------------------- 1 | package com.leyou.cart.client; 2 | 3 | import com.leyou.item.api.GoodsApi; 4 | import org.springframework.cloud.openfeign.FeignClient; 5 | 6 | @FeignClient("item-service") 7 | public interface GoodsClient extends GoodsApi { 8 | } 9 | -------------------------------------------------------------------------------- /faye/leyou-search/src/main/java/com/leyou/search/Client/GoodsClient.java: -------------------------------------------------------------------------------- 1 | package com.leyou.search.Client; 2 | import com.leyou.item.api.GoodsApi; 3 | import org.springframework.cloud.openfeign.FeignClient; 4 | 5 | @FeignClient(value = "item-service") 6 | public interface GoodsClient extends GoodsApi { 7 | } 8 | -------------------------------------------------------------------------------- /faye/leyou-goods-web/src/main/java/com/leyou/Goods/Client/GoodsClient.java: -------------------------------------------------------------------------------- 1 | package com.leyou.Goods.Client; 2 | import com.leyou.item.api.GoodsApi; 3 | import org.springframework.cloud.openfeign.FeignClient; 4 | 5 | @FeignClient(value = "item-service") 6 | public interface GoodsClient extends GoodsApi { 7 | } 8 | -------------------------------------------------------------------------------- /faye/leyou-search/src/main/java/com/leyou/search/Client/BrandClient.java: -------------------------------------------------------------------------------- 1 | package com.leyou.search.Client; 2 | 3 | import com.leyou.item.api.BrandApi; 4 | import org.springframework.cloud.openfeign.FeignClient; 5 | 6 | @FeignClient(value = "item-service") 7 | public interface BrandClient extends BrandApi { 8 | } 9 | -------------------------------------------------------------------------------- /faye/leyou-goods-web/src/main/java/com/leyou/Goods/Client/BrandClient.java: -------------------------------------------------------------------------------- 1 | package com.leyou.Goods.Client; 2 | 3 | import com.leyou.item.api.BrandApi; 4 | import org.springframework.cloud.openfeign.FeignClient; 5 | 6 | @FeignClient(value = "item-service") 7 | public interface BrandClient extends BrandApi { 8 | } 9 | -------------------------------------------------------------------------------- /leyou-portal/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /faye/leyou-goods-web/src/main/java/com/leyou/Goods/Client/CategoryClient.java: -------------------------------------------------------------------------------- 1 | package com.leyou.Goods.Client; 2 | 3 | import com.leyou.item.api.CatagoryApi; 4 | import org.springframework.cloud.openfeign.FeignClient; 5 | 6 | @FeignClient(value = "item-service") 7 | public interface CategoryClient extends CatagoryApi { 8 | } 9 | -------------------------------------------------------------------------------- /faye/leyou-search/src/main/java/com/leyou/search/Client/CategoryClient.java: -------------------------------------------------------------------------------- 1 | package com.leyou.search.Client; 2 | 3 | import com.leyou.item.api.CatagoryApi; 4 | import org.springframework.cloud.openfeign.FeignClient; 5 | 6 | @FeignClient(value = "item-service") 7 | public interface CategoryClient extends CatagoryApi { 8 | } 9 | -------------------------------------------------------------------------------- /leyou-portal/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /faye/leyou-auth/leyou-auth-service/src/main/java/com/leyou/auth/client/UserClient.java: -------------------------------------------------------------------------------- 1 | package com.leyou.auth.client; 2 | 3 | import com.leyou.user.api.UserApi; 4 | import org.springframework.cloud.openfeign.FeignClient; 5 | 6 | @FeignClient("user-service") 7 | public interface UserClient extends UserApi { 8 | 9 | 10 | 11 | } 12 | -------------------------------------------------------------------------------- /faye/leyou-order/src/main/java/com/leyou/order/service/api/GoodsService.java: -------------------------------------------------------------------------------- 1 | package com.leyou.order.service.api; 2 | 3 | import com.leyou.item.api.GoodsApi; 4 | import org.springframework.cloud.openfeign.FeignClient; 5 | 6 | @FeignClient(value = "leyou-gateway", path = "/api/item") 7 | public interface GoodsService extends GoodsApi { 8 | } 9 | -------------------------------------------------------------------------------- /leyou-manage-web/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /leyou-manage-web/leyou-manage-web/.postcssrc.js: -------------------------------------------------------------------------------- 1 | // https://github.com/michael-ciniawsky/postcss-load-config 2 | 3 | module.exports = { 4 | "plugins": { 5 | "postcss-import": {}, 6 | "postcss-url": {}, 7 | // to edit target browsers: use "browserslist" field in package.json 8 | "autoprefixer": {} 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /faye/leyou-goods-web/src/main/java/com/leyou/Goods/Client/SpecificationClient.java: -------------------------------------------------------------------------------- 1 | package com.leyou.Goods.Client; 2 | 3 | import com.leyou.item.api.SpecificationApi; 4 | import org.springframework.cloud.openfeign.FeignClient; 5 | 6 | @FeignClient(value = "item-service") 7 | public interface SpecificationClient extends SpecificationApi { 8 | } 9 | -------------------------------------------------------------------------------- /faye/leyou-search/src/main/java/com/leyou/search/Client/SpecificationClient.java: -------------------------------------------------------------------------------- 1 | package com.leyou.search.Client; 2 | 3 | import com.leyou.item.api.SpecificationApi; 4 | import org.springframework.cloud.openfeign.FeignClient; 5 | 6 | @FeignClient(value = "item-service") 7 | public interface SpecificationClient extends SpecificationApi { 8 | } 9 | -------------------------------------------------------------------------------- /leyou-portal/leyou-portal.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /faye/leyou-order/src/main/java/com/leyou/utils/PayState.java: -------------------------------------------------------------------------------- 1 | package com.leyou.utils; 2 | 3 | public enum PayState { 4 | NOT_PAY(0),SUCCESS(1),FAIL(2); 5 | 6 | PayState(int value) { 7 | this.value = value; 8 | } 9 | 10 | int value; 11 | 12 | public int getValue() { 13 | return value; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /faye/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /faye/leyou-order/src/main/java/com/leyou/order/mapper/OrderDetailMapper.java: -------------------------------------------------------------------------------- 1 | package com.leyou.order.mapper; 2 | 3 | import com.leyou.order.pojo.OrderDetail; 4 | import tk.mybatis.mapper.common.Mapper; 5 | import tk.mybatis.mapper.common.special.InsertListMapper; 6 | 7 | public interface OrderDetailMapper extends Mapper, InsertListMapper { 8 | } 9 | -------------------------------------------------------------------------------- /leyou-manage-web/leyou-manage-web/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | leyou-manage-web 7 | 8 | 9 |
10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/leyou-auth/leyou-auth-common/src/test/java/person.java: -------------------------------------------------------------------------------- 1 | public class person { 2 | 3 | public String name; 4 | public String adress; 5 | public Integer heigth; 6 | 7 | person(){ 8 | 9 | } 10 | person(String name){ 11 | this.name=name; 12 | } 13 | 14 | public String sayHolle(String sayString){ 15 | return sayString; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /leyou-manage-web/.idea/leyou-manage-web.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /leyou-portal/js/plugins/qs.js: -------------------------------------------------------------------------------- 1 | const qs = { 2 | //对escape()编码的字符串进行解码 3 | getQueryString: function (name) { 4 | var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i"); 5 | var r = window.location.search.substr(1).match(reg); 6 | if (r != null) { 7 | return unescape(r[2]); 8 | } 9 | return null;//如果此处只写return;则返回的是undefined 10 | } 11 | }; -------------------------------------------------------------------------------- /faye/leyou-search/src/main/java/com/leyou/search/reponsitory/GoodReponsitory.java: -------------------------------------------------------------------------------- 1 | package com.leyou.search.reponsitory; 2 | 3 | import com.leyou.search.pojo.Goods; 4 | import org.springframework.data.elasticsearch.core.ElasticsearchTemplate; 5 | import org.springframework.data.elasticsearch.repository.ElasticsearchRepository; 6 | 7 | public interface GoodReponsitory extends ElasticsearchRepository { 8 | } 9 | -------------------------------------------------------------------------------- /faye/leyou-sms/src/main/java/com/leyou/LeyouSmsApplication.java: -------------------------------------------------------------------------------- 1 | package com.leyou; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | 6 | @SpringBootApplication 7 | public class LeyouSmsApplication { 8 | 9 | public static void main(String[] args) { 10 | SpringApplication.run(LeyouSmsApplication.class); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /leyou-manage-web/leyou-manage-web/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | ["env", { 4 | "modules": false, 5 | "targets": { 6 | "browsers": ["> 1%", "last 2 versions", "not ie <= 8"] 7 | } 8 | }], 9 | "stage-2" 10 | ], 11 | "plugins": ["transform-vue-jsx", "transform-runtime",["import", { 12 | "libraryName": "iview", 13 | "libraryDirectory": "src/components" 14 | }]] 15 | } 16 | -------------------------------------------------------------------------------- /faye/leyou-item/leyou-item-service/src/main/java/com/leyou/item/service/ICategoryService.java: -------------------------------------------------------------------------------- 1 | package com.leyou.item.service; 2 | 3 | import com.leyou.item.pojo.Category; 4 | 5 | import java.util.List; 6 | 7 | public interface ICategoryService { 8 | List queryCategoryByPid(Long pid); 9 | 10 | List queryByBrandId(Long bid); 11 | 12 | List queryCnameListByCidList(List longs); 13 | } 14 | -------------------------------------------------------------------------------- /faye/leyou-goods-web/target/classes/application.yml: -------------------------------------------------------------------------------- 1 | server: 2 | port: 8084 3 | spring: 4 | application: 5 | name: leyou-goods-web 6 | thymeleaf: 7 | cache: false 8 | rabbitmq: 9 | host: 127.0.0.1 10 | virtual-host: /leyou 11 | username: leyou 12 | password: leyou 13 | eureka: 14 | client: 15 | service-url: 16 | defaultZone: http://127.0.0.1:10086/eureka 17 | registry-fetch-interval-seconds: 5 -------------------------------------------------------------------------------- /faye/leyou-goods-web/src/main/resources/application.yml: -------------------------------------------------------------------------------- 1 | server: 2 | port: 8084 3 | spring: 4 | application: 5 | name: leyou-goods-web 6 | thymeleaf: 7 | cache: false 8 | rabbitmq: 9 | host: 127.0.0.1 10 | virtual-host: /leyou 11 | username: leyou 12 | password: leyou 13 | eureka: 14 | client: 15 | service-url: 16 | defaultZone: http://127.0.0.1:10086/eureka 17 | registry-fetch-interval-seconds: 5 -------------------------------------------------------------------------------- /faye/leyou-register/target/classes/application.yml: -------------------------------------------------------------------------------- 1 | server: 2 | port: 10086 3 | spring: 4 | application: 5 | name: leyou-register 6 | eureka: 7 | client: 8 | service-url: 9 | defaultZone: http://localhost:10086/eureka 10 | register-with-eureka: false #将自己注册到eureka 的服务列表 11 | fetch-registry: false #是否拉取服务列表 12 | server: 13 | enable-self-preservation: false #关闭自我包含 14 | eviction-interval-timer-in-ms: 5000 #每5秒中进行一次服务列表的清理 -------------------------------------------------------------------------------- /faye/leyou-register/src/main/resources/application.yml: -------------------------------------------------------------------------------- 1 | server: 2 | port: 10086 3 | spring: 4 | application: 5 | name: leyou-register 6 | eureka: 7 | client: 8 | service-url: 9 | defaultZone: http://localhost:10086/eureka 10 | register-with-eureka: false #将自己注册到eureka 的服务列表 11 | fetch-registry: false #是否拉取服务列表 12 | server: 13 | enable-self-preservation: false #关闭自我包含 14 | eviction-interval-timer-in-ms: 5000 #每5秒中进行一次服务列表的清理 -------------------------------------------------------------------------------- /faye/leyou-order/src/main/java/com/leyou/order/mapper/OrderMapper.java: -------------------------------------------------------------------------------- 1 | package com.leyou.order.mapper; 2 | 3 | import com.leyou.order.pojo.Order; 4 | import org.apache.ibatis.annotations.Param; 5 | import tk.mybatis.mapper.common.Mapper; 6 | 7 | import java.util.List; 8 | 9 | public interface OrderMapper extends Mapper { 10 | 11 | List queryOrderList( 12 | @Param("userId") Long userId, 13 | @Param("status") Integer status); 14 | } 15 | -------------------------------------------------------------------------------- /faye/leyou-sms/src/main/resources/application.yml: -------------------------------------------------------------------------------- 1 | server: 2 | port: 8086 3 | spring: 4 | application: 5 | name: sms-service 6 | rabbitmq: 7 | host: 127.0.0.1 8 | virtual-host: /leyou 9 | username: leyou 10 | password: leyou 11 | 12 | leyou: 13 | sms: 14 | accessKeyId: LTAI4FxyfTthjxxxxxxxx# 你自己的accessKeyId 15 | accessKeySecret: dFAlEFml9AiVvbEzCxxxxxxxxxxx # 你自己的AccessKeySecret 16 | signName: 乐优商城 # 签名名称 17 | verifyCodeTemplate: SMS_189523392 # 模板名称 -------------------------------------------------------------------------------- /faye/leyou-sms/target/classes/application.yml: -------------------------------------------------------------------------------- 1 | server: 2 | port: 8086 3 | spring: 4 | application: 5 | name: sms-service 6 | rabbitmq: 7 | host: 127.0.0.1 8 | virtual-host: /leyou 9 | username: leyou 10 | password: leyou 11 | 12 | leyou: 13 | sms: 14 | accessKeyId: LTAI4FxyfTthj6WJeYPwsF1r # 你自己的accessKeyId 15 | accessKeySecret: dFAlEFml9AiVvbEzC1Z2aZqwdZpSxo # 你自己的AccessKeySecret 16 | signName: 乐优商城 # 签名名称 17 | verifyCodeTemplate: SMS_189523392 # 模板名称 -------------------------------------------------------------------------------- /faye/leyou-item/leyou-item.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /leyou-portal/js/pages/getOrderInfo.js: -------------------------------------------------------------------------------- 1 | $(function(){ 2 | $(".address").hover(function(){ 3 | $(this).addClass("address-hover"); 4 | },function(){ 5 | $(this).removeClass("address-hover"); 6 | }); 7 | }) 8 | 9 | $(function(){ 10 | $(".addr-item .name").click(function(){ 11 | $(this).toggleClass("selected").siblings().removeClass("selected"); 12 | }); 13 | $(".payType li").click(function(){ 14 | $(this).toggleClass("selected").siblings().removeClass("selected"); 15 | }); 16 | }) 17 | -------------------------------------------------------------------------------- /faye/leyou-user/leyou-user-interface/src/main/java/com/leyou/user/api/UserApi.java: -------------------------------------------------------------------------------- 1 | package com.leyou.user.api; 2 | 3 | 4 | import com.leyou.user.pojo.User; 5 | import org.springframework.http.ResponseEntity; 6 | import org.springframework.web.bind.annotation.GetMapping; 7 | import org.springframework.web.bind.annotation.RequestParam; 8 | 9 | public interface UserApi { 10 | 11 | @GetMapping("query") 12 | public User queryUser(@RequestParam("username")String username, @RequestParam("password")String password); 13 | } 14 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__junit_junit_4_12.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/leyou-upload/src/main/java/com/leyou/LeyouUploadApplication.java: -------------------------------------------------------------------------------- 1 | package com.leyou; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | import org.springframework.cloud.client.discovery.EnableDiscoveryClient; 6 | 7 | @SpringBootApplication 8 | @EnableDiscoveryClient 9 | public class LeyouUploadApplication { 10 | 11 | public static void main(String[] args) { 12 | SpringApplication.run(LeyouUploadApplication.class); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /leyou-manage-web/leyou-manage-web/src/.gitrepo: -------------------------------------------------------------------------------- 1 | ; DO NOT EDIT (unless you know what you are doing) 2 | ; 3 | ; This subdirectory is a git "subrepo", and this file is maintained by the 4 | ; git-subrepo command. See https://github.com/git-commands/git-subrepo#readme 5 | ; 6 | [subrepo] 7 | remote = https://github.com/vuetifyjs/templates-common.git 8 | branch = subrepo/webpack-src 9 | commit = 090741fa8ba4da0c6f85db64eff64550704123e1 10 | parent = e05204fc0583a8c99f1963ce873eba1266838215 11 | method = merge 12 | cmdver = 0.4.0 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__antlr_antlr_2_7_7.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/leyou-cart/target/classes/application.yml: -------------------------------------------------------------------------------- 1 | 2 | server: 3 | port: 8088 4 | spring: 5 | application: 6 | name: cart-service 7 | redis: 8 | host: 127.0.0.1 9 | eureka: 10 | client: 11 | service-url: 12 | defaultZone: http://localhost:10086/eureka 13 | registry-fetch-interval-seconds: 10 14 | instance: 15 | lease-expiration-duration-in-seconds: 15 16 | lease-renewal-interval-in-seconds: 5 17 | leyou: 18 | jwt: 19 | pubKeyPath: C:\\tmp\\rsa\\rsa.pub # 公钥地址 20 | cookieName: LY_TOKEN 21 | 22 | 23 | -------------------------------------------------------------------------------- /faye/leyou-cart/src/main/resources/application.yml: -------------------------------------------------------------------------------- 1 | 2 | server: 3 | port: 8088 4 | spring: 5 | application: 6 | name: cart-service 7 | redis: 8 | host: 127.0.0.1 9 | eureka: 10 | client: 11 | service-url: 12 | defaultZone: http://localhost:10086/eureka 13 | registry-fetch-interval-seconds: 10 14 | instance: 15 | lease-expiration-duration-in-seconds: 15 16 | lease-renewal-interval-in-seconds: 5 17 | leyou: 18 | jwt: 19 | pubKeyPath: C:\\tmp\\rsa\\rsa.pub # 公钥地址 20 | cookieName: LY_TOKEN 21 | 22 | 23 | -------------------------------------------------------------------------------- /faye/leyou-register/src/main/java/com/leyou/LeyouRegisterApplication.java: -------------------------------------------------------------------------------- 1 | package com.leyou; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer; 6 | 7 | //启动类 8 | @SpringBootApplication 9 | @EnableEurekaServer 10 | public class LeyouRegisterApplication { 11 | 12 | public static void main(String[] args) { 13 | SpringApplication.run(LeyouRegisterApplication.class); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__org_ow2_asm_asm_5_0_4.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__stax_stax_api_1_0_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__xpp3_xpp3_min_1_1_4c.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__org_json_json_20170516.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/leyou-item/leyou-item-interfaces/src/main/java/com/leyou/item/api/CatagoryApi.java: -------------------------------------------------------------------------------- 1 | package com.leyou.item.api; 2 | 3 | 4 | import org.springframework.web.bind.annotation.GetMapping; 5 | import org.springframework.web.bind.annotation.RequestMapping; 6 | import org.springframework.web.bind.annotation.RequestParam; 7 | 8 | import java.util.List; 9 | 10 | @RequestMapping("category") 11 | public interface CatagoryApi { 12 | 13 | 14 | //根据ID集合查询分类 15 | @GetMapping 16 | public List queryNameByIds(@RequestParam("ids") List ids); 17 | 18 | } 19 | -------------------------------------------------------------------------------- /leyou-portal/js/widget/nav.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | /*自动完成*/ 5 | $(function(){ 6 | 7 | var availableTags = [ 8 | "ActionScript", 9 | "AppleScript", 10 | "Asp", 11 | "BASIC", 12 | "C", 13 | "C++", 14 | "Clojure", 15 | "COBOL", 16 | "ColdFusion", 17 | "Erlang", 18 | "Fortran", 19 | "Groovy", 20 | "Haskell", 21 | "Java", 22 | "JavaScript", 23 | "Lisp", 24 | "Perl", 25 | "PHP", 26 | "Python", 27 | "Ruby", 28 | "Scala", 29 | "Scheme" 30 | ]; 31 | $( "#autocomplete" ).autocomplete({ 32 | source: availableTags 33 | 34 | }); 35 | 36 | }); 37 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__com_tdunning_t_digest_3_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__com_vividsolutions_jts_1_13.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__io_jsonwebtoken_jjwt_0_9_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__io_reactivex_rxjava_1_3_8.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__org_yaml_snakeyaml_1_19.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__xmlpull_xmlpull_1_1_3_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/leyou-item/leyou-item-interfaces/src/main/java/com/leyou/item/api/BrandApi.java: -------------------------------------------------------------------------------- 1 | package com.leyou.item.api; 2 | 3 | 4 | 5 | import com.leyou.item.pojo.Brand; 6 | import org.springframework.web.bind.annotation.GetMapping; 7 | import org.springframework.web.bind.annotation.PathVariable; 8 | import org.springframework.web.bind.annotation.RequestMapping; 9 | 10 | import java.util.List; 11 | 12 | public interface BrandApi { 13 | 14 | 15 | //根据品牌id 查询 品牌 16 | @GetMapping("brand/{id}") 17 | public Brand queryBrandById(@PathVariable("id") Long id); 18 | } 19 | 20 | 21 | -------------------------------------------------------------------------------- /leyou-manage-web/leyou-manage-web/src/http.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import axios from 'axios' 3 | import config from './config' 4 | 5 | axios.defaults.baseURL = config.api; // 设置axios的基础请求路径 6 | axios.defaults.timeout = 2000; // 设置axios的请求时间 7 | 8 | // axios.interceptors.request.use(function (config) { 9 | // // console.log(config); 10 | // return config; 11 | // }) 12 | 13 | axios.loadData = async function (url) { 14 | const resp = await axios.get(url); 15 | return resp.data; 16 | } 17 | 18 | Vue.prototype.$http = axios;// 将axios添加到 Vue的原型,这样一切vue实例都可以使用该对象 19 | 20 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__com_carrotsearch_hppc_0_7_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__com_google_guava_guava_15_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__com_google_guava_guava_16_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__com_google_guava_guava_20_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__org_mybatis_mybatis_3_4_6.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__com_zaxxer_HikariCP_2_7_9.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__commons_io_commons_io_2_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__commons_io_commons_io_2_4.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__io_reactivex_rxnetty_0_4_9.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__joda_time_joda_time_2_9_9.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__net_minidev_json_smart_2_3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__org_objenesis_objenesis_2_6.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/leyou-upload/target/classes/application.yml: -------------------------------------------------------------------------------- 1 | server: 2 | port: 8082 3 | spring: 4 | application: 5 | name: leyou-upload 6 | servlet: 7 | multipart: 8 | max-file-size: 5MB 9 | eureka: 10 | client: 11 | service-url: 12 | defaultZone: http://localhost:10086/eureka 13 | instance: 14 | lease-renewal-interval-in-seconds: 5 15 | lease-expiration-duration-in-seconds: 10 16 | fdfs: 17 | so-timeout: 1501 # 超时时间 18 | connect-timeout: 601 # 连接超时时间 19 | thumb-image: # 缩略图 20 | width: 60 21 | height: 60 22 | tracker-list: 23 | - 192.168.25.129:22122 -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__aopalliance_aopalliance_1_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__com_google_inject_guice_4_1_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__javax_inject_javax_inject_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__org_elasticsearch_jna_4_4_0_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__org_slf4j_slf4j_api_1_7_25.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/leyou-upload/src/main/resources/application.yml: -------------------------------------------------------------------------------- 1 | server: 2 | port: 8082 3 | spring: 4 | application: 5 | name: leyou-upload 6 | servlet: 7 | multipart: 8 | max-file-size: 5MB 9 | eureka: 10 | client: 11 | service-url: 12 | defaultZone: http://localhost:10086/eureka 13 | instance: 14 | lease-renewal-interval-in-seconds: 5 15 | lease-expiration-duration-in-seconds: 10 16 | fdfs: 17 | so-timeout: 1501 # 超时时间 18 | connect-timeout: 601 # 连接超时时间 19 | thumb-image: # 缩略图 20 | width: 60 21 | height: 60 22 | tracker-list: 23 | - 192.168.25.129:22122 -------------------------------------------------------------------------------- /leyou-manage-web/leyou-manage-web/README.md: -------------------------------------------------------------------------------- 1 | # leyou-manage-web 2 | 3 | > A Vue.js project 4 | 5 | ## Build Setup 6 | 7 | ``` bash 8 | # install dependencies 9 | npm install 10 | 11 | # serve with hot reload at localhost:8080 12 | npm run dev 13 | 14 | # build for production with minification 15 | npm run build 16 | 17 | # build for production and view the bundle analyzer report 18 | npm run build --report 19 | ``` 20 | 21 | For a detailed explanation on how things work, check out the [guide](http://vuejs-templates.github.io/webpack/) and [docs for vue-loader](http://vuejs.github.io/vue-loader). 22 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__com_google_code_gson_gson_2_8_5.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__org_antlr_antlr_runtime_3_4.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__org_elasticsearch_securesm_1_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__com_fasterxml_classmate_1_3_4.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__com_netflix_ribbon_ribbon_2_2_5.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__javax_ws_rs_jsr311_api_1_1_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__tk_mybatis_mapper_base_1_0_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__tk_mybatis_mapper_core_1_0_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__commons_lang_commons_lang_2_6.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__org_mockito_mockito_all_1_9_5.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/leyou-cart/src/main/java/com/leyou/LeyouCartApplication.java: -------------------------------------------------------------------------------- 1 | package com.leyou; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | import org.springframework.cloud.client.discovery.EnableDiscoveryClient; 6 | import org.springframework.cloud.openfeign.EnableFeignClients; 7 | 8 | @SpringBootApplication 9 | @EnableDiscoveryClient 10 | @EnableFeignClients 11 | public class LeyouCartApplication { 12 | 13 | public static void main(String[] args) { 14 | SpringApplication.run(LeyouCartApplication.class); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /faye/leyou-upload/src/main/java/com/leyou/config/FastClientImporter.java: -------------------------------------------------------------------------------- 1 | package com.leyou.config; 2 | 3 | import com.github.tobato.fastdfs.FdfsClientConfig; 4 | import org.springframework.context.annotation.Configuration; 5 | import org.springframework.context.annotation.EnableMBeanExport; 6 | import org.springframework.context.annotation.Import; 7 | import org.springframework.jmx.support.RegistrationPolicy; 8 | 9 | @Configuration 10 | @Import(FdfsClientConfig.class) 11 | // 解决jmx重复注册bean的问题 12 | @EnableMBeanExport(registration = RegistrationPolicy.IGNORE_EXISTING) 13 | public class FastClientImporter { 14 | } 15 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__com_rabbitmq_amqp_client_5_4_3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__javax_xml_stream_stax_api_1_0_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__org_hamcrest_hamcrest_core_1_3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__tk_mybatis_mapper_extra_1_0_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/leyou-search/src/main/java/com/leyou/LeyouSearchService.java: -------------------------------------------------------------------------------- 1 | package com.leyou; 2 | 3 | 4 | import org.springframework.boot.SpringApplication; 5 | import org.springframework.boot.autoconfigure.SpringBootApplication; 6 | import org.springframework.cloud.client.discovery.EnableDiscoveryClient; 7 | import org.springframework.cloud.openfeign.EnableFeignClients; 8 | 9 | @SpringBootApplication 10 | @EnableDiscoveryClient 11 | @EnableFeignClients 12 | public class LeyouSearchService { 13 | public static void main(String[] args) { 14 | SpringApplication.run(LeyouSearchService.class,args); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__com_github_wxpay_wxpay_sdk_0_0_3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__com_netflix_zuul_zuul_core_1_3_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__net_bytebuddy_byte_buddy_1_7_11.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__net_jcip_jcip_annotations_1_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__org_assertj_assertj_core_3_9_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__org_slf4j_jul_to_slf4j_1_7_25.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__org_xmlunit_xmlunit_core_2_5_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/leyou-gateway/src/main/java/com/leyou/LeyouGatewayAppliaction.java: -------------------------------------------------------------------------------- 1 | package com.leyou; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | import org.springframework.cloud.client.discovery.EnableDiscoveryClient; 6 | import org.springframework.cloud.netflix.zuul.EnableZuulProxy; 7 | 8 | @SpringBootApplication 9 | @EnableDiscoveryClient 10 | @EnableZuulProxy 11 | public class LeyouGatewayAppliaction { 12 | 13 | public static void main(String[] args) { 14 | SpringApplication.run(LeyouGatewayAppliaction.class); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /leyou-portal/copyright.html: -------------------------------------------------------------------------------- 1 | 2 | 14 |

地址:上海市浦东新区航都路18号 邮编:201316 电话:400-618-9090 网址:http://www.itheima.com

15 |

沪 ICP备xxxxxxxxxx号京公网安备xxxxxxxxxxx

16 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__org_antlr_stringtemplate_3_2_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__org_freemarker_freemarker_2_3_28.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__org_skyscreamer_jsonassert_1_5_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__tk_mybatis_mapper_spring_1_0_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/leyou-goods-web/src/main/java/com/leyou/LeyouGoodsWebApplication.java: -------------------------------------------------------------------------------- 1 | package com.leyou; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | import org.springframework.cloud.client.discovery.EnableDiscoveryClient; 6 | import org.springframework.cloud.openfeign.EnableFeignClients; 7 | 8 | @SpringBootApplication 9 | @EnableDiscoveryClient 10 | @EnableFeignClients 11 | public class LeyouGoodsWebApplication { 12 | public static void main(String[] args) { 13 | SpringApplication.run(LeyouGoodsWebApplication.class); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /faye/leyou-item/leyou-item-service/src/main/java/com/leyou/LeyouItemAppliaction.java: -------------------------------------------------------------------------------- 1 | package com.leyou; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | import org.springframework.cloud.client.discovery.EnableDiscoveryClient; 6 | import tk.mybatis.spring.annotation.MapperScan; 7 | 8 | @SpringBootApplication 9 | @EnableDiscoveryClient 10 | @MapperScan("com.leyou.item.mapper") 11 | public class LeyouItemAppliaction { 12 | public static void main(String[] args) { 13 | SpringApplication.run(LeyouItemAppliaction.class); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /faye/leyou-user/leyou-user-service/src/main/java/com/leyou/LeyouUserApplication.java: -------------------------------------------------------------------------------- 1 | package com.leyou; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | import org.springframework.cloud.client.discovery.EnableDiscoveryClient; 6 | import tk.mybatis.spring.annotation.MapperScan; 7 | 8 | @SpringBootApplication 9 | @EnableDiscoveryClient 10 | @MapperScan("com.leyou.user.mapper") 11 | public class LeyouUserApplication { 12 | public static void main(String[] args) { 13 | SpringApplication.run(LeyouUserApplication.class); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__commons_codec_commons_codec_1_11.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__net_coobird_thumbnailator_0_4_8.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__net_minidev_accessors_smart_1_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__org_mockito_mockito_core_2_15_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__tk_mybatis_mapper_weekend_1_1_3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/leyou-search/target/classes/application.yml: -------------------------------------------------------------------------------- 1 | server: 2 | port: 8083 3 | spring: 4 | application: 5 | name: search-service 6 | data: 7 | elasticsearch: 8 | cluster-name: elasticsearch 9 | cluster-nodes: 127.0.0.1:9300 10 | jackson: 11 | default-property-inclusion: non_null 12 | rabbitmq: 13 | host: 127.0.0.1 14 | username: leyou 15 | password: leyou 16 | virtual-host: /leyou 17 | eureka: 18 | client: 19 | service-url: 20 | defaultZone: http://127.0.0.1:10086/eureka 21 | instance: 22 | lease-renewal-interval-in-seconds: 5 23 | lease-expiration-duration-in-seconds: 10 -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__ch_qos_logback_logback_core_1_2_3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__com_google_code_findbugs_jsr305_3_0_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__com_jayway_jsonpath_json_path_2_4_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__com_sun_jersey_jersey_core_1_19_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__commons_jxpath_commons_jxpath_1_3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__io_reactivex_rxnetty_servo_0_4_9.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__io_springfox_springfox_spi_2_8_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__org_aspectj_aspectjweaver_1_8_13.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__org_mybatis_mybatis_spring_1_3_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__org_slf4j_jcl_over_slf4j_1_7_25.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/leyou-auth/leyou-auth-service/src/main/java/com/leyou/LeyouAuthApplication.java: -------------------------------------------------------------------------------- 1 | package com.leyou; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | import org.springframework.cloud.client.discovery.EnableDiscoveryClient; 6 | import org.springframework.cloud.openfeign.EnableFeignClients; 7 | 8 | @SpringBootApplication 9 | @EnableDiscoveryClient 10 | @EnableFeignClients 11 | 12 | public class LeyouAuthApplication { 13 | 14 | public static void main(String[] args) { 15 | SpringApplication.run(LeyouAuthApplication.class); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /faye/leyou-auth/leyou-auth-service/target/classes/application.yml: -------------------------------------------------------------------------------- 1 | server: 2 | port: 8087 3 | spring: 4 | application: 5 | name: auth-service 6 | eureka: 7 | client: 8 | service-url: 9 | defaultZone: http://127.0.0.1:10086/eureka 10 | registry-fetch-interval-seconds: 10 11 | instance: 12 | lease-renewal-interval-in-seconds: 5 13 | lease-expiration-duration-in-seconds: 15 14 | 15 | leyou: 16 | jwt: 17 | secret: leyou@Login(Auth}*^31)&heiMa% # 登录校验的密钥 18 | pubKeyPath: C:\\tmp\\rsa\\rsa.pub # 公钥地址 19 | priKeyPath: C:\\tmp\\rsa\\rsa.pri # 私钥地址 20 | expire: 30 # 过期时间,单位分钟 21 | cookieName: LY_TOKEN -------------------------------------------------------------------------------- /faye/leyou-order/src/main/java/com/leyou/config/IdWorkerConfig.java: -------------------------------------------------------------------------------- 1 | package com.leyou.config; 2 | 3 | import com.leyou.common.utils.IdWorker; 4 | import org.springframework.boot.context.properties.EnableConfigurationProperties; 5 | import org.springframework.context.annotation.Bean; 6 | import org.springframework.context.annotation.Configuration; 7 | 8 | @Configuration 9 | @EnableConfigurationProperties(IdWorkerProperties.class) 10 | public class IdWorkerConfig { 11 | 12 | @Bean 13 | public IdWorker idWorker(IdWorkerProperties prop) { 14 | return new IdWorker(prop.getWorkerId(), prop.getDatacenterId()); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /faye/leyou-search/src/main/resources/application.yml: -------------------------------------------------------------------------------- 1 | server: 2 | port: 8083 3 | spring: 4 | application: 5 | name: search-service 6 | data: 7 | elasticsearch: 8 | cluster-name: elasticsearch 9 | cluster-nodes: 127.0.0.1:9300 10 | jackson: 11 | default-property-inclusion: non_null 12 | rabbitmq: 13 | host: 127.0.0.1 14 | username: leyou 15 | password: leyou 16 | virtual-host: /leyou 17 | eureka: 18 | client: 19 | service-url: 20 | defaultZone: http://127.0.0.1:10086/eureka 21 | instance: 22 | lease-renewal-interval-in-seconds: 5 23 | lease-expiration-duration-in-seconds: 10 -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__com_github_jsqlparser_jsqlparser_1_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__io_springfox_springfox_core_2_8_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__io_swagger_swagger_models_1_5_14.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__org_apache_commons_commons_math_2_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__org_apache_lucene_lucene_core_6_6_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__org_apache_lucene_lucene_join_6_6_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__org_apache_lucene_lucene_misc_6_6_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__org_codehaus_jettison_jettison_1_3_7.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__org_hamcrest_hamcrest_library_1_3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__org_javassist_javassist_3_21_0_GA.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/.idea/libraries/Maven__org_reflections_reflections_0_9_11.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /faye/leyou-auth/leyou-auth-service/src/main/resources/application.yml: -------------------------------------------------------------------------------- 1 | server: 2 | port: 8087 3 | spring: 4 | application: 5 | name: auth-service 6 | eureka: 7 | client: 8 | service-url: 9 | defaultZone: http://127.0.0.1:10086/eureka 10 | registry-fetch-interval-seconds: 10 11 | instance: 12 | lease-renewal-interval-in-seconds: 5 13 | lease-expiration-duration-in-seconds: 15 14 | 15 | leyou: 16 | jwt: 17 | secret: leyou@Login(Auth}*^31)&heiMa% # 登录校验的密钥 18 | pubKeyPath: C:\\tmp\\rsa\\rsa.pub # 公钥地址 19 | priKeyPath: C:\\tmp\\rsa\\rsa.pri # 私钥地址 20 | expire: 30 # 过期时间,单位分钟 21 | cookieName: LY_TOKEN -------------------------------------------------------------------------------- /faye/leyou-item/leyou-item-service/src/main/java/com/leyou/item/service/IBrandServcie.java: -------------------------------------------------------------------------------- 1 | package com.leyou.item.service; 2 | 3 | import com.leyou.common.pojo.PageResult; 4 | import com.leyou.item.pojo.Brand; 5 | 6 | import java.util.List; 7 | 8 | public interface IBrandServcie { 9 | PageResult queryBrandPage(String key, Integer page, Integer rows, String sortBy, Boolean desc); 10 | 11 | void saveBrand(Brand brand, List ids); 12 | 13 | void upateBrand(Brand brand); 14 | 15 | void deleteBrand(Long bid); 16 | 17 | List queryBrandByCid(Long cid); 18 | 19 | Brand queryBrandById(Long id); 20 | } 21 | --------------------------------------------------------------------------------