├── 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 |
2 |
地址:上海市浦东新区航都路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 |