Repository: silently9527/coupons Branch: master Commit: 757b028bd690 Files: 203 Total size: 724.6 KB Directory structure: gitextract_t27ibfb1/ ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── client/ │ ├── .gitignore │ ├── App.vue │ ├── LICENSE │ ├── README.md │ ├── api/ │ │ └── backend.js │ ├── app.js │ ├── colorui/ │ │ ├── animation.css │ │ ├── components/ │ │ │ └── cu-custom.vue │ │ ├── icon.css │ │ └── main.css │ ├── components/ │ │ ├── FabBtn/ │ │ │ └── index.vue │ │ ├── ListCell/ │ │ │ └── index.vue │ │ ├── LoadMore/ │ │ │ └── index.vue │ │ ├── Loading/ │ │ │ └── index.vue │ │ ├── ProductList/ │ │ │ ├── BoxLayout.vue │ │ │ ├── HorizontalLayout.vue │ │ │ ├── HorizontalLayout2.vue │ │ │ └── HorizontalScrollLayout.vue │ │ ├── Refresh/ │ │ │ └── index.vue │ │ ├── Share/ │ │ │ └── index.vue │ │ ├── SortNavbar/ │ │ │ └── index.vue │ │ ├── SortNavbar2/ │ │ │ └── index.vue │ │ ├── Tab/ │ │ │ └── index.vue │ │ └── Tab2/ │ │ └── index.vue │ ├── config.js │ ├── main.js │ ├── manifest.json │ ├── pages/ │ │ ├── category/ │ │ │ └── category.vue │ │ ├── collect/ │ │ │ ├── collect.vue │ │ │ └── components/ │ │ │ └── CollectList.vue │ │ ├── collocation/ │ │ │ ├── component/ │ │ │ │ ├── CollocationBox.vue │ │ │ │ ├── CollocationCard.vue │ │ │ │ └── CollocationList.vue │ │ │ ├── detail.vue │ │ │ └── index.vue │ │ ├── halfPrice/ │ │ │ └── index.vue │ │ ├── index/ │ │ │ └── index.vue │ │ ├── nine/ │ │ │ └── nine.vue │ │ ├── product/ │ │ │ ├── list.vue │ │ │ └── product.vue │ │ ├── public/ │ │ │ ├── guide.vue │ │ │ └── login.vue │ │ ├── rank/ │ │ │ └── rank.vue │ │ ├── search/ │ │ │ ├── result.vue │ │ │ └── search.vue │ │ ├── user/ │ │ │ ├── message.vue │ │ │ ├── set.vue │ │ │ └── user.vue │ │ └── webview/ │ │ └── index.vue │ ├── pages.json │ ├── store/ │ │ └── index.js │ ├── style/ │ │ └── app.scss │ ├── uni.scss │ └── utils/ │ ├── cache.js │ ├── http.js │ └── mcUtils.js ├── doc/ │ ├── application.properties │ └── scheme.sql └── server/ ├── lib/ │ ├── openapi.jar │ ├── spring-social-qq-1.0.2.jar │ └── spring-social-wechat2-1.0.1.jar ├── pom.xml ├── src/ │ ├── main/ │ │ ├── java/ │ │ │ └── com/ │ │ │ └── huaan9527/ │ │ │ └── mall/ │ │ │ └── webapi/ │ │ │ ├── MallWebapiApplication.java │ │ │ ├── client/ │ │ │ │ └── MobServiceClient.java │ │ │ ├── configuration/ │ │ │ │ ├── CommonConfiguration.java │ │ │ │ ├── QQOAuth2Configuration.java │ │ │ │ ├── RedisConfiguration.java │ │ │ │ ├── SecurityConfiguration.java │ │ │ │ ├── SessionConfiguration.java │ │ │ │ ├── SocialConfigurer.java │ │ │ │ ├── WebMvcConfiguration.java │ │ │ │ ├── WechatAutoConfiguration.java │ │ │ │ └── properties/ │ │ │ │ ├── DaTaoKeProperties.java │ │ │ │ ├── TaoBaoKeProperties.java │ │ │ │ └── TencentSmsProperties.java │ │ │ ├── controller/ │ │ │ │ ├── CateController.java │ │ │ │ ├── CollectionController.java │ │ │ │ ├── CollocationController.java │ │ │ │ ├── EventController.java │ │ │ │ ├── GoodsController.java │ │ │ │ ├── PublicController.java │ │ │ │ └── UserController.java │ │ │ ├── domain/ │ │ │ │ ├── AbstractDomain.java │ │ │ │ ├── AppreciateRelation.java │ │ │ │ ├── Carousel.java │ │ │ │ ├── Collection.java │ │ │ │ ├── Collocation.java │ │ │ │ ├── CollocationProduct.java │ │ │ │ ├── Menu.java │ │ │ │ ├── Tag.java │ │ │ │ ├── TagRelation.java │ │ │ │ ├── User.java │ │ │ │ ├── UserConnection.java │ │ │ │ └── enums/ │ │ │ │ ├── DataType.java │ │ │ │ ├── ProductStatus.java │ │ │ │ ├── Urlype.java │ │ │ │ ├── UserStatus.java │ │ │ │ └── UserType.java │ │ │ ├── exception/ │ │ │ │ ├── GlobalExceptionHandler.java │ │ │ │ └── MsException.java │ │ │ ├── filter/ │ │ │ │ └── CrossDomainFilter.java │ │ │ ├── interceptor/ │ │ │ │ └── ParameterInterceptor.java │ │ │ ├── repository/ │ │ │ │ ├── AppreciateRelationRepository.java │ │ │ │ ├── CarouselRepository.java │ │ │ │ ├── CollectionRepository.java │ │ │ │ ├── CollocationProductRepository.java │ │ │ │ ├── CollocationRepository.java │ │ │ │ ├── MenuRepository.java │ │ │ │ ├── TagRelationRepository.java │ │ │ │ ├── TagRepository.java │ │ │ │ ├── UserConnectionRepository.java │ │ │ │ └── UserRepository.java │ │ │ ├── security/ │ │ │ │ ├── DefalutLogoutSuccessHandler.java │ │ │ │ ├── DefaultConnectionSignUp.java │ │ │ │ ├── DefaultSocialUserDetailsService.java │ │ │ │ ├── MobileCodeAuthenticationProvider.java │ │ │ │ ├── MsAuthenticationEntryPoint.java │ │ │ │ ├── MsAuthenticationFailureHandler.java │ │ │ │ ├── MsAuthenticationSuccessHandler.java │ │ │ │ ├── SecurityUtils.java │ │ │ │ └── UserDetailsServiceImpl.java │ │ │ ├── service/ │ │ │ │ ├── AppreciateRelationService.java │ │ │ │ ├── CarouselService.java │ │ │ │ ├── CollectionService.java │ │ │ │ ├── CollocationService.java │ │ │ │ ├── GoodsService.java │ │ │ │ ├── MenuService.java │ │ │ │ ├── TagService.java │ │ │ │ ├── UserService.java │ │ │ │ └── operation/ │ │ │ │ └── api/ │ │ │ │ ├── AbstractDaTaoKeApi.java │ │ │ │ ├── AlbumApi.java │ │ │ │ ├── AlbumGoodsApi.java │ │ │ │ ├── BrandApi.java │ │ │ │ ├── CateApi.java │ │ │ │ ├── ExplosiveGoodsListApi.java │ │ │ │ ├── GoodsApi.java │ │ │ │ ├── GoodsDetailApi.java │ │ │ │ ├── HotSearchTop10Api.java │ │ │ │ ├── NineGoodsApi.java │ │ │ │ ├── PrivilegeApi.java │ │ │ │ ├── RankGoodsApi.java │ │ │ │ ├── SearchApi.java │ │ │ │ ├── SimilarGoodsApi.java │ │ │ │ ├── SupperSearchApi.java │ │ │ │ └── TaobaoSearchApi.java │ │ │ ├── sms/ │ │ │ │ ├── AbstractSmsProvider.java │ │ │ │ ├── SendSmsRequest.java │ │ │ │ ├── SendSmsResponse.java │ │ │ │ ├── SmsProvider.java │ │ │ │ ├── SmsProviders.java │ │ │ │ └── TencentSmsProviderAdapter.java │ │ │ ├── utils/ │ │ │ │ ├── CodeGenerator.java │ │ │ │ ├── Constants.java │ │ │ │ ├── DateUtils.java │ │ │ │ ├── DxyzmUtils.java │ │ │ │ ├── HttpsClientUtil.java │ │ │ │ ├── MD5Util.java │ │ │ │ ├── PageResponse.java │ │ │ │ ├── ResponseEntity.java │ │ │ │ ├── URLUtil.java │ │ │ │ └── WebUtils.java │ │ │ └── vos/ │ │ │ ├── CarouselVo.java │ │ │ ├── CollectionVo.java │ │ │ ├── CollocationDetailVo.java │ │ │ ├── CollocationProductVo.java │ │ │ ├── CollocationVo.java │ │ │ ├── ConfirmSMSCodeVo.java │ │ │ ├── EventVo.java │ │ │ ├── MenuVo.java │ │ │ ├── ProductVo.java │ │ │ ├── RegisterVo.java │ │ │ ├── RegisterVo2.java │ │ │ ├── SendEmailCodeVo.java │ │ │ ├── TagVo.java │ │ │ ├── UpdatePasswordVo.java │ │ │ └── UserVo.java │ │ └── resources/ │ │ ├── application-dev.properties │ │ ├── application-prod.properties │ │ ├── application-test.properties │ │ └── mapper/ │ │ └── CollocationMapper.xml │ └── test/ │ └── java/ │ └── com/ │ └── huaan9527/ │ └── mall/ │ └── webapi/ │ ├── BaseTest.java │ ├── MallWebapiApplicationTests.java │ └── service/ │ ├── CollocationServiceTest.java │ ├── CustomerInfoService.java │ ├── GoodsServiceTest.java │ ├── LabelService.java │ ├── LearnRecordService.java │ ├── OrderService.java │ ├── RemoteLoader.java │ ├── UserDetailService.java │ └── WatchRecordService.java └── static/ ├── download/ │ ├── css/ │ │ └── index.css │ └── index.html ├── invite/ │ ├── css/ │ │ ├── common.css │ │ └── layer.css │ ├── index.html │ └── script/ │ ├── common.js │ └── layer.js └── user/ └── agreement.html ================================================ FILE CONTENTS ================================================ ================================================ FILE: .gitignore ================================================ HELP.md target/ !.mvn/wrapper/maven-wrapper.jar !**/src/main/** !**/src/test/** ### STS ### .apt_generated .classpath .factorypath .project .settings .springBeans .sts4-cache ### IntelliJ IDEA ### .idea *.iws *.iml *.ipr ### NetBeans ### /nbproject/private/ /nbbuild/ /dist/ /nbdist/ /.nb-gradle/ build/ ### VS Code ### .vscode/ logs unpackage ================================================ FILE: Dockerfile ================================================ FROM centos:7 MAINTAINER silently9527 EXPOSE 9090 WORKDIR /data/app RUN yum -y install java-1.8.0-openjdk.x86_64 COPY server/target/mall-coupons-server*.jar . RUN mv mall-coupons-server*.jar mall-coupons-server.jar ENTRYPOINT java -Djava.security.egd=file:/dev/./urandom -jar mall-coupons-server.jar --spring.profiles.active=prod --spring.config.location=/root/.coupons/conf/application.properties ================================================ FILE: LICENSE ================================================ GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: Copyright (C) <2021> This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . ================================================ FILE: README.md ================================================

公众号 掘金 CSDN 开源中国 知乎

# coupons文档完善中... ## 项目介绍 coupons是一个从前端到后端完全开源的淘宝客项目,目前项目已经支持打包成App、微信小程序、QQ小程序、Web站点;理论上其他小程序支持,可能需要微调 #### 欢迎加微信`silently9527`,加入技术交流群 ### Github地址: - 项目地址:[https://github.com/silently9527/coupons](https://github.com/silently9527/coupons) ### Gitee地址: - 项目地址:[https://gitee.com/silently9527/coupons](https://gitee.com/silently9527/coupons) ## 功能列表 - [x] 推荐穿衣搭配 - [x] 搭配筛选 - [x] 搭配详情 - [x] 相关搭配推荐 - [x] 用户点赞 - [x] 商品分类 - [x] 分类查询商品列表 - [x] 首页轮播 - [x] APP、Web支持唤醒淘宝 - [x] 9.9包邮 - [x] 疯抢排行榜 - [x] 首页优质商品推荐 - [x] 商品、优惠券搜索 - [x] 商品详情 - [x] 相似商品推荐 - [x] 商品收藏、收藏夹 - [x] 口令购买、领券购买 - [x] 用户登录、微信登录、QQ登录、手机验证码登录 - [x] 用户新手教程 ## 在线体验地址
App下载地址 QQ小程序 微信小程序 Web站点
App下载地址(用手机访问才能正确下载IOS和安卓版本): [http://static.szjx.top/download/index.html](http://static.szjx.top/download/index.html) Web站点(用手机访问,PC端未适配):[http://m.szjx.top](http://m.szjx.top) ## 效果预览
## 组织结构 ``` coupons ├── doc -- 数据库脚本 ├── server -- 后端源码 ├── client -- 前端源码 ``` ## 技术选型 #### 后端技术 | 技术 | 备注 | 地址 | | ---- | ---- |---- | | SpringBoot | 容器+MVC框架 | [https://spring.io/projects/spring-boot](https://spring.io/projects/spring-boot) | | MyBatis | ORM框架 | [http://www.mybatis.org/mybatis-3/zh/index.html](http://www.mybatis.org/mybatis-3/zh/index.html) | | SpringSecurity | 认证和授权框架 | [https://spring.io/projects/spring-security](https://spring.io/projects/spring-security) | | SpringSocial | OAuth2认证框架 | [https://github.com/spring-projects/spring-social](https://github.com/spring-projects/spring-social) | | Redis | 分布式缓存 | [https://redis.io/](https://redis.io/) | | Druid | 数据库连接池 | [https://github.com/alibaba/druid](https://github.com/alibaba/druid) | | Lombok | 简化对象封装工具 | [https://github.com/rzwitserloot/lombok](https://github.com/rzwitserloot/lombok) | | Fastjson | JSON工具 | https://github.com/alibaba/fastjson | | spring-data-mybatis | 封装Mybatis实现JPA部分功能 | [https://github.com/easybest/spring-data-mybatis](https://github.com/easybest/spring-data-mybatis) | #### 前端技术 | 技术 | 备注 | 地址 | | ---- | ---- |---- | | Vue | 前端框架 | [https://vuejs.org/](https://vuejs.org/) | | UniApp | 一个使用 Vue.js 开发所有前端应用的框架 | [https://uniapp.dcloud.io/](https://uniapp.dcloud.io/) | | Vuex | 全局状态管理框架 | [https://vuex.vuejs.org/](https://vuex.vuejs.org/) | | colorui | 样式库 | [https://github.com/weilanwl/ColorUI](https://github.com/weilanwl/ColorUI) | ### 开发环境 | 工具 | 版本号 | 下载 | | ------------- | ------ | ------------------------------------------------------------ | | JDK | 1.8 | https://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html | | Mysql | 5.7 | https://www.mysql.com/ | | Redis | 5.0 | https://redis.io/download | | Nginx | 1.10 | http://nginx.org/en/download.html | ## 部署文档 * [淘客项目coupons在 Linux 环境部署指南](https://silently9527.cn/?p=67) * [使用Docker镜像部署Coupons淘宝客项目](https://silently9527.cn/?p=70) **有任何部署疑问,欢迎给我留言** #### 期待你的加入,公众号:`贝塔学Java`,个人微信号:silently9527 公众号 ## 其他项目推荐 * [Idea工具箱插件](https://github.com/silently9527/Toolkit) * [深入解析SpringMVC核心原理:从手写简易版MVC框架开始(SmartMvc)](https://github.com/silently9527/SmartMvc) * [Java程序员自我学习的书单](https://github.com/silently9527/ProgrammerBooks) * [技术文章以及代码收录仓库](https://github.com/silently9527/ProgrammerNotes) * [高颜值可定制化的简介导航网站](http://nav.silently9527.cn/) ### 博客地址 [https://herman7z.site](https://herman7z.site) ### 知识星球: [Herman's Notes](https://t.zsxq.com/h2EIR) ![](https://raw.githubusercontent.com/silently9527/images/main/202408151725390.png) ================================================ FILE: client/.gitignore ================================================ unpackage .idea ================================================ FILE: client/App.vue ================================================ ================================================ FILE: client/LICENSE ================================================ GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: Copyright (C) <2021> This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . ================================================ FILE: client/README.md ================================================ # Mall-Coupons

公众号 掘金 CSDN 开源中国 知乎

# 文档完善中... ## 项目介绍 Mall-Coupons是一个从前端到后端完全开源的淘宝客项目,当初学习完uniapp之后想做一个实战项目,所以才研发了这个项目。由于本人平时主要从事后端研发,界面样式非我所长,所以大家觉得界面效果不好的可以自己修改。目前项目已经支持打包成App、微信小程序、QQ小程序、Web站点;理论上其他小程序支持,可能需要微调 ### Github地址: - 后端项目地址:[https://github.com/silently9527/mall-coupons-server](https://github.com/silently9527/mall-coupons-server) - 前端项目地址:[https://github.com/silently9527/mall-coupons](https://github.com/silently9527/mall-coupons) ### Gitee地址: - 后端项目地址:[https://gitee.com/silently9527/mall-coupons-server](https://gitee.com/silently9527/mall-coupons-server) - 前端项目地址:[https://gitee.com/silently9527/mall-coupons](https://gitee.com/silently9527/mall-coupons) ## 功能列表 - [x] 推荐穿衣搭配 - [x] 搭配筛选 - [x] 搭配详情 - [x] 相关搭配推荐 - [x] 用户点赞 - [x] 商品分类 - [x] 分类查询商品列表 - [x] 首页轮播 - [x] APP、Web支持唤醒淘宝 - [x] 9.9包邮 - [x] 疯抢排行榜 - [x] 首页优质商品推荐 - [x] 商品、优惠券搜索 - [x] 商品详情 - [x] 相似商品推荐 - [x] 商品收藏、收藏夹 - [x] 口令购买、领券购买 - [x] 用户登录、微信登录、QQ登录、手机验证码登录 - [x] 用户新手教程 ## 在线体验地址
App下载地址 QQ小程序 微信小程序 Web站点
App下载地址(用手机访问才能正确下载IOS和安卓版本): [http://static.szjx.top/download/index.html](http://static.szjx.top/download/index.html) Web站点(用手机访问,PC端未适配):[http://m.szjx.top](http://m.szjx.top) ## 效果预览
## 技术选型 #### 后端技术 | 技术 | 备注 | 地址 | | ---- | ---- |---- | | SpringBoot | 容器+MVC框架 | [https://spring.io/projects/spring-boot](https://spring.io/projects/spring-boot) | | MyBatis | ORM框架 | [http://www.mybatis.org/mybatis-3/zh/index.html](http://www.mybatis.org/mybatis-3/zh/index.html) | | SpringSecurity | 认证和授权框架 | [https://spring.io/projects/spring-security](https://spring.io/projects/spring-security) | | SpringSocial | OAuth2认证框架 | [https://github.com/spring-projects/spring-social](https://github.com/spring-projects/spring-social) | | Redis | 分布式缓存 | [https://redis.io/](https://redis.io/) | | Druid | 数据库连接池 | [https://github.com/alibaba/druid](https://github.com/alibaba/druid) | | Lombok | 简化对象封装工具 | [https://github.com/rzwitserloot/lombok](https://github.com/rzwitserloot/lombok) | | Fastjson | JSON工具 | https://github.com/alibaba/fastjson | | spring-data-mybatis | 封装Mybatis实现JPA部分功能 | [https://github.com/easybest/spring-data-mybatis](https://github.com/easybest/spring-data-mybatis) | #### 前端技术 | 技术 | 备注 | 地址 | | ---- | ---- |---- | | Vue | 前端框架 | [https://vuejs.org/](https://vuejs.org/) | | UniApp | 一个使用 Vue.js 开发所有前端应用的框架 | [https://uniapp.dcloud.io/](https://uniapp.dcloud.io/) | | Vuex | 全局状态管理框架 | [https://vuex.vuejs.org/](https://vuex.vuejs.org/) | | colorui | 样式库 | [https://github.com/weilanwl/ColorUI](https://github.com/weilanwl/ColorUI) | ### 开发环境 | 工具 | 版本号 | 下载 | | ------------- | ------ | ------------------------------------------------------------ | | JDK | 1.8 | https://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html | | Mysql | 5.7 | https://www.mysql.com/ | | Redis | 5.0 | https://redis.io/download | | Nginx | 1.10 | http://nginx.org/en/download.html | ## 部署文档 关注微信公众号:`贝塔学JAVA` ;回复`文档`获取部署文档 **有任何部署疑问,欢迎给我留言** ## 微信公众号 公众号 ## 我的技术博客 [https://silently9527.cn/](https://silently9527.cn/) ## 捐赠研发 如果您认为此项目帮到了您的开发工作,使您赚到钱了,您可以捐赠我一杯可乐(相信这比打赏主播更有意义)。 ================================================ FILE: client/api/backend.js ================================================ import httpRequest from '../utils/http' module.exports = { login: function (provider, code) { let url = '/auth/miniprogram'; if (provider === 'qq') { url = '/auth/QQMiniProgram' } return httpRequest.get(url, {code: code}) }, htmlLogin: function (mobile, code) { return httpRequest.post('/login', {mobile: mobile, code: code}) }, logout: function () { return httpRequest.get('/logout') }, getLoginUser: function () { return httpRequest.get('/user/current_user', {}) }, sendEmailCode: function (params) { return httpRequest.post('/mi/send_email_code', params) }, updatePassword: function (params) { return httpRequest.post('/mi/update_password', params) }, register: function (user) { return httpRequest.post('/mi/register', user) }, updateUserInfo: function (user) { return httpRequest.post('/user/update', user) }, initUserInfo: function (user) { return httpRequest.post('/user/init_current_user', user) }, getCate: function () { return httpRequest.get('/mi/load_cate', {}) }, recommendGoods: function (page) { return httpRequest.get('/mi/load_recommend_goods', {page: page}) }, getGoodsDetail: function (id, goodsId) { let params = {}; if (id) { params.id = id } if (goodsId) { params.goodsId = goodsId } return httpRequest.get('/mi/goods_detail', params) }, getGoodsByCate: function (subcid, page, sort) { return httpRequest.get('/mi/load_goods_by_cate', {subcid: subcid, page: page, sort: sort}) }, getPrivilegeLink: function (goodsId) { return httpRequest.get('/mi/get_privilege_link', {goodsId: goodsId}) }, getHotSearch: function () { return httpRequest.get('/mi/get_hot_search', {}) }, search: function (keyword, page, sort) { return httpRequest.get('/mi/search', {keyword: keyword, page: page, sort: sort}) }, search2: function (keyword, page, sort, hasCoupon) { return httpRequest.get('/mi/search2', {keyword: keyword, page: page, sort: sort, hasCoupon: hasCoupon}) }, favoriteGoods: function (goodsId) { return httpRequest.get('/collection/product/add', {productId: goodsId}) }, unFavoriteGoods: function (goodsId) { return httpRequest.get('/collection/product/remove', {productId: goodsId}) }, favoriteList: function (page, size) { return httpRequest.get('/collection/product/list', {page: page, size: size}) }, getNineGoods: function (page, size, nineCid) { return httpRequest.get('/mi/load_nine_goods', {page: page, size: size, nineCid: nineCid}) }, getRankGoods: function (cid) { return httpRequest.get('/mi/load_rank_goods', {cid: cid}) }, getSimilarGoods: function (daTaoKeGoodsId) { return httpRequest.get('/mi/get_similar_goods', {daTaoKeGoodsId: daTaoKeGoodsId}) }, listCarousel: function () { return httpRequest.post('/mi/list_carousel', {}) }, listMenus: function () { return httpRequest.post('/mi/list_menus', {}) }, recommendCollocations: function (page) { return httpRequest.get('/mi/collocation/load_recommend', {page}) }, collocationsList: function (page, sex) { if (sex) { return httpRequest.get('/mi/collocation/list', {page: page, sex: sex}) } return httpRequest.get('/mi/collocation/list', {page}) }, recommendCollocations2: function (page) { return httpRequest.get('/mi/collocation/load_recommend2', {page}) }, addCollocationAppreciate: function (collocationId) { return httpRequest.get('/collocation/add_appreciate', {collocationId}) }, cancelCollocationAppreciate: function (collocationId) { return httpRequest.get('/collocation/cancel_appreciate', {collocationId}) }, collocationSimpleDetail: function (collocationId) { return httpRequest.get('/mi/collocation/simple_detail', {collocationId}) }, collocationProduct: function (collocationId) { return httpRequest.get('/mi/collocation/product', {collocationId}) } } ================================================ FILE: client/app.js ================================================ import Vue from 'vue' export default { initTitleNav() { uni.getSystemInfo({ success: function (e) { // #ifndef MP Vue.prototype.StatusBar = e.statusBarHeight; if (e.platform === 'android') { Vue.prototype.CustomBar = e.statusBarHeight + 50; } else { Vue.prototype.CustomBar = e.statusBarHeight + 45; } // #endif // #ifdef MP-WEIXIN Vue.prototype.StatusBar = e.statusBarHeight; let custom = wx.getMenuButtonBoundingClientRect(); Vue.prototype.Custom = custom; Vue.prototype.CustomBar = custom.bottom + custom.top - e.statusBarHeight; // #endif // #ifdef MP-ALIPAY // Vue.prototype.StatusBar = e.statusBarHeight; // Vue.prototype.CustomBar = e.statusBarHeight + e.titleBarHeight; // #endif // #ifdef MP-QQ Vue.prototype.StatusBar = e.statusBarHeight; let customQQ = qq.getMenuButtonBoundingClientRect(); Vue.prototype.Custom = customQQ; Vue.prototype.CustomBar = customQQ.bottom + customQQ.top - e.statusBarHeight; if (e.model.indexOf("iPhone X") > -1) { Vue.prototype.CustomBar = 82; } else { Vue.prototype.CustomBar = 60; } // #endif // #ifdef MP-TOUTIAO // Vue.prototype.StatusBar = e.statusBarHeight; // let customTT = tt.getMenuButtonBoundingClientRect(); // Vue.prototype.Custom = customTT; // Vue.prototype.CustomBar = customTT.bottom + customTT.top - e.statusBarHeight // #endif } }) }, initShareMenu() { // #ifdef MP-WEIXIN wx.showShareMenu({ withShareTicket: true, menus: ['shareAppMessage', 'shareTimeline'] }) // #endif // #ifdef MP-QQ uni.showShareMenu({ withShareTicket: true }) // #endif } }; ================================================ FILE: client/colorui/animation.css ================================================ /* Animation 微动画 基于ColorUI组建库的动画模块 by 文晓港 2019年3月26日19:52:28 */ /* css 滤镜 控制黑白底色gif的 */ .gif-black{ mix-blend-mode: screen; } .gif-white{ mix-blend-mode: multiply; } /* Animation css */ [class*=animation-] { animation-duration: .5s; animation-timing-function: ease-out; animation-fill-mode: both } .animation-fade { animation-name: fade; animation-duration: .8s; animation-timing-function: linear } .animation-scale-up { animation-name: scale-up } .animation-scale-down { animation-name: scale-down } .animation-slide-top { animation-name: slide-top } .animation-slide-bottom { animation-name: slide-bottom } .animation-slide-left { animation-name: slide-left } .animation-slide-right { animation-name: slide-right } .animation-shake { animation-name: shake } .animation-reverse { animation-direction: reverse } @keyframes fade { 0% { opacity: 0 } 100% { opacity: 1 } } @keyframes scale-up { 0% { opacity: 0; transform: scale(.2) } 100% { opacity: 1; transform: scale(1) } } @keyframes scale-down { 0% { opacity: 0; transform: scale(1.8) } 100% { opacity: 1; transform: scale(1) } } @keyframes slide-top { 0% { opacity: 0; transform: translateY(-100%) } 100% { opacity: 1; transform: translateY(0) } } @keyframes slide-bottom { 0% { opacity: 0; transform: translateY(100%) } 100% { opacity: 1; transform: translateY(0) } } @keyframes shake { 0%, 100% { transform: translateX(0) } 10% { transform: translateX(-9px) } 20% { transform: translateX(8px) } 30% { transform: translateX(-7px) } 40% { transform: translateX(6px) } 50% { transform: translateX(-5px) } 60% { transform: translateX(4px) } 70% { transform: translateX(-3px) } 80% { transform: translateX(2px) } 90% { transform: translateX(-1px) } } @keyframes slide-left { 0% { opacity: 0; transform: translateX(-100%) } 100% { opacity: 1; transform: translateX(0) } } @keyframes slide-right { 0% { opacity: 0; transform: translateX(100%) } 100% { opacity: 1; transform: translateX(0) } } ================================================ FILE: client/colorui/components/cu-custom.vue ================================================ ================================================ FILE: client/colorui/icon.css ================================================ @font-face { font-family: 'ali-icon-font'; /* project id 1688329 */ src: url('https://at.alicdn.com/t/font_1688329_nsbeeglx2mc.eot'); src: url('https://at.alicdn.com/t/font_1688329_nsbeeglx2mc.eot?#iefix') format('embedded-opentype'), url('https://at.alicdn.com/t/font_1688329_nsbeeglx2mc.woff2') format('woff2'), url('https://at.alicdn.com/t/font_1688329_nsbeeglx2mc.woff') format('woff'), url('https://at.alicdn.com/t/font_1688329_nsbeeglx2mc.ttf') format('truetype'), url('https://at.alicdn.com/t/font_1688329_nsbeeglx2mc.svg#iconfont') format('svg'); } .icon { font-family: "ali-icon-font" !important; font-size: 36upx; font-style: normal; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .icon-appreciate:before { content: "\e644"; } .icon-emojilight:before { content: "\e7a1"; } .icon-check:before { content: "\e645"; } .icon-keyboardlight:before { content: "\e7a3"; } .icon-close:before { content: "\e646"; } .icon-recordfill:before { content: "\e7a4"; } .icon-edit:before { content: "\e649"; } .icon-recordlight:before { content: "\e7a5"; } .icon-emoji:before { content: "\e64a"; } .icon-record:before { content: "\e7a6"; } .icon-favorfill:before { content: "\e64b"; } .icon-roundaddlight:before { content: "\e7a7"; } .icon-favor:before { content: "\e64c"; } .icon-soundlight:before { content: "\e7a8"; } .icon-loading:before { content: "\e64f"; } .icon-cardboardfill:before { content: "\e7a9"; } .icon-locationfill:before { content: "\e650"; } .icon-cardboard:before { content: "\e7aa"; } .icon-location:before { content: "\e651"; } .icon-formfill:before { content: "\e7ab"; } .icon-phone:before { content: "\e652"; } .icon-coin:before { content: "\e7ac"; } .icon-roundcheckfill:before { content: "\e656"; } .icon-sortlight:before { content: "\e7ad"; } .icon-roundcheck:before { content: "\e657"; } .icon-cardboardforbid:before { content: "\e7af"; } .icon-roundclosefill:before { content: "\e658"; } .icon-circlefill:before { content: "\e7b0"; } .icon-roundclose:before { content: "\e659"; } .icon-circle:before { content: "\e7b1"; } .icon-roundrightfill:before { content: "\e65a"; } .icon-attentionforbid:before { content: "\e7b2"; } .icon-roundright:before { content: "\e65b"; } .icon-attentionforbidfill:before { content: "\e7b3"; } .icon-search:before { content: "\e65c"; } .icon-attentionfavorfill:before { content: "\e7b4"; } .icon-taxi:before { content: "\e65d"; } .icon-attentionfavor:before { content: "\e7b5"; } .icon-timefill:before { content: "\e65e"; } .icon-piclight:before { content: "\e7b7"; } .icon-time:before { content: "\e65f"; } .icon-shoplight:before { content: "\e7b8"; } .icon-unfold:before { content: "\e661"; } .icon-voicelight:before { content: "\e7b9"; } .icon-warnfill:before { content: "\e662"; } .icon-attentionfavorfill-copy:before { content: "\e7ba"; } .icon-warn:before { content: "\e663"; } .icon-full:before { content: "\e7bc"; } .icon-camerafill:before { content: "\e664"; } .icon-mail:before { content: "\e7bd"; } .icon-camera:before { content: "\e665"; } .icon-peoplelist:before { content: "\e7be"; } .icon-commentfill:before { content: "\e666"; } .icon-goodsnewfill:before { content: "\e7bf"; } .icon-comment:before { content: "\e667"; } .icon-goodsnew:before { content: "\e7c0"; } .icon-likefill:before { content: "\e668"; } .icon-medalfill:before { content: "\e7c1"; } .icon-like:before { content: "\e669"; } .icon-medal:before { content: "\e7c2"; } .icon-notificationfill:before { content: "\e66a"; } .icon-newsfill:before { content: "\e7c3"; } .icon-notification:before { content: "\e66b"; } .icon-newshotfill:before { content: "\e7c4"; } .icon-order:before { content: "\e66c"; } .icon-newshot:before { content: "\e7c5"; } .icon-samefill:before { content: "\e66d"; } .icon-news:before { content: "\e7c6"; } .icon-same:before { content: "\e66e"; } .icon-videofill:before { content: "\e7c7"; } .icon-deliver:before { content: "\e671"; } .icon-video:before { content: "\e7c8"; } .icon-evaluate:before { content: "\e672"; } .icon-askfill:before { content: "\e7c9"; } .icon-pay:before { content: "\e673"; } .icon-ask:before { content: "\e7ca"; } .icon-send:before { content: "\e675"; } .icon-exit:before { content: "\e7cb"; } .icon-shop:before { content: "\e676"; } .icon-skinfill:before { content: "\e7cc"; } .icon-ticket:before { content: "\e677"; } .icon-skin:before { content: "\e7cd"; } .icon-wang:before { content: "\e678"; } .icon-moneybagfill:before { content: "\e7ce"; } .icon-back:before { content: "\e679"; } .icon-usefullfill:before { content: "\e7cf"; } .icon-cascades:before { content: "\e67c"; } .icon-usefull:before { content: "\e7d0"; } .icon-discover:before { content: "\e67e"; } .icon-moneybag:before { content: "\e7d1"; } .icon-list:before { content: "\e682"; } .icon-redpacket_fill:before { content: "\e7d3"; } .icon-more:before { content: "\e684"; } .icon-subscription:before { content: "\e7d4"; } .icon-scan:before { content: "\e689"; } .icon-home_light:before { content: "\e7d5"; } .icon-settings:before { content: "\e68a"; } .icon-my_light:before { content: "\e7d6"; } .icon-questionfill:before { content: "\e690"; } .icon-community_light:before { content: "\e7d7"; } .icon-question:before { content: "\e691"; } .icon-cart_light:before { content: "\e7d8"; } .icon-shopfill:before { content: "\e697"; } .icon-we_light:before { content: "\e7d9"; } .icon-form:before { content: "\e699"; } .icon-home_fill_light:before { content: "\e7da"; } .icon-wangfill:before { content: "\e69a"; } .icon-cart_fill_light:before { content: "\e7db"; } .icon-pic:before { content: "\e69b"; } .icon-community_fill_light:before { content: "\e7dc"; } .icon-filter:before { content: "\e69c"; } .icon-my_fill_light:before { content: "\e7dd"; } .icon-footprint:before { content: "\e69d"; } .icon-we_fill_light:before { content: "\e7de"; } .icon-top:before { content: "\e69e"; } .icon-skin_light:before { content: "\e7df"; } .icon-pulldown:before { content: "\e69f"; } .icon-search_light:before { content: "\e7e0"; } .icon-pullup:before { content: "\e6a0"; } .icon-scan_light:before { content: "\e7e1"; } .icon-right:before { content: "\e6a3"; } .icon-people_list_light:before { content: "\e7e2"; } .icon-refresh:before { content: "\e6a4"; } .icon-message_light:before { content: "\e7e3"; } .icon-moreandroid:before { content: "\e6a5"; } .icon-close_light:before { content: "\e7e4"; } .icon-deletefill:before { content: "\e6a6"; } .icon-add_light:before { content: "\e7e5"; } .icon-refund:before { content: "\e6ac"; } .icon-profile_light:before { content: "\e7e6"; } .icon-cart:before { content: "\e6af"; } .icon-service_light:before { content: "\e7e7"; } .icon-qrcode:before { content: "\e6b0"; } .icon-friend_add_light:before { content: "\e7e8"; } .icon-remind:before { content: "\e6b2"; } .icon-edit_light:before { content: "\e7e9"; } .icon-delete:before { content: "\e6b4"; } .icon-camera_light:before { content: "\e7ea"; } .icon-profile:before { content: "\e6b7"; } .icon-hot_light:before { content: "\e7eb"; } .icon-home:before { content: "\e6b8"; } .icon-refresh_light:before { content: "\e7ec"; } .icon-cartfill:before { content: "\e6b9"; } .icon-back_light:before { content: "\e7ed"; } .icon-discoverfill:before { content: "\e6ba"; } .icon-share_light:before { content: "\e7ee"; } .icon-homefill:before { content: "\e6bb"; } .icon-comment_light:before { content: "\e7ef"; } .icon-message:before { content: "\e6bc"; } .icon-appreciate_light:before { content: "\e7f0"; } .icon-addressbook:before { content: "\e6bd"; } .icon-favor_light:before { content: "\e7f1"; } .icon-link:before { content: "\e6bf"; } .icon-appreciate_fill_light:before { content: "\e7f2"; } .icon-lock:before { content: "\e6c0"; } .icon-comment_fill_light:before { content: "\e7f3"; } .icon-unlock:before { content: "\e6c2"; } .icon-wang_light:before { content: "\e7f4"; } .icon-vip:before { content: "\e6c3"; } .icon-more_android_light:before { content: "\e7f5"; } .icon-weibo:before { content: "\e6c4"; } .icon-friend_light:before { content: "\e7f6"; } .icon-activity:before { content: "\e6c5"; } .icon-more_light:before { content: "\e7f7"; } .icon-friendaddfill:before { content: "\e6c9"; } .icon-goods_favor_light:before { content: "\e7f8"; } .icon-friendadd:before { content: "\e6ca"; } .icon-goods_new_fill_light:before { content: "\e7f9"; } .icon-friendfamous:before { content: "\e6cb"; } .icon-goods_new_light:before { content: "\e7fa"; } .icon-friend:before { content: "\e6cc"; } .icon-goods_light:before { content: "\e7fb"; } .icon-goods:before { content: "\e6cd"; } .icon-medal_fill_light:before { content: "\e7fc"; } .icon-selection:before { content: "\e6ce"; } .icon-medal_light:before { content: "\e7fd"; } .icon-tmall:before { content: "\e6cf"; } .icon-news_fill_light:before { content: "\e7fe"; } .icon-explore:before { content: "\e6d2"; } .icon-news_hot_fill_light:before { content: "\e7ff"; } .icon-present:before { content: "\e6d3"; } .icon-news_hot_light:before { content: "\e800"; } .icon-squarecheckfill:before { content: "\e6d4"; } .icon-news_light:before { content: "\e801"; } .icon-square:before { content: "\e6d5"; } .icon-video_fill_light:before { content: "\e802"; } .icon-squarecheck:before { content: "\e6d6"; } .icon-message_fill_light:before { content: "\e803"; } .icon-round:before { content: "\e6d7"; } .icon-form_light:before { content: "\e804"; } .icon-roundaddfill:before { content: "\e6d8"; } .icon-video_light:before { content: "\e805"; } .icon-roundadd:before { content: "\e6d9"; } .icon-search_list_light:before { content: "\e806"; } .icon-add:before { content: "\e6da"; } .icon-form_fill_light:before { content: "\e807"; } .icon-notificationforbidfill:before { content: "\e6db"; } .icon-global_light:before { content: "\e808"; } .icon-explorefill:before { content: "\e6dd"; } .icon-global:before { content: "\e809"; } .icon-fold:before { content: "\e6de"; } .icon-favor_fill_light:before { content: "\e80a"; } .icon-game:before { content: "\e6df"; } .icon-delete_light:before { content: "\e80b"; } .icon-redpacket:before { content: "\e6e0"; } .icon-back_android:before { content: "\e80c"; } .icon-selectionfill:before { content: "\e6e1"; } .icon-back_android_light:before { content: "\e80d"; } .icon-similar:before { content: "\e6e2"; } .icon-down_light:before { content: "\e80e"; } .icon-appreciatefill:before { content: "\e6e3"; } .icon-round_close_light:before { content: "\e80f"; } .icon-infofill:before { content: "\e6e4"; } .icon-round_close_fill_light:before { content: "\e810"; } .icon-info:before { content: "\e6e5"; } .icon-expressman:before { content: "\e811"; } .icon-tao:before { content: "\e6e8"; } .icon-punch_light:before { content: "\e812"; } .icon-mobiletao:before { content: "\e6e9"; } .icon-evaluate_fill:before { content: "\e813"; } .icon-forwardfill:before { content: "\e6ea"; } .icon-furniture:before { content: "\e814"; } .icon-forward:before { content: "\e6eb"; } .icon-dress:before { content: "\e815"; } .icon-rechargefill:before { content: "\e6ec"; } .icon-coffee:before { content: "\e816"; } .icon-recharge:before { content: "\e6ed"; } .icon-sports:before { content: "\e817"; } .icon-vipcard:before { content: "\e6ee"; } .icon-group_light:before { content: "\e818"; } .icon-voice:before { content: "\e6ef"; } .icon-location_light:before { content: "\e819"; } .icon-voicefill:before { content: "\e6f0"; } .icon-attention_light:before { content: "\e81a"; } .icon-friendfavor:before { content: "\e6f1"; } .icon-group_fill_light:before { content: "\e81b"; } .icon-wifi:before { content: "\e6f2"; } .icon-group_fill:before { content: "\e81c"; } .icon-share:before { content: "\e6f3"; } .icon-play_forward_fill:before { content: "\e81d"; } .icon-wefill:before { content: "\e6f4"; } .icon-subscription_light:before { content: "\e81e"; } .icon-we:before { content: "\e6f5"; } .icon-deliver_fill:before { content: "\e81f"; } .icon-lightauto:before { content: "\e6f6"; } .icon-notice_forbid_fill:before { content: "\e820"; } .icon-lightforbid:before { content: "\e6f7"; } .icon-qr_code_light:before { content: "\e821"; } .icon-lightfill:before { content: "\e6f8"; } .icon-settings_light:before { content: "\e822"; } .icon-camerarotate:before { content: "\e6f9"; } .icon-pick:before { content: "\e823"; } .icon-light:before { content: "\e6fa"; } .icon-form_favor_light:before { content: "\e824"; } .icon-barcode:before { content: "\e6fb"; } .icon-round_comment_light:before { content: "\e825"; } .icon-flashlightclose:before { content: "\e6fc"; } .icon-phone_light:before { content: "\e826"; } .icon-flashlightopen:before { content: "\e6fd"; } .icon-round_down_light:before { content: "\e827"; } .icon-searchlist:before { content: "\e6fe"; } .icon-friend_settings_light:before { content: "\e828"; } .icon-service:before { content: "\e6ff"; } .icon-change:before { content: "\e829"; } .icon-sort:before { content: "\e700"; } .icon-round_list_light:before { content: "\e82a"; } .icon-1212:before { content: "\e702"; } .icon-ticket_fill:before { content: "\e82b"; } .icon-down:before { content: "\e703"; } .icon-round_friend_fill:before { content: "\e82c"; } .icon-mobile:before { content: "\e704"; } .icon-round_crown_fill:before { content: "\e82d"; } .icon-mobilefill:before { content: "\e705"; } .icon-round_link_fill:before { content: "\e82e"; } .icon-copy:before { content: "\e706"; } .icon-round_light_fill:before { content: "\e82f"; } .icon-countdownfill:before { content: "\e707"; } .icon-round_favor_fill:before { content: "\e830"; } .icon-countdown:before { content: "\e708"; } .icon-round_menu_fill:before { content: "\e831"; } .icon-noticefill:before { content: "\e709"; } .icon-round_location_fill:before { content: "\e832"; } .icon-notice:before { content: "\e70a"; } .icon-round_pay_fill:before { content: "\e833"; } .icon-qiang:before { content: "\e70b"; } .icon-round_like_fill:before { content: "\e834"; } .icon-upstagefill:before { content: "\e70e"; } .icon-round_people_fill:before { content: "\e835"; } .icon-upstage:before { content: "\e70f"; } .icon-round_pay:before { content: "\e836"; } .icon-babyfill:before { content: "\e710"; } .icon-round_rank_fill:before { content: "\e837"; } .icon-baby:before { content: "\e711"; } .icon-round_redpacket_fill:before { content: "\e838"; } .icon-brandfill:before { content: "\e712"; } .icon-round_skin_fill:before { content: "\e839"; } .icon-brand:before { content: "\e713"; } .icon-round_record_fill:before { content: "\e83a"; } .icon-choicenessfill:before { content: "\e714"; } .icon-round_ticket_fill:before { content: "\e83b"; } .icon-choiceness:before { content: "\e715"; } .icon-round_redpacket:before { content: "\e83c"; } .icon-clothesfill:before { content: "\e716"; } .icon-round_text_fill:before { content: "\e83d"; } .icon-clothes:before { content: "\e717"; } .icon-round_ticket:before { content: "\e83e"; } .icon-creativefill:before { content: "\e718"; } .icon-round_transfer_fill:before { content: "\e83f"; } .icon-creative:before { content: "\e719"; } .icon-subtitle_block_light:before { content: "\e840"; } .icon-female:before { content: "\e71a"; } .icon-warn_light:before { content: "\e841"; } .icon-keyboard:before { content: "\e71b"; } .icon-round_transfer:before { content: "\e842"; } .icon-male:before { content: "\e71c"; } .icon-subtitle_unblock_light:before { content: "\e843"; } .icon-newfill:before { content: "\e71d"; } .icon-round_shop_fill:before { content: "\e844"; } .icon-new:before { content: "\e71e"; } .icon-oppose_fill_light:before { content: "\e845"; } .icon-pullleft:before { content: "\e71f"; } .icon-oppose_light:before { content: "\e846"; } .icon-pullright:before { content: "\e720"; } .icon-living:before { content: "\e847"; } .icon-rankfill:before { content: "\e721"; } .icon-goods_hot_fill:before { content: "\e848"; } .icon-rank:before { content: "\e722"; } .icon-ticket_money_fill:before { content: "\e849"; } .icon-bad:before { content: "\e723"; } .icon-arrow_left_fill:before { content: "\e84a"; } .icon-cameraadd:before { content: "\e724"; } .icon-arrow_up_fill:before { content: "\e84b"; } .icon-focus:before { content: "\e725"; } .icon-xiaoheiqun:before { content: "\e84c"; } .icon-friendfill:before { content: "\e726"; } .icon-auction:before { content: "\e84d"; } .icon-cameraaddfill:before { content: "\e727"; } .icon-return:before { content: "\e84e"; } .icon-apps:before { content: "\e729"; } .icon-mall_light:before { content: "\e84f"; } .icon-paintfill:before { content: "\e72a"; } .icon-mall_fill_light:before { content: "\e850"; } .icon-paint:before { content: "\e72b"; } .icon-broadcast_fill:before { content: "\e851"; } .icon-picfill:before { content: "\e72c"; } .icon-at:before { content: "\e852"; } .icon-refresharrow:before { content: "\e72d"; } .icon-card_fill:before { content: "\e853"; } .icon-markfill:before { content: "\e730"; } .icon-mark:before { content: "\e731"; } .icon-presentfill:before { content: "\e732"; } .icon-repeal:before { content: "\e733"; } .icon-album:before { content: "\e734"; } .icon-peoplefill:before { content: "\e735"; } .icon-people:before { content: "\e736"; } .icon-servicefill:before { content: "\e737"; } .icon-repair:before { content: "\e738"; } .icon-file:before { content: "\e739"; } .icon-repairfill:before { content: "\e73a"; } .icon-taoxiaopu:before { content: "\e73b"; } .icon-attentionfill:before { content: "\e73c"; } .icon-attention:before { content: "\e73d"; } .icon-commandfill:before { content: "\e73e"; } .icon-command:before { content: "\e73f"; } .icon-communityfill:before { content: "\e740"; } .icon-community:before { content: "\e741"; } .icon-read:before { content: "\e742"; } .icon-suan:before { content: "\e743"; } .icon-hua:before { content: "\e744"; } .icon-ju:before { content: "\e745"; } .icon-tian:before { content: "\e748"; } .icon-calendar:before { content: "\e74a"; } .icon-cut:before { content: "\e74b"; } .icon-magic:before { content: "\e74c"; } .icon-backwardfill:before { content: "\e74d"; } .icon-playfill:before { content: "\e74f"; } .icon-stop:before { content: "\e750"; } .icon-tagfill:before { content: "\e751"; } .icon-tag:before { content: "\e752"; } .icon-group:before { content: "\e753"; } .icon-all:before { content: "\e755"; } .icon-backdelete:before { content: "\e756"; } .icon-hotfill:before { content: "\e757"; } .icon-hot:before { content: "\e758"; } .icon-post:before { content: "\e759"; } .icon-radiobox:before { content: "\e75b"; } .icon-rounddown:before { content: "\e75c"; } .icon-upload:before { content: "\e75d"; } .icon-writefill:before { content: "\e760"; } .icon-write:before { content: "\e761"; } .icon-radioboxfill:before { content: "\e763"; } .icon-punch:before { content: "\e764"; } .icon-shake:before { content: "\e765"; } .icon-add1:before { content: "\e767"; } .icon-move:before { content: "\e768"; } .icon-safe:before { content: "\e769"; } .icon-haodian:before { content: "\e76d"; } .icon-mao:before { content: "\e76e"; } .icon-qi:before { content: "\e76f"; } .icon-ye:before { content: "\e770"; } .icon-juhuasuan:before { content: "\e771"; } .icon-taoqianggou:before { content: "\e772"; } .icon-tianmao:before { content: "\e773"; } .icon-activityfill:before { content: "\e775"; } .icon-crownfill:before { content: "\e776"; } .icon-crown:before { content: "\e777"; } .icon-goodsfill:before { content: "\e778"; } .icon-messagefill:before { content: "\e779"; } .icon-profilefill:before { content: "\e77a"; } .icon-sound:before { content: "\e77b"; } .icon-sponsorfill:before { content: "\e77c"; } .icon-sponsor:before { content: "\e77d"; } .icon-upblock:before { content: "\e77e"; } .icon-weblock:before { content: "\e77f"; } .icon-weunblock:before { content: "\e780"; } .icon-1111:before { content: "\e782"; } .icon-my:before { content: "\e78b"; } .icon-myfill:before { content: "\e78c"; } .icon-emojifill:before { content: "\e78d"; } .icon-emojiflashfill:before { content: "\e78e"; } .icon-flashbuyfill-copy:before { content: "\e78f"; } .icon-text:before { content: "\e791"; } .icon-goodsfavor:before { content: "\e794"; } .icon-musicfill:before { content: "\e795"; } .icon-musicforbidfill:before { content: "\e796"; } .icon-roundleftfill:before { content: "\e799"; } .icon-triangledownfill:before { content: "\e79b"; } .icon-triangleupfill:before { content: "\e79c"; } .icon-roundleftfill-copy:before { content: "\e79e"; } .icon-pulldown1:before { content: "\e79f"; } ================================================ FILE: client/colorui/main.css ================================================ /* ColorUi for uniApp v2.1.6 | by 文晓港 2019-05-31 10:44:24 仅供学习交流,如作它用所承受的法律责任一概与作者无关 *使用ColorUi开发扩展与插件时,请注明基于ColorUi开发 (QQ交流群:240787041) */ /* ================== 初始化 ==================== */ body { background-color: #f1f1f1; font-size: 28upx; color: #333333; font-family: Helvetica Neue, Helvetica, sans-serif; } view, scroll-view, swiper, button, input, textarea, label, navigator, image { box-sizing: border-box; } .round { border-radius: 5000upx; } .radius { border-radius: 6upx; } /* ================== 图片 ==================== */ image { max-width: 100%; display: inline-block; position: relative; z-index: 0; } image.loading::before { content: ""; background-color: #f5f5f5; display: block; position: absolute; width: 100%; height: 100%; z-index: -2; } image.loading::after { content: "\e7f1"; font-family: "cuIcon"; position: absolute; top: 0; left: 0; width: 32upx; height: 32upx; line-height: 32upx; right: 0; bottom: 0; z-index: -1; font-size: 32upx; margin: auto; color: #ccc; -webkit-animation: cuIcon-spin 2s infinite linear; animation: cuIcon-spin 2s infinite linear; display: block; } .response { width: 100%; } /* ================== 开关 ==================== */ switch, checkbox, radio { position: relative; } switch::after, switch::before { font-family: "cuIcon"; content: "\e645"; position: absolute; color: #ffffff !important; top: 0%; left: 0upx; font-size: 26upx; line-height: 26px; width: 50%; text-align: center; pointer-events: none; transform: scale(0, 0); transition: all 0.3s ease-in-out 0s; z-index: 9; bottom: 0; height: 26px; margin: auto; } switch::before { content: "\e646"; right: 0; transform: scale(1, 1); left: auto; } switch[checked]::after, switch.checked::after { transform: scale(1, 1); } switch[checked]::before, switch.checked::before { transform: scale(0, 0); } /* #ifndef MP-ALIPAY */ radio::before, checkbox::before { font-family: "cuIcon"; content: "\e645"; position: absolute; color: #ffffff !important; top: 50%; margin-top: -8px; right: 5px; font-size: 32upx; line-height: 16px; pointer-events: none; transform: scale(1, 1); transition: all 0.3s ease-in-out 0s; z-index: 9; } radio .wx-radio-input, checkbox .wx-checkbox-input, radio .uni-radio-input, checkbox .uni-checkbox-input { margin: 0; width: 24px; height: 24px; } checkbox.round .wx-checkbox-input, checkbox.round .uni-checkbox-input { border-radius: 100upx; } /* #endif */ switch[checked]::before { transform: scale(0, 0); } switch .wx-switch-input, switch .uni-switch-input { border: none; padding: 0 24px; width: 48px; height: 26px; margin: 0; border-radius: 100upx; } switch .wx-switch-input:not([class*="bg-"]), switch .uni-switch-input:not([class*="bg-"]) { background: #8799a3 !important; } switch .wx-switch-input::after, switch .uni-switch-input::after { margin: auto; width: 26px; height: 26px; border-radius: 100upx; left: 0upx; top: 0upx; bottom: 0upx; position: absolute; transform: scale(0.9, 0.9); transition: all 0.1s ease-in-out 0s; } switch .wx-switch-input.wx-switch-input-checked::after, switch .uni-switch-input.uni-switch-input-checked::after { margin: auto; left: 22px; box-shadow: none; transform: scale(0.9, 0.9); } radio-group { display: inline-block; } switch.radius .wx-switch-input::after, switch.radius .wx-switch-input, switch.radius .wx-switch-input::before, switch.radius .uni-switch-input::after, switch.radius .uni-switch-input, switch.radius .uni-switch-input::before { border-radius: 10upx; } switch .wx-switch-input::before, radio.radio::before, checkbox .wx-checkbox-input::before, radio .wx-radio-input::before, switch .uni-switch-input::before, radio.radio::before, checkbox .uni-checkbox-input::before, radio .uni-radio-input::before { display: none; } radio.radio[checked]::after, radio.radio .uni-radio-input-checked::after { content: ""; background-color: transparent; display: block; position: absolute; width: 8px; height: 8px; z-index: 999; top: 0upx; left: 0upx; right: 0; bottom: 0; margin: auto; border-radius: 200upx; /* #ifndef MP */ border: 7px solid #ffffff !important; /* #endif */ /* #ifdef MP */ border: 8px solid #ffffff !important; /* #endif */ } .switch-sex::after { content: "\e71c"; } .switch-sex::before { content: "\e71a"; } .switch-sex .wx-switch-input, .switch-sex .uni-switch-input { background: #e54d42 !important; border-color: #e54d42 !important; } .switch-sex[checked] .wx-switch-input, .switch-sex.checked .uni-switch-input { background: #0081ff !important; border-color: #0081ff !important; } switch.red[checked] .wx-switch-input.wx-switch-input-checked, checkbox.red[checked] .wx-checkbox-input, radio.red[checked] .wx-radio-input, switch.red.checked .uni-switch-input.uni-switch-input-checked, checkbox.red.checked .uni-checkbox-input, radio.red.checked .uni-radio-input { background-color: #e54d42 !important; border-color: #e54d42 !important; color: #ffffff !important; } switch.orange[checked] .wx-switch-input, checkbox.orange[checked] .wx-checkbox-input, radio.orange[checked] .wx-radio-input, switch.orange.checked .uni-switch-input, checkbox.orange.checked .uni-checkbox-input, radio.orange.checked .uni-radio-input { background-color: #f37b1d !important; border-color: #f37b1d !important; color: #ffffff !important; } switch.yellow[checked] .wx-switch-input, checkbox.yellow[checked] .wx-checkbox-input, radio.yellow[checked] .wx-radio-input, switch.yellow.checked .uni-switch-input, checkbox.yellow.checked .uni-checkbox-input, radio.yellow.checked .uni-radio-input { background-color: #fbbd08 !important; border-color: #fbbd08 !important; color: #333333 !important; } switch.olive[checked] .wx-switch-input, checkbox.olive[checked] .wx-checkbox-input, radio.olive[checked] .wx-radio-input, switch.olive.checked .uni-switch-input, checkbox.olive.checked .uni-checkbox-input, radio.olive.checked .uni-radio-input { background-color: #8dc63f !important; border-color: #8dc63f !important; color: #ffffff !important; } switch.green[checked] .wx-switch-input, switch[checked] .wx-switch-input, checkbox.green[checked] .wx-checkbox-input, checkbox[checked] .wx-checkbox-input, radio.green[checked] .wx-radio-input, radio[checked] .wx-radio-input, switch.green.checked .uni-switch-input, switch.checked .uni-switch-input, checkbox.green.checked .uni-checkbox-input, checkbox.checked .uni-checkbox-input, radio.green.checked .uni-radio-input, radio.checked .uni-radio-input { background-color: #39b54a !important; border-color: #39b54a !important; color: #ffffff !important; border-color: #39B54A !important; } switch.cyan[checked] .wx-switch-input, checkbox.cyan[checked] .wx-checkbox-input, radio.cyan[checked] .wx-radio-input, switch.cyan.checked .uni-switch-input, checkbox.cyan.checked .uni-checkbox-input, radio.cyan.checked .uni-radio-input { background-color: #1cbbb4 !important; border-color: #1cbbb4 !important; color: #ffffff !important; } switch.blue[checked] .wx-switch-input, checkbox.blue[checked] .wx-checkbox-input, radio.blue[checked] .wx-radio-input, switch.blue.checked .uni-switch-input, checkbox.blue.checked .uni-checkbox-input, radio.blue.checked .uni-radio-input { background-color: #0081ff !important; border-color: #0081ff !important; color: #ffffff !important; } switch.purple[checked] .wx-switch-input, checkbox.purple[checked] .wx-checkbox-input, radio.purple[checked] .wx-radio-input, switch.purple.checked .uni-switch-input, checkbox.purple.checked .uni-checkbox-input, radio.purple.checked .uni-radio-input { background-color: #6739b6 !important; border-color: #6739b6 !important; color: #ffffff !important; } switch.mauve[checked] .wx-switch-input, checkbox.mauve[checked] .wx-checkbox-input, radio.mauve[checked] .wx-radio-input, switch.mauve.checked .uni-switch-input, checkbox.mauve.checked .uni-checkbox-input, radio.mauve.checked .uni-radio-input { background-color: #9c26b0 !important; border-color: #9c26b0 !important; color: #ffffff !important; } switch.pink[checked] .wx-switch-input, checkbox.pink[checked] .wx-checkbox-input, radio.pink[checked] .wx-radio-input, switch.pink.checked .uni-switch-input, checkbox.pink.checked .uni-checkbox-input, radio.pink.checked .uni-radio-input { background-color: #e03997 !important; border-color: #e03997 !important; color: #ffffff !important; } switch.brown[checked] .wx-switch-input, checkbox.brown[checked] .wx-checkbox-input, radio.brown[checked] .wx-radio-input, switch.brown.checked .uni-switch-input, checkbox.brown.checked .uni-checkbox-input, radio.brown.checked .uni-radio-input { background-color: #a5673f !important; border-color: #a5673f !important; color: #ffffff !important; } switch.grey[checked] .wx-switch-input, checkbox.grey[checked] .wx-checkbox-input, radio.grey[checked] .wx-radio-input, switch.grey.checked .uni-switch-input, checkbox.grey.checked .uni-checkbox-input, radio.grey.checked .uni-radio-input { background-color: #8799a3 !important; border-color: #8799a3 !important; color: #ffffff !important; } switch.gray[checked] .wx-switch-input, checkbox.gray[checked] .wx-checkbox-input, radio.gray[checked] .wx-radio-input, switch.gray.checked .uni-switch-input, checkbox.gray.checked .uni-checkbox-input, radio.gray.checked .uni-radio-input { background-color: #f0f0f0 !important; border-color: #f0f0f0 !important; color: #333333 !important; } switch.black[checked] .wx-switch-input, checkbox.black[checked] .wx-checkbox-input, radio.black[checked] .wx-radio-input, switch.black.checked .uni-switch-input, checkbox.black.checked .uni-checkbox-input, radio.black.checked .uni-radio-input { background-color: #333333 !important; border-color: #333333 !important; color: #ffffff !important; } switch.white[checked] .wx-switch-input, checkbox.white[checked] .wx-checkbox-input, radio.white[checked] .wx-radio-input, switch.white.checked .uni-switch-input, checkbox.white.checked .uni-checkbox-input, radio.white.checked .uni-radio-input { background-color: #ffffff !important; border-color: #ffffff !important; color: #333333 !important; } /* ================== 边框 ==================== */ /* -- 实线 -- */ .solid, .solid-top, .solid-right, .solid-bottom, .solid-left, .solids, .solids-top, .solids-right, .solids-bottom, .solids-left, .dashed, .dashed-top, .dashed-right, .dashed-bottom, .dashed-left { position: relative; } .solid::after, .solid-top::after, .solid-right::after, .solid-bottom::after, .solid-left::after, .solids::after, .solids-top::after, .solids-right::after, .solids-bottom::after, .solids-left::after, .dashed::after, .dashed-top::after, .dashed-right::after, .dashed-bottom::after, .dashed-left::after { content: " "; width: 200%; height: 200%; position: absolute; top: 0; left: 0; border-radius: inherit; transform: scale(0.5); transform-origin: 0 0; pointer-events: none; box-sizing: border-box; } .solid::after { border: 1upx solid rgba(0, 0, 0, 0.1); } .solid-top::after { border-top: 1upx solid rgba(0, 0, 0, 0.1); } .solid-right::after { border-right: 1upx solid rgba(0, 0, 0, 0.1); } .solid-bottom::after { border-bottom: 1upx solid rgba(0, 0, 0, 0.1); } .solid-left::after { border-left: 1upx solid rgba(0, 0, 0, 0.1); } .solids::after { border: 8upx solid #eee; } .solids-top::after { border-top: 8upx solid #eee; } .solids-right::after { border-right: 8upx solid #eee; } .solids-bottom::after { border-bottom: 8upx solid #eee; } .solids-left::after { border-left: 8upx solid #eee; } /* -- 虚线 -- */ .dashed::after { border: 1upx dashed #ddd; } .dashed-top::after { border-top: 1upx dashed #ddd; } .dashed-right::after { border-right: 1upx dashed #ddd; } .dashed-bottom::after { border-bottom: 1upx dashed #ddd; } .dashed-left::after { border-left: 1upx dashed #ddd; } /* -- 阴影 -- */ .shadow[class*='white'] { --ShadowSize: 0 1upx 6upx; } .shadow-lg { --ShadowSize: 0upx 40upx 100upx 0upx; } .shadow-warp { position: relative; box-shadow: 0 0 10upx rgba(0, 0, 0, 0.1); } .shadow-warp:before, .shadow-warp:after { position: absolute; content: ""; top: 20upx; bottom: 30upx; left: 20upx; width: 50%; box-shadow: 0 30upx 20upx rgba(0, 0, 0, 0.2); transform: rotate(-3deg); z-index: -1; } .shadow-warp:after { right: 20upx; left: auto; transform: rotate(3deg); } .shadow-blur { position: relative; } .shadow-blur::before { content: ""; display: block; background: inherit; filter: blur(10upx); position: absolute; width: 100%; height: 100%; top: 10upx; left: 10upx; z-index: -1; opacity: 0.4; transform-origin: 0 0; border-radius: inherit; transform: scale(1, 1); } /* ================== 按钮 ==================== */ .cu-btn { position: relative; border: 0upx; display: inline-flex; align-items: center; justify-content: center; box-sizing: border-box; padding: 0 30upx; font-size: 28upx; height: 64upx; line-height: 1; text-align: center; text-decoration: none; overflow: visible; margin-left: initial; transform: translate(0upx, 0upx); margin-right: initial; } .cu-btn::after { display: none; } .cu-btn:not([class*="bg-"]) { background-color: #f0f0f0; } .cu-btn[class*="line"] { background-color: transparent; } .cu-btn[class*="line"]::after { content: " "; display: block; width: 200%; height: 200%; position: absolute; top: 0; left: 0; border: 1upx solid currentColor; transform: scale(0.5); transform-origin: 0 0; box-sizing: border-box; border-radius: 12upx; z-index: 1; pointer-events: none; } .cu-btn.round[class*="line"]::after { border-radius: 1000upx; } .cu-btn[class*="lines"]::after { border: 6upx solid currentColor; } .cu-btn[class*="bg-"]::after { display: none; } .cu-btn.sm { padding: 0 20upx; font-size: 20upx; height: 48upx; } .cu-btn.lg { padding: 0 40upx; font-size: 32upx; height: 80upx; } .cu-btn.cuIcon.sm { width: 48upx; height: 48upx; } .cu-btn.cuIcon { width: 64upx; height: 64upx; border-radius: 500upx; padding: 0; } button.cuIcon.lg { width: 80upx; height: 80upx; } .cu-btn.shadow-blur::before { top: 4upx; left: 4upx; filter: blur(6upx); opacity: 0.6; } .cu-btn.button-hover { transform: translate(1upx, 1upx); } .block { display: block; } .cu-btn.block { display: flex; } .cu-btn[disabled] { opacity: 0.6; color: #ffffff; } /* ================== 徽章 ==================== */ .cu-tag { font-size: 24upx; vertical-align: middle; position: relative; display: inline-flex; align-items: center; justify-content: center; box-sizing: border-box; padding: 0upx 16upx; height: 48upx; font-family: Helvetica Neue, Helvetica, sans-serif; white-space: nowrap; } .cu-tag:not([class*="bg"]):not([class*="line"]) { background-color: #f1f1f1; } .cu-tag[class*="line-"]::after { content: " "; width: 200%; height: 200%; position: absolute; top: 0; left: 0; border: 1upx solid currentColor; transform: scale(0.5); transform-origin: 0 0; box-sizing: border-box; border-radius: inherit; z-index: 1; pointer-events: none; } .cu-tag.radius[class*="line"]::after { border-radius: 12upx; } .cu-tag.round[class*="line"]::after { border-radius: 1000upx; } .cu-tag[class*="line-"]::after { border-radius: 0; } .cu-tag+.cu-tag { margin-left: 10upx; } .cu-tag.sm { font-size: 20upx; padding: 0upx 12upx; height: 32upx; } .cu-capsule { display: inline-flex; vertical-align: middle; } .cu-capsule+.cu-capsule { margin-left: 10upx; } .cu-capsule .cu-tag { margin: 0; } .cu-capsule .cu-tag[class*="line-"]:last-child::after { border-left: 0upx solid transparent; } .cu-capsule .cu-tag[class*="line-"]:first-child::after { border-right: 0upx solid transparent; } .cu-capsule.radius .cu-tag:first-child { border-top-left-radius: 6upx; border-bottom-left-radius: 6upx; } .cu-capsule.radius .cu-tag:last-child::after, .cu-capsule.radius .cu-tag[class*="line-"] { border-top-right-radius: 12upx; border-bottom-right-radius: 12upx; } .cu-capsule.round .cu-tag:first-child { border-top-left-radius: 200upx; border-bottom-left-radius: 200upx; text-indent: 4upx; } .cu-capsule.round .cu-tag:last-child::after, .cu-capsule.round .cu-tag:last-child { border-top-right-radius: 200upx; border-bottom-right-radius: 200upx; text-indent: -4upx; } .cu-tag.badge { border-radius: 200upx; position: absolute; top: -10upx; right: -10upx; font-size: 20upx; padding: 0upx 10upx; height: 28upx; color: #ffffff; } .cu-tag.badge:not([class*="bg-"]) { background-color: #dd514c; } .cu-tag:empty:not([class*="cuIcon-"]) { padding: 0upx; width: 16upx; height: 16upx; top: -4upx; right: -4upx; } .cu-tag[class*="cuIcon-"] { width: 32upx; height: 32upx; top: -4upx; right: -4upx; } /* ================== 头像 ==================== */ .cu-avatar { font-variant: small-caps; margin: 0; padding: 0; display: inline-flex; text-align: center; justify-content: center; align-items: center; background-color: #ccc; color: #ffffff; white-space: nowrap; position: relative; width: 64upx; height: 64upx; background-size: cover; background-position: center; vertical-align: middle; font-size: 1.5em; } .cu-avatar.sm { width: 48upx; height: 48upx; font-size: 1em; } .cu-avatar.lg { width: 96upx; height: 96upx; font-size: 2em; } .cu-avatar.xl { width: 128upx; height: 128upx; font-size: 2.5em; } .cu-avatar .avatar-text { font-size: 0.4em; } .cu-avatar-group { direction: rtl; unicode-bidi: bidi-override; padding: 0 10upx 0 40upx; display: inline-block; } .cu-avatar-group .cu-avatar { margin-left: -30upx; border: 4upx solid #f1f1f1; vertical-align: middle; } .cu-avatar-group .cu-avatar.sm { margin-left: -20upx; border: 1upx solid #f1f1f1; } /* ================== 进度条 ==================== */ .cu-progress { overflow: hidden; height: 28upx; background-color: #ebeef5; display: inline-flex; align-items: center; width: 100%; } .cu-progress+view, .cu-progress+text { line-height: 1; } .cu-progress.xs { height: 10upx; } .cu-progress.sm { height: 20upx; } .cu-progress view { width: 0; height: 100%; align-items: center; display: flex; justify-items: flex-end; justify-content: space-around; font-size: 20upx; color: #ffffff; transition: width 0.6s ease; } .cu-progress text { align-items: center; display: flex; font-size: 20upx; color: #333333; text-indent: 10upx; } .cu-progress.text-progress { padding-right: 60upx; } .cu-progress.striped view { background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-size: 72upx 72upx; } .cu-progress.active view { animation: progress-stripes 2s linear infinite; } @keyframes progress-stripes { from { background-position: 72upx 0; } to { background-position: 0 0; } } /* ================== 加载 ==================== */ .cu-load { display: block; line-height: 3em; text-align: center; } .cu-load::before { font-family: "cuIcon"; display: inline-block; margin-right: 6upx; } .cu-load.loading::before { content: "\e67a"; animation: cuIcon-spin 2s infinite linear; } .cu-load.loading::after { content: "加载中..."; } .cu-load.over::before { content: "\e64a"; } .cu-load.over::after { content: "没有更多了"; } .cu-load.erro::before { content: "\e658"; } .cu-load.erro::after { content: "加载失败"; } .cu-load.load-cuIcon::before { font-size: 32upx; } .cu-load.load-cuIcon::after { display: none; } .cu-load.load-cuIcon.over { display: none; } .cu-load.load-modal { position: fixed; top: 0; right: 0; bottom: 140upx; left: 0; margin: auto; width: 260upx; height: 260upx; background-color: #ffffff; border-radius: 10upx; box-shadow: 0 0 0upx 2000upx rgba(0, 0, 0, 0.5); display: flex; align-items: center; flex-direction: column; justify-content: center; font-size: 28upx; z-index: 9999; line-height: 2.4em; } .cu-load.load-modal [class*="cuIcon-"] { font-size: 60upx; } .cu-load.load-modal image { width: 70upx; height: 70upx; } .cu-load.load-modal::after { content: ""; position: absolute; background-color: #ffffff; border-radius: 50%; width: 200upx; height: 200upx; font-size: 10px; border-top: 6upx solid rgba(0, 0, 0, 0.05); border-right: 6upx solid rgba(0, 0, 0, 0.05); border-bottom: 6upx solid rgba(0, 0, 0, 0.05); border-left: 6upx solid #f37b1d; animation: cuIcon-spin 1s infinite linear; z-index: -1; } .load-progress { pointer-events: none; top: 0; position: fixed; width: 100%; left: 0; z-index: 2000; } .load-progress.hide { display: none; } .load-progress .load-progress-bar { position: relative; width: 100%; height: 4upx; overflow: hidden; transition: all 200ms ease 0s; } .load-progress .load-progress-spinner { position: absolute; top: 10upx; right: 10upx; z-index: 2000; display: block; } .load-progress .load-progress-spinner::after { content: ""; display: block; width: 24upx; height: 24upx; -webkit-box-sizing: border-box; box-sizing: border-box; border: solid 4upx transparent; border-top-color: inherit; border-left-color: inherit; border-radius: 50%; -webkit-animation: load-progress-spinner 0.4s linear infinite; animation: load-progress-spinner 0.4s linear infinite; } @-webkit-keyframes load-progress-spinner { 0% { -webkit-transform: rotate(0); transform: rotate(0); } 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); } } @keyframes load-progress-spinner { 0% { -webkit-transform: rotate(0); transform: rotate(0); } 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); } } /* ================== 列表 ==================== */ .grayscale { filter: grayscale(1); } .cu-list+.cu-list { margin-top: 30upx } .cu-list>.cu-item { transition: all .6s ease-in-out 0s; transform: translateX(0upx) } .cu-list>.cu-item.move-cur { transform: translateX(-260upx) } .cu-list>.cu-item .move { position: absolute; right: 0; display: flex; width: 260upx; height: 100%; transform: translateX(100%) } .cu-list>.cu-item .move view { display: flex; flex: 1; justify-content: center; align-items: center } .cu-list.menu-avatar { overflow: hidden; } .cu-list.menu-avatar>.cu-item { position: relative; display: flex; padding-right: 10upx; height: 140upx; background-color: #ffffff; justify-content: flex-end; align-items: center } .cu-list.menu-avatar>.cu-item>.cu-avatar { position: absolute; left: 30upx } .cu-list.menu-avatar>.cu-item .flex .text-cut { max-width: 510upx } .cu-list.menu-avatar>.cu-item .content { position: absolute; left: 146upx; width: calc(100% - 96upx - 60upx - 120upx - 20upx); line-height: 1.6em; } .cu-list.menu-avatar>.cu-item .content.flex-sub { width: calc(100% - 96upx - 60upx - 20upx); } .cu-list.menu-avatar>.cu-item .content>view:first-child { font-size: 30upx; display: flex; align-items: center } .cu-list.menu-avatar>.cu-item .content .cu-tag.sm { display: inline-block; margin-left: 10upx; height: 28upx; font-size: 16upx; line-height: 32upx } .cu-list.menu-avatar>.cu-item .action { width: 100upx; text-align: center } .cu-list.menu-avatar>.cu-item .action view+view { margin-top: 10upx } .cu-list.menu-avatar.comment>.cu-item .content { position: relative; left: 0; width: auto; flex: 1; } .cu-list.menu-avatar.comment>.cu-item { padding: 30upx 30upx 30upx 120upx; height: auto } .cu-list.menu-avatar.comment .cu-avatar { align-self: flex-start } .cu-list.menu>.cu-item { position: relative; display: flex; padding: 0 30upx; min-height: 100upx; background-color: #ffffff; justify-content: space-between; align-items: center } .cu-list.menu>.cu-item:last-child:after { border: none } .cu-list.menu-avatar>.cu-item:after, .cu-list.menu>.cu-item:after { position: absolute; top: 0; left: 0; box-sizing: border-box; width: 200%; height: 200%; border-bottom: 1upx solid #ddd; border-radius: inherit; content: " "; transform: scale(.5); transform-origin: 0 0; pointer-events: none } .cu-list.menu>.cu-item.grayscale { background-color: #f5f5f5 } .cu-list.menu>.cu-item.cur { background-color: #fcf7e9 } .cu-list.menu>.cu-item.arrow { padding-right: 90upx } .cu-list.menu>.cu-item.arrow:before { position: absolute; top: 0; right: 30upx; bottom: 0; display: block; margin: auto; width: 30upx; height: 30upx; color: #8799a3; content: "\e6a3"; text-align: center; font-size: 34upx; font-family: ali-icon-font; line-height: 30upx } .cu-list.menu>.cu-item button.content { padding: 0; background-color: transparent; justify-content: flex-start } .cu-list.menu>.cu-item button.content:after { display: none } .cu-list.menu>.cu-item .cu-avatar-group .cu-avatar { border-color: #ffffff } .cu-list.menu>.cu-item .content>view:first-child { display: flex; align-items: center } .cu-list.menu>.cu-item .content>text[class*=cuIcon] { display: inline-block; margin-right: 10upx; width: 1.6em; text-align: center } .cu-list.menu>.cu-item .content>image { display: inline-block; margin-right: 10upx; width: 1.6em; height: 1.6em; vertical-align: middle } .cu-list.menu>.cu-item .content { font-size: 30upx; line-height: 1.6em; flex: 1 } .cu-list.menu>.cu-item .content .cu-tag.sm { display: inline-block; margin-left: 10upx; height: 28upx; font-size: 16upx; line-height: 32upx } .cu-list.menu>.cu-item .action .cu-tag:empty { right: 10upx } .cu-list.menu { display: block; overflow: hidden } .cu-list.menu.sm-border>.cu-item:after { left: 30upx; width: calc(200% - 120upx) } .cu-list.grid>.cu-item { position: relative; display: flex; padding: 20upx 0 30upx; transition-duration: 0s; flex-direction: column } .cu-list.grid>.cu-item:after { position: absolute; top: 0; left: 0; box-sizing: border-box; width: 200%; height: 200%; border-right: 1px solid rgba(0, 0, 0, .1); border-bottom: 1px solid rgba(0, 0, 0, .1); border-radius: inherit; content: " "; transform: scale(.5); transform-origin: 0 0; pointer-events: none } .cu-list.grid>.cu-item text { display: block; margin-top: 10upx; color: #888; font-size: 26upx; line-height: 40upx } .cu-list.grid>.cu-item [class*=cuIcon] { position: relative; display: block; margin-top: 20upx; width: 100%; font-size: 48upx } .cu-list.grid>.cu-item .cu-tag { right: auto; left: 50%; margin-left: 20upx } .cu-list.grid { background-color: #ffffff; text-align: center } .cu-list.grid.no-border>.cu-item { padding-top: 10upx; padding-bottom: 20upx } .cu-list.grid.no-border>.cu-item:after { border: none } .cu-list.grid.no-border { padding: 20upx 10upx } .cu-list.grid.col-3>.cu-item:nth-child(3n):after, .cu-list.grid.col-4>.cu-item:nth-child(4n):after, .cu-list.grid.col-5>.cu-item:nth-child(5n):after { border-right-width: 0 } .cu-list.card-menu { overflow: hidden; margin-right: 30upx; margin-left: 30upx; border-radius: 20upx } /* ================== 操作条 ==================== */ .cu-bar { display: flex; position: relative; align-items: center; min-height: 100upx; justify-content: space-between; } .cu-bar .action { display: flex; align-items: center; height: 100%; justify-content: center; max-width: 100%; } .cu-bar .action.border-title { position: relative; top: -10upx; } .cu-bar .action.border-title text[class*="bg-"]:last-child { position: absolute; bottom: -0.5rem; min-width: 2rem; height: 6upx; left: 0; } .cu-bar .action.sub-title { position: relative; top: -0.2rem; } .cu-bar .action.sub-title text { position: relative; z-index: 1; } .cu-bar .action.sub-title text[class*="bg-"]:last-child { position: absolute; display: inline-block; bottom: -0.2rem; border-radius: 6upx; width: 100%; height: 0.6rem; left: 0.6rem; opacity: 0.3; z-index: 0; } .cu-bar .action.sub-title text[class*="text-"]:last-child { position: absolute; display: inline-block; bottom: -0.7rem; left: 0.5rem; opacity: 0.2; z-index: 0; text-align: right; font-weight: 900; font-size: 36upx; } .cu-bar.justify-center .action.border-title text:last-child, .cu-bar.justify-center .action.sub-title text:last-child { left: 0; right: 0; margin: auto; text-align: center; } .cu-bar .action:first-child { margin-left: 30upx; font-size: 30upx; } .cu-bar .action text.text-cut { text-align: left; width: 100%; } .cu-bar .cu-avatar:first-child { margin-left: 20upx; } .cu-bar .action:first-child>text[class*="cuIcon-"] { margin-left: -0.3em; margin-right: 0.3em; } .cu-bar .action:last-child { margin-right: 30upx; } .cu-bar .action>text[class*="cuIcon-"], .cu-bar .action>view[class*="cuIcon-"] { font-size: 36upx; } .cu-bar .action>text[class*="cuIcon-"]+text[class*="cuIcon-"] { margin-left: 0.5em; } .cu-bar .content { position: absolute; text-align: center; width: calc(100% - 340upx); left: 0; right: 0; bottom: 0; top: 0; margin: auto; height: 60upx; font-size: 32upx; line-height: 60upx; cursor: none; pointer-events: none; text-overflow: ellipsis; white-space: nowrap; overflow: hidden; } .cu-bar.ios .content { bottom: 7px; height: 30px; font-size: 32upx; line-height: 30px; } .cu-bar.btn-group { justify-content: space-around; } .cu-bar.btn-group button { padding: 20upx 32upx; } .cu-bar.btn-group button { flex: 1; margin: 0 20upx; max-width: 50%; } .cu-bar .search-form { background-color: #f5f5f5; line-height: 64upx; height: 64upx; font-size: 24upx; color: #333333; flex: 1; display: flex; align-items: center; margin: 0 30upx; } .cu-bar .search-form+.action { margin-right: 30upx; } .cu-bar .search-form input { flex: 1; padding-right: 30upx; height: 64upx; line-height: 64upx; font-size: 26upx; background-color: transparent; } .cu-bar .search-form [class*="cuIcon-"] { margin: 0 0.5em 0 0.8em; } .cu-bar .search-form [class*="cuIcon-"]::before { top: 0upx; } .cu-bar.fixed, .nav.fixed { position: fixed; width: 100%; top: 0; z-index: 1024; box-shadow: 0 1upx 6upx rgba(0, 0, 0, 0.1); } .cu-bar.foot { position: fixed; width: 100%; bottom: 0; z-index: 1024; box-shadow: 0 -1upx 6upx rgba(0, 0, 0, 0.1); } .cu-bar.tabbar { padding: 0; height: calc(100upx + env(safe-area-inset-bottom) / 2); padding-bottom: calc(env(safe-area-inset-bottom) / 2); } .cu-tabbar-height { min-height: 100upx; height: calc(100upx + env(safe-area-inset-bottom) / 2); } .cu-bar.tabbar.shadow { box-shadow: 0 -1upx 6upx rgba(0, 0, 0, 0.1); } .cu-bar.tabbar .action { font-size: 22upx; position: relative; flex: 1; text-align: center; padding: 0; display: block; height: auto; line-height: 1; margin: 0; background-color: inherit; overflow: initial; } .cu-bar.tabbar.shop .action { width: 140upx; flex: initial; } .cu-bar.tabbar .action.add-action { position: relative; z-index: 2; padding-top: 50upx; } .cu-bar.tabbar .action.add-action [class*="cuIcon-"] { position: absolute; width: 70upx; z-index: 2; height: 70upx; border-radius: 50%; line-height: 70upx; font-size: 50upx; top: -35upx; left: 0; right: 0; margin: auto; padding: 0; } .cu-bar.tabbar .action.add-action::after { content: ""; position: absolute; width: 100upx; height: 100upx; top: -50upx; left: 0; right: 0; margin: auto; box-shadow: 0 -3upx 8upx rgba(0, 0, 0, 0.08); border-radius: 50upx; background-color: inherit; z-index: 0; } .cu-bar.tabbar .action.add-action::before { content: ""; position: absolute; width: 100upx; height: 30upx; bottom: 30upx; left: 0; right: 0; margin: auto; background-color: inherit; z-index: 1; } .cu-bar.tabbar .btn-group { flex: 1; display: flex; justify-content: space-around; align-items: center; padding: 0 10upx; } .cu-bar.tabbar button.action::after { border: 0; } .cu-bar.tabbar .action [class*="cuIcon-"] { width: 100upx; position: relative; display: block; height: auto; margin: 0 auto 10upx; text-align: center; font-size: 40upx; } .cu-bar.tabbar .action .cuIcon-cu-image { margin: 0 auto; } .cu-bar.tabbar .action .cuIcon-cu-image image { width: 50upx; height: 50upx; display: inline-block; } .cu-bar.tabbar .submit { align-items: center; display: flex; justify-content: center; text-align: center; position: relative; flex: 2; align-self: stretch; } .cu-bar.tabbar .submit:last-child { flex: 2.6; } .cu-bar.tabbar .submit+.submit { flex: 2; } .cu-bar.tabbar.border .action::before { content: " "; width: 200%; height: 200%; position: absolute; top: 0; left: 0; transform: scale(0.5); transform-origin: 0 0; border-right: 1upx solid rgba(0, 0, 0, 0.1); z-index: 3; } .cu-bar.tabbar.border .action:last-child:before { display: none; } .cu-bar.input { padding-right: 20upx; background-color: #ffffff; } .cu-bar.input input { overflow: initial; line-height: 64upx; height: 64upx; min-height: 64upx; flex: 1; font-size: 30upx; margin: 0 20upx; } .cu-bar.input .action { margin-left: 20upx; } .cu-bar.input .action [class*="cuIcon-"] { font-size: 48upx; } .cu-bar.input input+.action { margin-right: 20upx; margin-left: 0upx; } .cu-bar.input .action:first-child [class*="cuIcon-"] { margin-left: 0upx; } .cu-custom { display: block; position: relative; } .cu-custom .cu-bar .content { width: calc(100% - 440upx); } /* #ifdef MP-ALIPAY */ .cu-custom .cu-bar .action .cuIcon-back { opacity: 0; } /* #endif */ .cu-custom .cu-bar .content image { height: 60upx; width: 240upx; } .cu-custom .cu-bar { min-height: 0px; /* #ifdef MP-WEIXIN */ padding-right: 220upx; /* #endif */ /* #ifdef MP-ALIPAY */ padding-right: 150upx; /* #endif */ box-shadow: 0upx 0upx 0upx; z-index: 9999; } .cu-custom .cu-bar .border-custom { position: relative; background: rgba(0, 0, 0, 0.15); border-radius: 1000upx; height: 30px; } .cu-custom .cu-bar .border-custom::after { content: " "; width: 200%; height: 200%; position: absolute; top: 0; left: 0; border-radius: inherit; transform: scale(0.5); transform-origin: 0 0; pointer-events: none; box-sizing: border-box; border: 1upx solid #ffffff; opacity: 0.5; } .cu-custom .cu-bar .border-custom::before { content: " "; width: 1upx; height: 110%; position: absolute; top: 22.5%; left: 0; right: 0; margin: auto; transform: scale(0.5); transform-origin: 0 0; pointer-events: none; box-sizing: border-box; opacity: 0.6; background-color: #ffffff; } .cu-custom .cu-bar .border-custom text { display: block; flex: 1; margin: auto !important; text-align: center; font-size: 34upx; } /* ================== 导航栏 ==================== */ .nav { white-space: nowrap; } ::-webkit-scrollbar { display: none; } .nav .cu-item { height: 90upx; display: inline-block; line-height: 90upx; margin: 0 10upx; padding: 0 20upx; } .nav .cu-item.cur { border-bottom: 4upx solid; } /* ================== 时间轴 ==================== */ .cu-timeline { display: block; background-color: #ffffff; } .cu-timeline .cu-time { width: 120upx; text-align: center; padding: 20upx 0; font-size: 26upx; color: #888; display: block; } .cu-timeline>.cu-item { padding: 30upx 30upx 30upx 120upx; position: relative; display: block; z-index: 0; } .cu-timeline>.cu-item:not([class*="text-"]) { color: #ccc; } .cu-timeline>.cu-item::after { content: ""; display: block; position: absolute; width: 1upx; background-color: #ddd; left: 60upx; height: 100%; top: 0; z-index: 8; } .cu-timeline>.cu-item::before { font-family: "cuIcon"; display: block; position: absolute; top: 36upx; z-index: 9; background-color: #ffffff; width: 50upx; height: 50upx; text-align: center; border: none; line-height: 50upx; left: 36upx; } .cu-timeline>.cu-item:not([class*="cuIcon-"])::before { content: "\e763"; } .cu-timeline>.cu-item[class*="cuIcon-"]::before { background-color: #ffffff; width: 50upx; height: 50upx; text-align: center; border: none; line-height: 50upx; left: 36upx; } .cu-timeline>.cu-item>.content { padding: 30upx; border-radius: 6upx; display: block; line-height: 1.6; } .cu-timeline>.cu-item>.content:not([class*="bg-"]) { background-color: #f1f1f1; color: #333333; } .cu-timeline>.cu-item>.content+.content { margin-top: 20upx; } /* ================== 聊天 ==================== */ .cu-chat { display: flex; flex-direction: column; } .cu-chat .cu-item { display: flex; padding: 30upx 30upx 70upx; position: relative; } .cu-chat .cu-item>.cu-avatar { width: 80upx; height: 80upx; } .cu-chat .cu-item>.main { max-width: calc(100% - 260upx); margin: 0 40upx; display: flex; align-items: center; } .cu-chat .cu-item>image { height: 320upx; } .cu-chat .cu-item>.main .content { padding: 20upx; border-radius: 6upx; display: inline-flex; max-width: 100%; align-items: center; font-size: 30upx; position: relative; min-height: 80upx; line-height: 40upx; text-align: left; } .cu-chat .cu-item>.main .content:not([class*="bg-"]) { background-color: #ffffff; color: #333333; } .cu-chat .cu-item .date { position: absolute; font-size: 24upx; color: #8799a3; width: calc(100% - 320upx); bottom: 20upx; left: 160upx; } .cu-chat .cu-item .action { padding: 0 30upx; display: flex; align-items: center; } .cu-chat .cu-item>.main .content::after { content: ""; top: 27upx; transform: rotate(45deg); position: absolute; z-index: 100; display: inline-block; overflow: hidden; width: 24upx; height: 24upx; left: -12upx; right: initial; background-color: inherit; } .cu-chat .cu-item.self>.main .content::after { left: auto; right: -12upx; } .cu-chat .cu-item>.main .content::before { content: ""; top: 30upx; transform: rotate(45deg); position: absolute; z-index: -1; display: inline-block; overflow: hidden; width: 24upx; height: 24upx; left: -12upx; right: initial; background-color: inherit; filter: blur(5upx); opacity: 0.3; } .cu-chat .cu-item>.main .content:not([class*="bg-"])::before { background-color: #333333; opacity: 0.1; } .cu-chat .cu-item.self>.main .content::before { left: auto; right: -12upx; } .cu-chat .cu-item.self { justify-content: flex-end; text-align: right; } .cu-chat .cu-info { display: inline-block; margin: 20upx auto; font-size: 24upx; padding: 8upx 12upx; background-color: rgba(0, 0, 0, 0.2); border-radius: 6upx; color: #ffffff; max-width: 400upx; line-height: 1.4; } /* ================== 卡片 ==================== */ .cu-card { display: block; overflow: hidden; } .cu-card>.cu-item { display: block; background-color: #ffffff; overflow: hidden; border-radius: 6upx; margin: 30upx; } .cu-card>.cu-item.shadow-blur { overflow: initial; } .cu-card.no-card>.cu-item { margin: 0upx; border-radius: 0upx; } .cu-card .grid.grid-square { margin-bottom: -20upx; } .cu-card.case .image { position: relative; } .cu-card.case .image image { width: 100%; } .cu-card.case .image .cu-tag { position: absolute; right: 0; top: 0; } .cu-card.case .image .cu-bar { position: absolute; bottom: 0; width: 100%; background-color: transparent; padding: 0upx 30upx; } .cu-card.case.no-card .image { margin: 30upx 30upx 0; overflow: hidden; border-radius: 10upx; } .cu-card.dynamic { display: block; } .cu-card.dynamic>.cu-item { display: block; background-color: #ffffff; overflow: hidden; } .cu-card.dynamic>.cu-item>.text-content { padding: 0 30upx 0; max-height: 6.4em; overflow: hidden; font-size: 30upx; margin-bottom: 20upx; } .cu-card.dynamic>.cu-item .square-img { width: 100%; height: 200upx; border-radius: 6upx; } .cu-card.dynamic>.cu-item .only-img { width: 100%; height: 320upx; border-radius: 6upx; } /* card.dynamic>.cu-item .comment { padding: 20upx; background-color: #f1f1f1; margin: 0 30upx 30upx; border-radius: 6upx; } */ .cu-card.article { display: block; } .cu-card.article>.cu-item { padding-bottom: 30upx; } .cu-card.article>.cu-item .title { font-size: 30upx; font-weight: 900; color: #333333; line-height: 100upx; padding: 0 30upx; } .cu-card.article>.cu-item .content { display: flex; padding: 0 30upx; } .cu-card.article>.cu-item .content>image { width: 240upx; height: 6.4em; margin-right: 20upx; border-radius: 6upx; } .cu-card.article>.cu-item .content .desc { flex: 1; display: flex; flex-direction: column; justify-content: space-between; } .cu-card.article>.cu-item .content .text-content { font-size: 28upx; color: #888; height: 4.8em; overflow: hidden; } /* ================== 表单 ==================== */ .cu-form-group { background-color: #ffffff; padding: 1upx 30upx; display: flex; align-items: center; min-height: 100upx; justify-content: space-between; } .cu-form-group+.cu-form-group { border-top: 1upx solid #eee; } .cu-form-group .title { text-align: justify; padding-right: 30upx; font-size: 30upx; position: relative; height: 60upx; line-height: 60upx; } .cu-form-group input { flex: 1; font-size: 30upx; color: #555; padding-right: 20upx; } .cu-form-group>text[class*="cuIcon-"] { font-size: 36upx; padding: 0; box-sizing: border-box; } .cu-form-group textarea { margin: 32upx 0 30upx; height: 4.6em; width: 100%; line-height: 1.2em; flex: 1; font-size: 28upx; padding: 0; } .cu-form-group.align-start .title { height: 1em; margin-top: 32upx; line-height: 1em; } .cu-form-group picker { flex: 1; padding-right: 40upx; overflow: hidden; position: relative; } .cu-form-group picker .picker { line-height: 100upx; font-size: 28upx; text-overflow: ellipsis; white-space: nowrap; overflow: hidden; width: 100%; text-align: right; } .cu-form-group picker::after { font-family: cuIcon; display: block; content: "\e6a3"; position: absolute; font-size: 34upx; color: #8799a3; line-height: 100upx; width: 60upx; text-align: center; top: 0; bottom: 0; right: -20upx; margin: auto; } .cu-form-group textarea[disabled], .cu-form-group textarea[disabled] .placeholder { color: transparent; } /* ================== 模态窗口 ==================== */ .cu-modal { position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 1110; opacity: 0; outline: 0; text-align: center; -ms-transform: scale(1.185); transform: scale(1.185); backface-visibility: hidden; perspective: 2000upx; background: rgba(0, 0, 0, 0.6); transition: all 0.3s ease-in-out 0s; pointer-events: none; } .cu-modal::before { content: "\200B"; display: inline-block; height: 100%; vertical-align: middle; } .cu-modal.show { opacity: 1; transition-duration: 0.3s; -ms-transform: scale(1); transform: scale(1); overflow-x: hidden; overflow-y: auto; pointer-events: auto; } .cu-dialog { position: relative; display: inline-block; vertical-align: middle; margin-left: auto; margin-right: auto; width: 680upx; max-width: 100%; background-color: #f8f8f8; border-radius: 10upx; overflow: hidden; } .cu-modal.bottom-modal::before { vertical-align: bottom; } .cu-modal.bottom-modal .cu-dialog { width: 100%; border-radius: 0; } .cu-modal.bottom-modal { margin-bottom: -1000upx; } .cu-modal.bottom-modal.show { margin-bottom: 0; } .cu-modal.drawer-modal { transform: scale(1); display: flex; } .cu-modal.drawer-modal .cu-dialog { height: 100%; min-width: 200upx; border-radius: 0; margin: initial; transition-duration: 0.3s; } .cu-modal.drawer-modal.justify-start .cu-dialog { transform: translateX(-100%); } .cu-modal.drawer-modal.justify-end .cu-dialog { transform: translateX(100%); } .cu-modal.drawer-modal.show .cu-dialog { transform: translateX(0%); } .cu-modal .cu-dialog>.cu-bar:first-child .action{ min-width: 100rpx; margin-right: 0; min-height: 100rpx; } /* ================== 轮播 ==================== */ swiper .a-swiper-dot { display: inline-block; width: 16upx; height: 16upx; background: rgba(0, 0, 0, .3); border-radius: 50%; vertical-align: middle; } swiper[class*="-dot"] .wx-swiper-dots, swiper[class*="-dot"] .a-swiper-dots, swiper[class*="-dot"] .uni-swiper-dots { display: flex; align-items: center; width: 100%; justify-content: center; } swiper.square-dot .wx-swiper-dot, swiper.square-dot .a-swiper-dot, swiper.square-dot .uni-swiper-dot { background-color: #ffffff; opacity: 0.4; width: 10upx; height: 10upx; border-radius: 20upx; margin: 0 8upx !important; } swiper.square-dot .wx-swiper-dot.wx-swiper-dot-active, swiper.square-dot .a-swiper-dot.a-swiper-dot-active, swiper.square-dot .uni-swiper-dot.uni-swiper-dot-active { opacity: 1; width: 30upx; } swiper.round-dot .wx-swiper-dot, swiper.round-dot .a-swiper-dot, swiper.round-dot .uni-swiper-dot { width: 10upx; height: 10upx; position: relative; margin: 4upx 8upx !important; } swiper.round-dot .wx-swiper-dot.wx-swiper-dot-active::after, swiper.round-dot .a-swiper-dot.a-swiper-dot-active::after, swiper.round-dot .uni-swiper-dot.uni-swiper-dot-active::after { content: ""; position: absolute; width: 10upx; height: 10upx; top: 0upx; left: 0upx; right: 0; bottom: 0; margin: auto; background-color: #ffffff; border-radius: 20upx; } swiper.round-dot .wx-swiper-dot.wx-swiper-dot-active, swiper.round-dot .a-swiper-dot.a-swiper-dot-active, swiper.round-dot .uni-swiper-dot.uni-swiper-dot-active { width: 18upx; height: 18upx; } .screen-swiper { min-height: 375upx; } .screen-swiper image, .screen-swiper video, .swiper-item image, .swiper-item video { width: 100%; display: block; height: 100%; margin: 0; pointer-events: none; } .card-swiper { height: 420upx !important; } .card-swiper swiper-item { width: 610upx !important; left: 70upx; box-sizing: border-box; padding: 40upx 0upx 70upx; overflow: initial; } .card-swiper swiper-item .swiper-item { width: 100%; display: block; height: 100%; border-radius: 10upx; transform: scale(0.9); transition: all 0.2s ease-in 0s; overflow: hidden; } .card-swiper swiper-item.cur .swiper-item { transform: none; transition: all 0.2s ease-in 0s; } .tower-swiper { height: 420upx; position: relative; max-width: 750upx; overflow: hidden; } .tower-swiper .tower-item { position: absolute; width: 300upx; height: 380upx; top: 0; bottom: 0; left: 50%; margin: auto; transition: all 0.2s ease-in 0s; opacity: 1; } .tower-swiper .tower-item.none { opacity: 0; } .tower-swiper .tower-item .swiper-item { width: 100%; height: 100%; border-radius: 6upx; overflow: hidden; } /* ================== 步骤条 ==================== */ .cu-steps { display: flex; } scroll-view.cu-steps { display: block; white-space: nowrap; } scroll-view.cu-steps .cu-item { display: inline-block; } .cu-steps .cu-item { flex: 1; text-align: center; position: relative; min-width: 100upx; } .cu-steps .cu-item:not([class*="text-"]) { color: #8799a3; } .cu-steps .cu-item [class*="cuIcon-"], .cu-steps .cu-item .num { display: block; font-size: 40upx; line-height: 80upx; } .cu-steps .cu-item::before, .cu-steps .cu-item::after, .cu-steps.steps-arrow .cu-item::before, .cu-steps.steps-arrow .cu-item::after { content: ""; display: block; position: absolute; height: 0px; width: calc(100% - 80upx); border-bottom: 1px solid #ccc; left: calc(0px - (100% - 80upx) / 2); top: 40upx; z-index: 0; } .cu-steps.steps-arrow .cu-item::before, .cu-steps.steps-arrow .cu-item::after { content: "\e6a3"; font-family: 'cuIcon'; height: 30upx; border-bottom-width: 0px; line-height: 30upx; top: 0; bottom: 0; margin: auto; color: #ccc; } .cu-steps.steps-bottom .cu-item::before, .cu-steps.steps-bottom .cu-item::after { bottom: 40upx; top: initial; } .cu-steps .cu-item::after { border-bottom: 1px solid currentColor; width: 0px; transition: all 0.3s ease-in-out 0s; } .cu-steps .cu-item[class*="text-"]::after { width: calc(100% - 80upx); color: currentColor; } .cu-steps .cu-item:first-child::before, .cu-steps .cu-item:first-child::after { display: none; } .cu-steps .cu-item .num { width: 40upx; height: 40upx; border-radius: 50%; line-height: 40upx; margin: 20upx auto; font-size: 24upx; border: 1px solid currentColor; position: relative; overflow: hidden; } .cu-steps .cu-item[class*="text-"] .num { background-color: currentColor; } .cu-steps .cu-item .num::before, .cu-steps .cu-item .num::after { content: attr(data-index); position: absolute; left: 0; right: 0; top: 0; bottom: 0; margin: auto; transition: all 0.3s ease-in-out 0s; transform: translateY(0upx); } .cu-steps .cu-item[class*="text-"] .num::before { transform: translateY(-40upx); color: #ffffff; } .cu-steps .cu-item .num::after { transform: translateY(40upx); color: #ffffff; transition: all 0.3s ease-in-out 0s; } .cu-steps .cu-item[class*="text-"] .num::after { content: "\e645"; font-family: 'cuIcon'; color: #ffffff; transform: translateY(0upx); } .cu-steps .cu-item[class*="text-"] .num.err::after { content: "\e646"; } /* ================== 布局 ==================== */ /* -- flex弹性布局 -- */ .flex { display: flex; } .basis-xs { flex-basis: 20%; } .basis-sm { flex-basis: 40%; } .basis-df { flex-basis: 50%; } .basis-lg { flex-basis: 60%; } .basis-xl { flex-basis: 80%; } .flex-sub { flex: 1; } .flex-twice { flex: 2; } .flex-treble { flex: 3; } .flex-direction { flex-direction: column; } .flex-wrap { flex-wrap: wrap; } .align-start { align-items: flex-start; } .align-end { align-items: flex-end; } .align-center { align-items: center; } .align-stretch { align-items: stretch; } .self-start { align-self: flex-start; } .self-center { align-self: flex-center; } .self-end { align-self: flex-end; } .self-stretch { align-self: stretch; } .align-stretch { align-items: stretch; } .justify-start { justify-content: flex-start; } .justify-end { justify-content: flex-end; } .justify-center { justify-content: center; } .justify-between { justify-content: space-between; } .justify-around { justify-content: space-around; } /* grid布局 */ .grid { display: flex; flex-wrap: wrap; } .grid.grid-square { overflow: hidden; } .grid.grid-square .cu-tag { position: absolute; right: 0; top: 0; border-bottom-left-radius: 6upx; padding: 6upx 12upx; height: auto; background-color: rgba(0, 0, 0, 0.5); } .grid.grid-square>view>text[class*="cuIcon-"] { font-size: 52upx; position: absolute; color: #8799a3; margin: auto; top: 0; bottom: 0; left: 0; right: 0; display: flex; justify-content: center; align-items: center; flex-direction: column; } .grid.grid-square>view { margin-right: 20upx; margin-bottom: 20upx; border-radius: 6upx; position: relative; overflow: hidden; } .grid.grid-square>view.bg-img image { width: 100%; height: 100%; position: absolute; } .grid.col-1.grid-square>view { padding-bottom: 100%; height: 0; margin-right: 0; } .grid.col-2.grid-square>view { padding-bottom: calc((100% - 20upx)/2); height: 0; width: calc((100% - 20upx)/2); } .grid.col-3.grid-square>view { padding-bottom: calc((100% - 40upx)/3); height: 0; width: calc((100% - 40upx)/3); } .grid.col-4.grid-square>view { padding-bottom: calc((100% - 60upx)/4); height: 0; width: calc((100% - 60upx)/4); } .grid.col-5.grid-square>view { padding-bottom: calc((100% - 80upx)/5); height: 0; width: calc((100% - 80upx)/5); } .grid.col-2.grid-square>view:nth-child(2n), .grid.col-3.grid-square>view:nth-child(3n), .grid.col-4.grid-square>view:nth-child(4n), .grid.col-5.grid-square>view:nth-child(5n) { margin-right: 0; } .grid.col-1>view { width: 100%; } .grid.col-2>view { width: 50%; } .grid.col-3>view { width: 33.33%; } .grid.col-4>view { width: 25%; } .grid.col-5>view { width: 20%; } /* -- 内外边距 -- */ .margin-0 { margin: 0; } .margin-xs { margin: 10upx; } .margin-sm { margin: 20upx; } .margin { margin: 30upx; } .margin-lg { margin: 40upx; } .margin-xl { margin: 50upx; } .margin-top-xs { margin-top: 10upx; } .margin-top-sm { margin-top: 20upx; } .margin-top { margin-top: 30upx; } .margin-top-lg { margin-top: 40upx; } .margin-top-xl { margin-top: 50upx; } .margin-right-xs { margin-right: 10upx; } .margin-right-sm { margin-right: 20upx; } .margin-right { margin-right: 30upx; } .margin-right-lg { margin-right: 40upx; } .margin-right-xl { margin-right: 50upx; } .margin-bottom-xs { margin-bottom: 10upx; } .margin-bottom-sm { margin-bottom: 20upx; } .margin-bottom { margin-bottom: 30upx; } .margin-bottom-lg { margin-bottom: 40upx; } .margin-bottom-xl { margin-bottom: 50upx; } .margin-left-xs { margin-left: 10upx; } .margin-left-sm { margin-left: 20upx; } .margin-left { margin-left: 30upx; } .margin-left-lg { margin-left: 40upx; } .margin-left-xl { margin-left: 50upx; } .margin-lr-xs { margin-left: 10upx; margin-right: 10upx; } .margin-lr-sm { margin-left: 20upx; margin-right: 20upx; } .margin-lr { margin-left: 30upx; margin-right: 30upx; } .margin-lr-lg { margin-left: 40upx; margin-right: 40upx; } .margin-lr-xl { margin-left: 50upx; margin-right: 50upx; } .margin-tb-xs { margin-top: 10upx; margin-bottom: 10upx; } .margin-tb-sm { margin-top: 20upx; margin-bottom: 20upx; } .margin-tb { margin-top: 30upx; margin-bottom: 30upx; } .margin-tb-lg { margin-top: 40upx; margin-bottom: 40upx; } .margin-tb-xl { margin-top: 50upx; margin-bottom: 50upx; } .padding-0 { padding: 0; } .padding-xs { padding: 10upx; } .padding-sm { padding: 20upx; } .padding { padding: 30upx; } .padding-lg { padding: 40upx; } .padding-xl { padding: 50upx; } .padding-top-xs { padding-top: 10upx; } .padding-top-sm { padding-top: 20upx; } .padding-top { padding-top: 30upx; } .padding-top-lg { padding-top: 40upx; } .padding-top-xl { padding-top: 50upx; } .padding-right-xs { padding-right: 10upx; } .padding-right-sm { padding-right: 20upx; } .padding-right { padding-right: 30upx; } .padding-right-lg { padding-right: 40upx; } .padding-right-xl { padding-right: 50upx; } .padding-bottom-xs { padding-bottom: 10upx; } .padding-bottom-sm { padding-bottom: 20upx; } .padding-bottom { padding-bottom: 30upx; } .padding-bottom-lg { padding-bottom: 40upx; } .padding-bottom-xl { padding-bottom: 50upx; } .padding-left-xs { padding-left: 10upx; } .padding-left-sm { padding-left: 20upx; } .padding-left { padding-left: 30upx; } .padding-left-lg { padding-left: 40upx; } .padding-left-xl { padding-left: 50upx; } .padding-lr-xs { padding-left: 10upx; padding-right: 10upx; } .padding-lr-sm { padding-left: 20upx; padding-right: 20upx; } .padding-lr { padding-left: 30upx; padding-right: 30upx; } .padding-lr-lg { padding-left: 40upx; padding-right: 40upx; } .padding-lr-xl { padding-left: 50upx; padding-right: 50upx; } .padding-tb-xs { padding-top: 10upx; padding-bottom: 10upx; } .padding-tb-sm { padding-top: 20upx; padding-bottom: 20upx; } .padding-tb { padding-top: 30upx; padding-bottom: 30upx; } .padding-tb-lg { padding-top: 40upx; padding-bottom: 40upx; } .padding-tb-xl { padding-top: 50upx; padding-bottom: 50upx; } /* -- 浮动 -- */ .cf::after, .cf::before { content: " "; display: table; } .cf::after { clear: both; } .fl { float: left; } .fr { float: right; } /* ================== 背景 ==================== */ .line-red::after, .lines-red::after { border-color: #e54d42; } .line-orange::after, .lines-orange::after { border-color: #f37b1d; } .line-yellow::after, .lines-yellow::after { border-color: #fbbd08; } .line-olive::after, .lines-olive::after { border-color: #8dc63f; } .line-green::after, .lines-green::after { border-color: #39b54a; } .line-cyan::after, .lines-cyan::after { border-color: #1cbbb4; } .line-blue::after, .lines-blue::after { border-color: #0081ff; } .line-purple::after, .lines-purple::after { border-color: #6739b6; } .line-mauve::after, .lines-mauve::after { border-color: #9c26b0; } .line-pink::after, .lines-pink::after { border-color: #e03997; } .line-brown::after, .lines-brown::after { border-color: #a5673f; } .line-grey::after, .lines-grey::after { border-color: #8799a3; } .line-gray::after, .lines-gray::after { border-color: #aaaaaa; } .line-black::after, .lines-black::after { border-color: #333333; } .line-white::after, .lines-white::after { border-color: #ffffff; } .bg-red { background-color: #e54d42; color: #ffffff; } .bg-orange { background-color: #f37b1d; color: #ffffff; } .bg-yellow { background-color: #fbbd08; color: #333333; } .bg-olive { background-color: #8dc63f; color: #ffffff; } .bg-green { background-color: #39b54a; color: #ffffff; } .bg-cyan { background-color: #1cbbb4; color: #ffffff; } .bg-blue { background-color: #0081ff; color: #ffffff; } .bg-purple { background-color: #6739b6; color: #ffffff; } .bg-mauve { background-color: #9c26b0; color: #ffffff; } .bg-pink { background-color: #e03997; color: #ffffff; } .bg-brown { background-color: #a5673f; color: #ffffff; } .bg-grey { background-color: #8799a3; color: #ffffff; } .bg-gray { background-color: #f0f0f0; color: #333333; } .bg-black { background-color: #333333; color: #ffffff; } .bg-white { background-color: #ffffff; color: #666666; } .bg-shadeTop { background-image: linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.01)); color: #ffffff; } .bg-shadeBottom { background-image: linear-gradient(rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 1)); color: #ffffff; } .bg-red.light { color: #e54d42; background-color: #fadbd9; } .bg-orange.light { color: #f37b1d; background-color: #fde6d2; } .bg-yellow.light { color: #fbbd08; background-color: #fef2ced2; } .bg-olive.light { color: #8dc63f; background-color: #e8f4d9; } .bg-green.light { color: #39b54a; background-color: #d7f0dbff; } .bg-cyan.light { color: #1cbbb4; background-color: #d2f1f0; } .bg-blue.light { color: #0081ff; background-color: #cce6ff; } .bg-purple.light { color: #6739b6; background-color: #e1d7f0; } .bg-mauve.light { color: #9c26b0; background-color: #ebd4ef; } .bg-pink.light { color: #e03997; background-color: #f9d7ea; } .bg-brown.light { color: #a5673f; background-color: #ede1d9; } .bg-grey.light { color: #8799a3; background-color: #e7ebed; } .bg-gradual-red { background-image: linear-gradient(45deg, #f43f3b, #ec008c); color: #ffffff; } .bg-gradual-orange { background-image: linear-gradient(45deg, #ff9700, #ed1c24); color: #ffffff; } .bg-gradual-green { background-image: linear-gradient(45deg, #39b54a, #8dc63f); color: #ffffff; } .bg-gradual-purple { background-image: linear-gradient(45deg, #9000ff, #5e00ff); color: #ffffff; } .bg-gradual-pink { background-image: linear-gradient(45deg, #ec008c, #6739b6); color: #ffffff; } .bg-gradual-blue { background-image: linear-gradient(45deg, #0081ff, #1cbbb4); color: #ffffff; } .shadow[class*="-red"] { box-shadow: 6upx 6upx 8upx rgba(204, 69, 59, 0.2); } .shadow[class*="-orange"] { box-shadow: 6upx 6upx 8upx rgba(217, 109, 26, 0.2); } .shadow[class*="-yellow"] { box-shadow: 6upx 6upx 8upx rgba(224, 170, 7, 0.2); } .shadow[class*="-olive"] { box-shadow: 6upx 6upx 8upx rgba(124, 173, 55, 0.2); } .shadow[class*="-green"] { box-shadow: 6upx 6upx 8upx rgba(48, 156, 63, 0.2); } .shadow[class*="-cyan"] { box-shadow: 6upx 6upx 8upx rgba(28, 187, 180, 0.2); } .shadow[class*="-blue"] { box-shadow: 6upx 6upx 8upx rgba(0, 102, 204, 0.2); } .shadow[class*="-purple"] { box-shadow: 6upx 6upx 8upx rgba(88, 48, 156, 0.2); } .shadow[class*="-mauve"] { box-shadow: 6upx 6upx 8upx rgba(133, 33, 150, 0.2); } .shadow[class*="-pink"] { box-shadow: 6upx 6upx 8upx rgba(199, 50, 134, 0.2); } .shadow[class*="-brown"] { box-shadow: 6upx 6upx 8upx rgba(140, 88, 53, 0.2); } .shadow[class*="-grey"] { box-shadow: 6upx 6upx 8upx rgba(114, 130, 138, 0.2); } .shadow[class*="-gray"] { box-shadow: 6upx 6upx 8upx rgba(114, 130, 138, 0.2); } .shadow[class*="-black"] { box-shadow: 6upx 6upx 8upx rgba(26, 26, 26, 0.2); } .shadow[class*="-white"] { box-shadow: 6upx 6upx 8upx rgba(26, 26, 26, 0.2); } .text-shadow[class*="-red"] { text-shadow: 6upx 6upx 8upx rgba(204, 69, 59, 0.2); } .text-shadow[class*="-orange"] { text-shadow: 6upx 6upx 8upx rgba(217, 109, 26, 0.2); } .text-shadow[class*="-yellow"] { text-shadow: 6upx 6upx 8upx rgba(224, 170, 7, 0.2); } .text-shadow[class*="-olive"] { text-shadow: 6upx 6upx 8upx rgba(124, 173, 55, 0.2); } .text-shadow[class*="-green"] { text-shadow: 6upx 6upx 8upx rgba(48, 156, 63, 0.2); } .text-shadow[class*="-cyan"] { text-shadow: 6upx 6upx 8upx rgba(28, 187, 180, 0.2); } .text-shadow[class*="-blue"] { text-shadow: 6upx 6upx 8upx rgba(0, 102, 204, 0.2); } .text-shadow[class*="-purple"] { text-shadow: 6upx 6upx 8upx rgba(88, 48, 156, 0.2); } .text-shadow[class*="-mauve"] { text-shadow: 6upx 6upx 8upx rgba(133, 33, 150, 0.2); } .text-shadow[class*="-pink"] { text-shadow: 6upx 6upx 8upx rgba(199, 50, 134, 0.2); } .text-shadow[class*="-brown"] { text-shadow: 6upx 6upx 8upx rgba(140, 88, 53, 0.2); } .text-shadow[class*="-grey"] { text-shadow: 6upx 6upx 8upx rgba(114, 130, 138, 0.2); } .text-shadow[class*="-gray"] { text-shadow: 6upx 6upx 8upx rgba(114, 130, 138, 0.2); } .text-shadow[class*="-black"] { text-shadow: 6upx 6upx 8upx rgba(26, 26, 26, 0.2); } .bg-img { background-size: cover; background-position: center; background-repeat: no-repeat; } .bg-mask { background-color: #333333; position: relative; } .bg-mask::after { content: ""; border-radius: inherit; width: 100%; height: 100%; display: block; background-color: rgba(0, 0, 0, 0.4); position: absolute; left: 0; right: 0; bottom: 0; top: 0; } .bg-mask view, .bg-mask cover-view { z-index: 5; position: relative; } .bg-video { position: relative; } .bg-video video { display: block; height: 100%; width: 100%; -o-object-fit: cover; object-fit: cover; position: absolute; top: 0; z-index: 0; pointer-events: none; } /* ================== 文本 ==================== */ .text-xs { font-size: 20upx; } .text-sm { font-size: 24upx; } .text-df { font-size: 28upx; } .text-lg { font-size: 32upx; } .text-xl { font-size: 36upx; } .text-xxl { font-size: 44upx; } .text-sl { font-size: 80upx; } .text-xsl { font-size: 120upx; } .text-Abc { text-transform: Capitalize; } .text-ABC { text-transform: Uppercase; } .text-abc { text-transform: Lowercase; } .text-price::before { content: "¥"; font-size: 80%; margin-right: 4upx; } .text-cut { text-overflow: ellipsis; white-space: nowrap; overflow: hidden; } .text-bold { font-weight: bold; } .text-center { text-align: center; } .text-content { line-height: 1.6; } .text-left { text-align: left; } .text-right { text-align: right; } .text-red, .line-red, .lines-red { color: #e54d42; } .text-orange, .line-orange, .lines-orange { color: #f37b1d; } .text-yellow, .line-yellow, .lines-yellow { color: #fbbd08; } .text-olive, .line-olive, .lines-olive { color: #8dc63f; } .text-green, .line-green, .lines-green { color: #39b54a; } .text-cyan, .line-cyan, .lines-cyan { color: #1cbbb4; } .text-blue, .line-blue, .lines-blue { color: #0081ff; } .text-purple, .line-purple, .lines-purple { color: #6739b6; } .text-mauve, .line-mauve, .lines-mauve { color: #9c26b0; } .text-pink, .line-pink, .lines-pink { color: #e03997; } .text-brown, .line-brown, .lines-brown { color: #a5673f; } .text-grey, .line-grey, .lines-grey { color: #8799a3; } .text-gray, .line-gray, .lines-gray { color: #aaaaaa; } .text-black, .line-black, .lines-black { color: #333333; } .text-white, .line-white, .lines-white { color: #ffffff; } ================================================ FILE: client/components/FabBtn/index.vue ================================================ ================================================ FILE: client/components/ListCell/index.vue ================================================ ================================================ FILE: client/components/LoadMore/index.vue ================================================ ================================================ FILE: client/components/Loading/index.vue ================================================ ================================================ FILE: client/components/ProductList/BoxLayout.vue ================================================ ================================================ FILE: client/components/ProductList/HorizontalLayout.vue ================================================ ================================================ FILE: client/components/ProductList/HorizontalLayout2.vue ================================================ ================================================ FILE: client/components/ProductList/HorizontalScrollLayout.vue ================================================ ================================================ FILE: client/components/Refresh/index.vue ================================================ ================================================ FILE: client/components/Share/index.vue ================================================ ================================================ FILE: client/components/SortNavbar/index.vue ================================================ ================================================ FILE: client/components/SortNavbar2/index.vue ================================================ ================================================ FILE: client/components/Tab/index.vue ================================================ ================================================ FILE: client/components/Tab2/index.vue ================================================ ================================================ FILE: client/config.js ================================================ module.exports = { // APIHOST: "http://localhost:9090" } ================================================ FILE: client/main.js ================================================ import Vue from 'vue' import store from './store' import App from './App.vue' import backend from './api/backend' import cache from './utils/cache' import mcUtils from './utils/mcUtils' import TitleNav from './colorui/components/cu-custom.vue' Vue.component('title-nav',TitleNav) const message = (title, duration=1500, mask=false, icon='none')=>{ //统一提示方便全局修改 if(Boolean(title) === false){ return; } uni.showToast({ title, duration, mask, icon }); } Vue.config.productionTip = false Vue.prototype.$store = store; Vue.prototype.$cache = cache; Vue.prototype.$utils = mcUtils; Vue.prototype.$message = message; Vue.prototype.$api = { backend }; App.mpType = 'app' const app = new Vue({ ...App }) app.$mount() ================================================ FILE: client/manifest.json ================================================ { "name" : "FASHION", "appid" : "__UNI__AA9534D", "description" : "我不塑造时尚,我就是时尚", "versionName" : "1.6.1", "versionCode" : 161, "transformPx" : false, "app-plus" : { /* 5+App特有相关 */ "usingComponents" : true, "splashscreen" : { "alwaysShowBeforeRender" : true, "waiting" : true, "autoclose" : true, "delay" : 0 }, "modules" : {}, /* 模块配置 */ "distribute" : { /* 应用发布信息 */ "android" : { /* android打包配置 */ "permissions" : [ "", "", "", "", "", "" ], "abiFilters" : [ "armeabi-v7a", "arm64-v8a", "x86" ], "autoSdkPermissions" : false }, "ios" : {}, /* ios打包配置 */ "sdkConfigs" : { "ad" : {} }, "icons" : { "android" : { "hdpi" : "unpackage/res/icons/72x72.png", "xhdpi" : "unpackage/res/icons/96x96.png", "xxhdpi" : "unpackage/res/icons/144x144.png", "xxxhdpi" : "unpackage/res/icons/192x192.png" }, "ios" : { "appstore" : "unpackage/res/icons/1024x1024.png", "ipad" : { "app" : "unpackage/res/icons/76x76.png", "app@2x" : "unpackage/res/icons/152x152.png", "notification" : "unpackage/res/icons/20x20.png", "notification@2x" : "unpackage/res/icons/40x40.png", "proapp@2x" : "unpackage/res/icons/167x167.png", "settings" : "unpackage/res/icons/29x29.png", "settings@2x" : "unpackage/res/icons/58x58.png", "spotlight" : "unpackage/res/icons/40x40.png", "spotlight@2x" : "unpackage/res/icons/80x80.png" }, "iphone" : { "app@2x" : "unpackage/res/icons/120x120.png", "app@3x" : "unpackage/res/icons/180x180.png", "notification@2x" : "unpackage/res/icons/40x40.png", "notification@3x" : "unpackage/res/icons/60x60.png", "settings@2x" : "unpackage/res/icons/58x58.png", "settings@3x" : "unpackage/res/icons/87x87.png", "spotlight@2x" : "unpackage/res/icons/80x80.png", "spotlight@3x" : "unpackage/res/icons/120x120.png" } } }, "splashscreen" : { "android" : { "hdpi" : "/static/splash.9.png", "xhdpi" : "/static/splash.9.png", "xxhdpi" : "/static/splash.9.png" }, "ios" : { "iphone" : { "retina55" : "/Users/huaan9527/Desktop/170券/引导页.png", "retina55l" : "/Users/huaan9527/Desktop/170券/引导页.png", "retina47" : "/Users/huaan9527/Desktop/170券/引导页.png", "retina47l" : "/Users/huaan9527/Desktop/170券/引导页.png", "portrait-896h@2x" : "/Users/huaan9527/Desktop/170券/引导页.png", "landscape-896h@3x" : "/Users/huaan9527/Desktop/170券/引导页.png" }, "storyboard" : "/Users/huaan9527/Documents/mall-app/storyboard/storyboard.zip" }, "iosStyle" : "storyboard", "androidStyle" : "default" } }, "uniStatistics" : { "enable" : false }, "nativePlugins" : { "Hs-MobMessage" : { "MOBAppKey" : "", "MOBAppSecret" : "", "__plugin_info__" : { "name" : "MobSMS免费短信验证码android+ios,苹果已过审", "description" : "已有应用通过苹果审核,每月免费10000条,可用短信模板ID,可发送文字和语言验证码", "platforms" : "Android,iOS", "url" : "https://ext.dcloud.net.cn/plugin?id=2189", "android_package_name" : "com.huaan9527.mall", "ios_bundle_id" : "com.huaan9527.mall", "isCloud" : true, "bought" : 1, "pid" : "2189", "parameters" : { "MOBAppKey" : { "des" : "MOBAppKey", "key" : "MOBAppKey", "value" : "" }, "MOBAppSecret" : { "des" : "MOBAppSecret", "key" : "MOBAppSecret", "value" : "" } } } } } }, /* SDK配置 */ "quickapp" : {}, /* 快应用特有相关 */ "mp-weixin" : { /* 小程序特有相关 */ "usingComponents" : true, "appid" : "", "setting" : { "urlCheck" : true, "es6" : true, "postcss" : true, "minified" : true }, "uniStatistics" : { "enable" : false } }, "mp-qq" : { "appid" : "", "setting" : { "minified" : true, "es6" : true, "postcss" : true, "urlCheck" : true }, "uniStatistics" : { "enable" : false } }, "mp-toutiao" : { "appid" : "", "setting" : { "es6" : true, "postcss" : true, "minified" : true }, "uniStatistics" : { "enable" : false } }, "uniStatistics" : { "enable" : false }, "h5" : { "uniStatistics" : { "enable" : false }, "domain" : "http://m.szjx.top", "title" : "FASHION搭配助手", "router" : { "mode" : "hash" } }, "mp-alipay" : { "uniStatistics" : { "enable" : false } }, "mp-baidu" : { "uniStatistics" : { "enable" : false } } } ================================================ FILE: client/pages/category/category.vue ================================================ ================================================ FILE: client/pages/collect/collect.vue ================================================ ================================================ FILE: client/pages/collect/components/CollectList.vue ================================================ ================================================ FILE: client/pages/collocation/component/CollocationBox.vue ================================================ ================================================ FILE: client/pages/collocation/component/CollocationCard.vue ================================================ ================================================ FILE: client/pages/collocation/component/CollocationList.vue ================================================ ================================================ FILE: client/pages/collocation/detail.vue ================================================ ================================================ FILE: client/pages/collocation/index.vue ================================================ ================================================ FILE: client/pages/halfPrice/index.vue ================================================ ================================================ FILE: client/pages/index/index.vue ================================================ ================================================ FILE: client/pages/nine/nine.vue ================================================ ================================================ FILE: client/pages/product/list.vue ================================================ ================================================ FILE: client/pages/product/product.vue ================================================ ================================================ FILE: client/pages/public/guide.vue ================================================ ================================================ FILE: client/pages/public/login.vue ================================================ ================================================ FILE: client/pages/rank/rank.vue ================================================ ================================================ FILE: client/pages/search/result.vue ================================================ ================================================ FILE: client/pages/search/search.vue ================================================ ================================================ FILE: client/pages/user/message.vue ================================================ ================================================ FILE: client/pages/user/set.vue ================================================ ================================================ FILE: client/pages/user/user.vue ================================================ ================================================ FILE: client/pages/webview/index.vue ================================================ ================================================ FILE: client/pages.json ================================================ { "pages": [ { "path": "pages/collocation/index", "style": {} }, { "path": "pages/collocation/detail", "style": {} }, { "path": "pages/index/index", "style": { } }, { "path": "pages/webview/index", "style": { "navigationStyle": "default", "app-plus": { "titleNView": { "titleText": "加载中" } } } }, { "path": "pages/nine/nine", "style": { } }, { "path": "pages/rank/rank", "style": { } }, { "path": "pages/halfPrice/index", "style": { } }, { "path": "pages/product/product", "style": {} }, { "path": "pages/collect/collect", "style": {} }, { "path": "pages/user/user", "style": {} }, { "path": "pages/public/guide", "style": {} }, { "path": "pages/category/category", "style": {} }, { "path": "pages/product/list", "style": {} }, { "path": "pages/search/search", "style": {} }, { "path": "pages/search/result", "style": {} }, { "path": "pages/public/login", "style": {} }, { "path": "pages/user/set", "style": {} }, { "path": "pages/user/message", "style": {} } ], "globalStyle": { "navigationBarTextStyle": "black", "navigationBarTitleText": "FASHION搭配助手", "navigationBarBackgroundColor": "#FFFFFF", "backgroundColor": "#f8f8f8", "navigationStyle": "custom" }, "tabBar": { "backgroundColor": "#ffffff", "color": "#000000", "selectedColor": "#000000", "list": [ { "pagePath": "pages/collocation/index", "iconPath": "static/tab/home.png", "text": "", "selectedIconPath": "static/tab/home_cur.png" }, { "pagePath": "pages/category/category", "iconPath": "static/tab/circle.png", "text": "", "selectedIconPath": "static/tab/circle_cur.png" }, { "pagePath": "pages/index/index", "iconPath": "static/tab/shop.png", "text": "", "selectedIconPath": "static/tab/shop_cur.png" }, { "pagePath": "pages/user/user", "iconPath": "static/tab/my.png", "text": "", "selectedIconPath": "static/tab/my_cur.png" } ] } } ================================================ FILE: client/store/index.js ================================================ import Vue from 'vue' import Vuex from 'vuex' import api from "../api/backend"; Vue.use(Vuex) const store = new Vuex.Store({ state: { accessToken: undefined, hasLogin: false, userInfo: undefined, shareTicket: undefined }, getters: { accessToken: state => { if (state.accessToken) { return state.accessToken; } return uni.getStorageSync('mall_coupons_access_token'); }, hasLogin: state => { if (state.hasLogin) { return state.hasLogin; } return uni.getStorageSync('mall_coupons_has_login'); }, userInfo: state => { if (state.userInfo) { return state.userInfo; } return uni.getStorageSync('mall_coupons_user_info') }, avatar: state => { if (state.userInfo && state.userInfo.avatarUrl) { return state.userInfo.avatarUrl; } return 'http://file.szjx.top/fashion/missing-face.png'; } }, mutations: { login(state, param) { uni.login({ provider: param.provider, success: (response) => { api.login(param.provider, response.code).then(resp => { let token = resp.data.xAuthToken state.accessToken = token; uni.setStorage({key: 'mall_coupons_access_token', data: token}); api.getLoginUser().then(resp => { state.hasLogin = true; state.userInfo = resp.data if (!resp.data.nick) { api.initUserInfo({ nick: param.userInfo.nickName, avatarUrl: param.userInfo.avatarUrl, city: param.userInfo.city, country: param.userInfo.country, province: param.userInfo.province, sex: param.userInfo.gender }).then((user) => { let userinfo = user.data state.hasLogin = true; state.userInfo = userinfo; uni.setStorage({key: 'mall_coupons_has_login', data: true}); uni.setStorage({key: 'mall_coupons_user_info', data: userinfo}); }); } }) }) } }); }, storeShareTicket(state, shareTicket) { state.shareTicket = shareTicket; }, storeToken(state, token) { state.accessToken = token; uni.setStorage({key: 'mall_coupons_access_token', data: token}); }, storeUser(state, user) { state.hasLogin = true; state.userInfo = user; uni.setStorage({key: 'mall_coupons_has_login', data: true}); uni.setStorage({key: 'mall_coupons_user_info', data: user}); }, logout(state) { api.logout(); state.hasLogin = false; state.userInfo = undefined; uni.removeStorage({ key: 'mall_coupons_access_token' }); uni.removeStorage({ key: 'mall_coupons_has_login' }); uni.removeStorage({ key: 'mall_coupons_user_info' }); } }, actions: {} }) export default store ================================================ FILE: client/style/app.scss ================================================ view, scroll-view, swiper, swiper-item, cover-view, cover-image, icon, text, rich-text, progress, button, checkbox, form, input, label, radio, slider, switch, textarea, navigator, audio, camera, image, video { box-sizing: border-box; } /* 图片载入替代方案 */ .image-wrapper { font-size: 0; background: #f3f3f3; border-radius: 4px; image { width: 100%; height: 100%; transition: .6s; opacity: 0; &.loaded { opacity: 1; } } } .clamp { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; display: block; } .common-hover { background: #f5f5f5; } /*边框*/ .b-b:after, .b-t:after { position: absolute; z-index: 3; left: 0; right: 0; height: 0; content: ''; transform: scaleY(.5); border-bottom: 1px solid $border-color-base; } .b-b:after { bottom: 0; } .b-t:after { top: 0; } /* button样式改写 */ uni-button, button { height: 80upx; line-height: 80upx; font-size: $font-lg + 2upx; font-weight: normal; &.no-border:before, &.no-border:after { border: 0; } } uni-button[type=default], button[type=default] { color: $font-color-dark; } /* input 样式 */ .input-placeholder { color: #999999; } .placeholder { color: #999999; } .tm { min-width: 23px; height: 13px; border-radius: 2px; background-image: url(https://cmsstatic.ffquan.cn/wap_new/common/images/tm.png); display: inline-block; margin-right: 3px; background-size: 23px 13px; background-repeat: no-repeat; background-position: center; } .tb { min-width: 29px; height: 13px; background-color: linear-gradient(142deg,#ff8c02 0,#ff5000 100%); border-radius: 2px; background-image: url(https://cmsstatic.ffquan.cn/wap_new/common/images/tb.png); display: inline-block; background-size: 29px 13px; background-repeat: no-repeat; background-position: center; margin-right: 2px; } ================================================ FILE: client/uni.scss ================================================ /* 页面左右间距 */ $page-row-spacing: 30upx; $page-color-base: #f8f8f8; $page-color-light: #f8f6fc; $base-color: #fa436a; /* 文字尺寸 */ $font-sm: 24upx; $font-base: 28upx; $font-lg: 32upx; /*文字颜色*/ $font-color-dark: #303133; $font-color-base: #606266; $font-color-light: #909399; $font-color-disabled: #C0C4CC; $font-color-spec: #4399fc; /* 边框颜色 */ $border-color-dark: #DCDFE6; $border-color-base: #E4E7ED; $border-color-light: #EBEEF5; /* 图片加载中颜色 */ $image-bg-color: #eee; /* 行为相关颜色 */ $uni-color-primary:#fa436a; $uni-color-success: #4cd964; $uni-color-warning: #f0ad4e; $uni-color-error: #dd524d; ================================================ FILE: client/utils/cache.js ================================================ /** * 缓存数据优化 * var cache = require('utils/cache.js'); * import cache from '../cache' * 使用方法 【 * 一、设置缓存 * string cache.put('k', 'string你好啊'); * json cache.put('k', { "b": "3" }, 2); * array cache.put('k', [1, 2, 3]); * boolean cache.put('k', true); * 二、读取缓存 * 默认值 cache.get('k') * string cache.get('k', '你好') * json cache.get('k', { "a": "1" }) * 三、移除/清理 * 移除: cache.remove('k'); * 清理:cache.clear(); * 】 * @type {String} */ var postfix = '_mallStore'; // 缓存前缀 /** * 设置缓存 * @param {[type]} k [键名] * @param {[type]} v [键值] * @param {[type]} t [时间、单位秒] */ function put(k, v, t) { uni.setStorageSync(k, v) var seconds = parseInt(t); if (seconds > 0) { var timestamp = Date.parse(new Date()); timestamp = timestamp / 1000 + seconds; uni.setStorageSync(k + postfix, timestamp + "") } else { uni.removeStorageSync(k + postfix) } } /** * 获取缓存 * @param {[type]} k [键名] * @param {[type]} def [获取为空时默认] */ function get(k, def) { var deadtime = parseInt(uni.getStorageSync(k + postfix)) if (deadtime) { if (parseInt(deadtime) < Date.parse(new Date()) / 1000) { if (def) { return def; } else { return false; } } } var res = uni.getStorageSync(k); if (res) { return res; } else { if (def === undefined || def === "") { def = false; } return def; } } function remove(k) { uni.removeStorageSync(k); uni.removeStorageSync(k + postfix); } /** * 清理所有缓存 * @return {[type]} [description] */ function clear() { uni.clearStorageSync(); } module.exports = { put: put, get: get, remove: remove, clear: clear, } ================================================ FILE: client/utils/http.js ================================================ import configdata from '../config' import cache from './cache' import store from '../store/index'; module.exports = { config: function(name) { var info = null; if (name) { var name2 = name.split("."); //字符分割 if (name2.length > 1) { info = configdata[name2[0]][name2[1]] || null; } else { info = configdata[name] || null; } if (info == null) { let web_config = cache.get("web_config"); if (web_config) { if (name2.length > 1) { info = web_config[name2[0]][name2[1]] || null; } else { info = web_config[name] || null; } } } } return info; }, post: function(url, data, xAuthToken = true) { url = this.config("APIHOST")+url; let header = { "content-type": "application/x-www-form-urlencoded" } if (xAuthToken) { header = { "content-type": "application/x-www-form-urlencoded", "X-Auth-Token": store.getters.accessToken } } return new Promise((succ, error) => { uni.request({ url: url, data: data, method: "POST", header: header, success: function(result) { succ.call(self, result.data) }, fail: function(e) { error.call(self, e) } }) }) }, get: function(url, data, xAuthToken = true) { url = this.config("APIHOST")+url; let header = { "content-type": "application/x-www-form-urlencoded" } if (xAuthToken) { header = { "content-type": "application/x-www-form-urlencoded", "X-Auth-Token": store.getters.accessToken } } return new Promise((succ, error) => { uni.request({ url: url, data: data, method: "GET", header: header, success: function(result) { succ.call(self, result.data) }, fail: function(e) { error.call(self, e) } }) }) } } ================================================ FILE: client/utils/mcUtils.js ================================================ module.exports = { getShareInfo: (shareTicket, callback) => { if (!shareTicket) { return; } // #ifdef MP-WEIXIN wx.getShareInfo({ shareTicket: shareTicket, timeout: 5000, success: callback }) // #endif // #ifdef MP-QQ qq.getShareInfo({ shareTicket: shareTicket, timeout: 5000, success: callback }) // #endif } } ================================================ FILE: doc/application.properties ================================================ #填写前面淘客注册应用的 AppKey、AppSecret dataoke.appKey= dataoke.appSecret= #填写前面注册QQ小程序的appId、appSecret spring.social.qq.app-id= spring.social.qq.app-secret= #填写前面注册微信小程序的appId、appSecret spring.social.wechat.app-id= spring.social.wechat.app-secret= # 配置MySQL数据库的地址 spring.datasource.url=jdbc:mysql://localhost:3306/mall-coupons?autoReconnect=true&useUnicode=true&characterEncoding=utf-8&allowMultiQueries=true&serverTimezone=Asia/Shanghai spring.datasource.username=root spring.datasource.password=xxx # 配置Redis服务器地址 spring.redis.host= spring.redis.password= spring.redis.port= # mob短信服务的appkey,需要打包收集app的才需要 mob.service.appkey= ================================================ FILE: doc/scheme.sql ================================================ CREATE TABLE `UserConnection` ( `userId` varchar(120) NOT NULL, `providerId` varchar(120) NOT NULL, `providerUserId` varchar(120) NOT NULL, `rank` int(11) NOT NULL, `displayName` varchar(255) DEFAULT NULL, `profileUrl` varchar(255) DEFAULT NULL, `imageUrl` varchar(255) DEFAULT NULL, `accessToken` varchar(255) NOT NULL, `secret` varchar(255) DEFAULT NULL, `refreshToken` varchar(255) DEFAULT NULL, `expireTime` bigint(20) DEFAULT NULL, PRIMARY KEY (`userId`, `providerId`, `providerUserId`), UNIQUE KEY `UserConnectionRank` (`userId`, `providerId`, `rank`) ) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4; CREATE TABLE `user` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `created_date` datetime DEFAULT CURRENT_TIMESTAMP, `updated_date` datetime DEFAULT NULL, `created_by` bigint(20) DEFAULT NULL, `last_updated_by` bigint(20) DEFAULT NULL, `account` varchar(60) DEFAULT NULL, `password` varchar(255) DEFAULT NULL, `user_type` varchar(255) DEFAULT NULL, `nick` varchar(50) DEFAULT NULL, `mobile` varchar(11) DEFAULT NULL, `email` varchar(20) DEFAULT NULL, `status` varchar(10) DEFAULT NULL, `avatar_url` varchar(500) DEFAULT NULL, `city` varchar(30) DEFAULT NULL, `country` varchar(30) DEFAULT NULL, `province` varchar(30) DEFAULT NULL, `sex` tinyint(4) DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE, KEY `account_index` (`account`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 1 DEFAULT CHARSET = utf8mb4; CREATE TABLE `collection` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `created_date` datetime DEFAULT NULL, `updated_date` datetime DEFAULT NULL, `created_by` bigint(20) DEFAULT NULL, `last_updated_by` bigint(20) DEFAULT NULL, `user_id` bigint(20) DEFAULT NULL, `data_id` bigint(20) DEFAULT NULL, `data_type` varchar(20) DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE, KEY `user_id_index` (`user_id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 1 DEFAULT CHARSET = utf8mb4; CREATE TABLE `carousel` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `created_date` datetime DEFAULT NULL, `updated_date` datetime DEFAULT NULL, `created_by` bigint(20) DEFAULT NULL, `last_updated_by` bigint(20) DEFAULT NULL, `title` varchar(50) DEFAULT NULL, `image` varchar(500) DEFAULT NULL, `background_color` varchar(120) DEFAULT NULL, `url` varchar(1000) DEFAULT NULL, `status` int(11) DEFAULT NULL, `top` int(11) DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 1 DEFAULT CHARSET = utf8mb4; CREATE TABLE `menu` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `created_date` datetime DEFAULT NULL, `updated_date` datetime DEFAULT NULL, `created_by` bigint(20) DEFAULT NULL, `last_updated_by` bigint(20) DEFAULT NULL, `title` varchar(50) DEFAULT NULL, `label` varchar(20) DEFAULT NULL, `icon` varchar(120) DEFAULT NULL, `url_type` varchar(50) DEFAULT NULL, `url` varchar(1000) DEFAULT NULL, `status` int(11) DEFAULT NULL, `top` int(11) DEFAULT NULL, `sort` int(11) DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 1 DEFAULT CHARSET = utf8mb4; CREATE TABLE `collocation` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `created_date` datetime DEFAULT NULL, `updated_date` datetime DEFAULT NULL, `created_by` bigint(20) DEFAULT NULL, `last_updated_by` bigint(20) DEFAULT NULL, `description` varchar(1000) DEFAULT NULL, `main_image` varchar(300) DEFAULT NULL, `images` varchar(2000) DEFAULT NULL, `view_count` int(11) DEFAULT NULL, `appreciate_count` int(11) DEFAULT NULL, `source_type` varchar(50) DEFAULT NULL, `source_id` varchar(100) DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 1 DEFAULT CHARSET = utf8mb4; CREATE TABLE `collocation_product` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `created_date` datetime DEFAULT NULL, `updated_date` datetime DEFAULT NULL, `created_by` bigint(20) DEFAULT NULL, `last_updated_by` bigint(20) DEFAULT NULL, `collocation_id` bigint(20) DEFAULT NULL, `tb_goods_id` varchar(50) DEFAULT NULL, `product_status` varchar(20) DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 1 DEFAULT CHARSET = utf8mb4; CREATE TABLE `tag` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `created_date` datetime DEFAULT NULL, `updated_date` datetime DEFAULT NULL, `created_by` bigint(20) DEFAULT NULL, `last_updated_by` bigint(20) DEFAULT NULL, `name` varchar(20) DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 1 DEFAULT CHARSET = utf8mb4; CREATE TABLE `tag_relation` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `created_date` datetime DEFAULT NULL, `updated_date` datetime DEFAULT NULL, `created_by` bigint(20) DEFAULT NULL, `last_updated_by` bigint(20) DEFAULT NULL, `tag_id` bigint(20) DEFAULT NULL, `data_id` bigint(20) DEFAULT NULL, `data_type` varchar(40) DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 1 DEFAULT CHARSET = utf8mb4; CREATE TABLE `appreciate_relation` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `created_date` datetime DEFAULT NULL, `updated_date` datetime DEFAULT NULL, `created_by` bigint(20) DEFAULT NULL, `last_updated_by` bigint(20) DEFAULT NULL, `user_id` bigint(20) DEFAULT NULL, `data_id` bigint(20) DEFAULT NULL, `data_type` varchar(40) DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 1 DEFAULT CHARSET = utf8mb4; INSERT INTO `mall-coupons`.`menu` (`id`, `created_date`, `updated_date`, `created_by`, `last_updated_by`, `title`, `label`, `icon`, `url`, `status`, `top`, `sort`, `url_type`) VALUES (1, '2020-07-05 21:46:20', '2020-07-05 21:46:24', 1, 1, '疯抢榜', '疯抢排行', 'https://img.alicdn.com/imgextra/i2/2053469401/O1CN01IVi6Do2JJi1PQz6yq_!!2053469401.gif', '/pages/rank/rank', 1, 10, 1, 'Native'); INSERT INTO `mall-coupons`.`menu` (`id`, `created_date`, `updated_date`, `created_by`, `last_updated_by`, `title`, `label`, `icon`, `url`, `status`, `top`, `sort`, `url_type`) VALUES (2, '2020-07-05 21:48:35', '2020-07-05 21:48:44', 1, 1, '9.9包邮', '9.9包邮', 'https://img.alicdn.com/imgextra/i4/2053469401/O1CN01yAF5em2JJi03dO5Rt_!!2053469401.png', '/pages/nine/nine', 1, 10, 2, 'Native'); INSERT INTO `mall-coupons`.`menu` (`id`, `created_date`, `updated_date`, `created_by`, `last_updated_by`, `title`, `label`, `icon`, `url`, `status`, `top`, `sort`, `url_type`) VALUES (12, '2020-09-07 22:50:37', '2020-09-07 22:50:41', 1, 1, '换季收纳', '换季收纳', 'https://img.alicdn.com/imgextra/i1/2053469401/O1CN015iAm922JJhyGcttsX_!!2053469401.png', '/pages/product/list?subcid=8122', 1, 0, 4, 'Native'); INSERT INTO `mall-coupons`.`menu` (`id`, `created_date`, `updated_date`, `created_by`, `last_updated_by`, `title`, `label`, `icon`, `url`, `status`, `top`, `sort`, `url_type`) VALUES (13, '2020-09-07 22:55:00', '2020-09-07 22:54:57', 1, 1, '牛仔裤', '牛仔裤', 'https://img.alicdn.com/imgextra/i3/2053469401/O1CN01R94DUN2JJhyIjNoPh_!!2053469401.png', '/pages/product/list?subcid=111760', 1, 0, 5, 'Native'); INSERT INTO `mall-coupons`.`menu` (`id`, `created_date`, `updated_date`, `created_by`, `last_updated_by`, `title`, `label`, `icon`, `url`, `status`, `top`, `sort`, `url_type`) VALUES (15, '2020-09-07 22:58:44', '2020-09-07 22:58:49', 1, 1, '旅行箱包', '旅行箱包', 'https://img.alicdn.com/imgextra/i3/2053469401/TB29lWltuGSBuNjSspbXXciipXa-2053469401.png', '/pages/product/list?subcid=8304', 1, 0, 7, 'Native'); INSERT INTO `mall-coupons`.`menu` (`id`, `created_date`, `updated_date`, `created_by`, `last_updated_by`, `title`, `label`, `icon`, `url`, `status`, `top`, `sort`, `url_type`) VALUES (16, '2020-09-07 23:00:12', '2020-09-07 23:00:08', 1, 1, '眼镜/墨镜', '眼镜/墨镜', 'https://img.alicdn.com/imgextra/i2/2053469401/TB2iybFaHAaBuNjt_igXXb5ApXa-2053469401.png', '/pages/product/list?subcid=117972', 1, 0, 8, 'Native'); INSERT INTO `mall-coupons`.`menu` (`id`, `created_date`, `updated_date`, `created_by`, `last_updated_by`, `title`, `label`, `icon`, `url`, `status`, `top`, `sort`, `url_type`) VALUES (17, '2020-10-10 21:50:23', '2020-10-10 21:50:28', 1, 1, '厨房专用', '厨房专用', 'https://img.alicdn.com/imgextra/i1/2053469401/TB2tN1otuuSBuNjSsziXXbq8pXa-2053469401.png', '/pages/product/list?subcid=117967', 1, 0, 9, 'Native'); INSERT INTO `mall-coupons`.`menu` (`id`, `created_date`, `updated_date`, `created_by`, `last_updated_by`, `title`, `label`, `icon`, `url`, `status`, `top`, `sort`, `url_type`) VALUES (18, '2020-10-10 21:52:58', '2020-10-10 21:53:01', 1, 1, '时尚毛呢', '时尚毛呢', 'https://img.alicdn.com/imgextra/i2/2053469401/O1CN01AHW0za2JJhtdVzbXv-2053469401.png', '/pages/product/list?subcid=121334', 1, 0, 0, 'Native'); ================================================ FILE: server/pom.xml ================================================ 4.0.0 org.springframework.boot spring-boot-starter-parent 2.1.7.RELEASE com.huaan9527 mall-coupons-server 0.0.1-SNAPSHOT mall-server Mall Coupons Server 1.8 com.tencentcloudapi tencentcloud-sdk-java 3.0.125 com.squareup.okio okio org.apache.commons commons-lang3 org.springframework.boot spring-boot-starter-web org.projectlombok lombok true dataoke dataoke 1.0 system ${project.basedir}/lib/openapi.jar com.alibaba fastjson 1.2.55 com.alibaba druid 1.1.12 com.monkeyk spring-social-qq 1.0.2 system ${project.basedir}/lib/spring-social-qq-1.0.2.jar com.monkeyk spring-social-wechat2 1.0.1 system ${project.basedir}/lib/spring-social-wechat2-1.0.1.jar org.springframework.boot spring-boot-starter-security com.ifrabbit spring-data-mybatis-boot-starter 2.0.0.RELEASE org.springframework.boot spring-boot-starter-data-redis org.springframework.session spring-session-data-redis org.springframework.boot spring-boot-starter-mail org.springframework.social spring-social-core 1.1.6.RELEASE org.springframework.social spring-social-config 1.1.6.RELEASE org.springframework.social spring-social-security 1.1.6.RELEASE org.springframework.boot spring-boot-devtools runtime true mysql mysql-connector-java runtime org.springframework.boot spring-boot-starter-test test org.junit.vintage junit-vintage-engine junit junit test org.ocpsoft.prettytime prettytime 4.0.1.Final aliyun aliyun https://maven.aliyun.com/repository/public maven-compiler-plugin 1.8 1.8 UTF-8 ${project.basedir}/lib org.springframework.boot spring-boot-maven-plugin true ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/MallWebapiApplication.java ================================================ package com.huaan9527.mall.webapi; import com.huaan9527.mall.webapi.configuration.properties.DaTaoKeProperties; import com.huaan9527.mall.webapi.configuration.properties.TaoBaoKeProperties; import com.huaan9527.mall.webapi.configuration.properties.TencentSmsProperties; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.context.properties.EnableConfigurationProperties; import org.springframework.boot.web.servlet.ServletComponentScan; import org.springframework.data.mybatis.repository.config.EnableMybatisAuditing; import org.springframework.social.config.annotation.EnableSocial; @EnableSocial @EnableMybatisAuditing @SpringBootApplication @ServletComponentScan(basePackages = {"com.huaan9527.mall.webapi.filter"}) @EnableConfigurationProperties({DaTaoKeProperties.class, TaoBaoKeProperties.class, TencentSmsProperties.class}) public class MallWebapiApplication { public static void main(String[] args) { SpringApplication.run(MallWebapiApplication.class, args); } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/client/MobServiceClient.java ================================================ package com.huaan9527.mall.webapi.client; import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONObject; import lombok.extern.slf4j.Slf4j; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Value; import org.springframework.stereotype.Component; import org.springframework.util.LinkedMultiValueMap; import org.springframework.util.MultiValueMap; import org.springframework.web.client.RestTemplate; @Slf4j @Component public class MobServiceClient { private static final String comfirmSMSCodeURL = "https://webapi.sms.mob.com/sms/verify"; @Value("${mob.service.appkey}") private String appkey; @Autowired private RestTemplate restTemplate; /** * 校验短信验证码 * * @return */ public Boolean confirmSMSCode(String mobile, String code) { MultiValueMap parameter = new LinkedMultiValueMap<>(); parameter.add("appkey", appkey); parameter.add("phone", mobile); parameter.add("code", code); parameter.add("zone", "86"); String body = restTemplate.postForObject(comfirmSMSCodeURL, parameter, String.class); log.error("MobServiceClient.confirmSMSCode => body:{}", body); JSONObject result = JSON.parseObject(body); Integer status = result.getInteger("status"); return Integer.valueOf(200).equals(status); } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/configuration/CommonConfiguration.java ================================================ package com.huaan9527.mall.webapi.configuration; import com.huaan9527.mall.webapi.security.SecurityUtils; import org.apache.http.config.Registry; import org.apache.http.config.RegistryBuilder; import org.apache.http.conn.socket.ConnectionSocketFactory; import org.apache.http.conn.socket.PlainConnectionSocketFactory; import org.apache.http.conn.ssl.NoopHostnameVerifier; import org.apache.http.conn.ssl.SSLConnectionSocketFactory; import org.apache.http.impl.client.CloseableHttpClient; import org.apache.http.impl.client.HttpClients; import org.apache.http.impl.conn.PoolingHttpClientConnectionManager; import org.apache.http.ssl.SSLContextBuilder; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.data.domain.AuditorAware; import org.springframework.http.client.HttpComponentsClientHttpRequestFactory; import org.springframework.web.client.RestTemplate; import java.security.KeyManagementException; import java.security.KeyStoreException; import java.security.NoSuchAlgorithmException; import java.security.cert.X509Certificate; import java.util.Optional; @Configuration public class CommonConfiguration { /** * @return */ @Bean public AuditorAware auditorAware() { return () -> Optional.of(SecurityUtils.getCurrentUserId()); } @Bean public RestTemplate restTemplate() throws KeyStoreException, NoSuchAlgorithmException, KeyManagementException { HttpComponentsClientHttpRequestFactory factory = new HttpComponentsClientHttpRequestFactory(); factory.setConnectionRequestTimeout(5000); factory.setConnectTimeout(5000); factory.setReadTimeout(5000); // https SSLContextBuilder builder = new SSLContextBuilder(); builder.loadTrustMaterial(null, (X509Certificate[] x509Certificates, String s) -> true); SSLConnectionSocketFactory socketFactory = new SSLConnectionSocketFactory(builder.build(), new String[]{"SSLv2Hello", "SSLv3", "TLSv1", "TLSv1.2"}, null, NoopHostnameVerifier.INSTANCE); Registry registry = RegistryBuilder.create() .register("http", new PlainConnectionSocketFactory()) .register("https", socketFactory).build(); PoolingHttpClientConnectionManager phccm = new PoolingHttpClientConnectionManager(registry); phccm.setMaxTotal(200); CloseableHttpClient httpClient = HttpClients.custom().setSSLSocketFactory(socketFactory).setConnectionManager(phccm).setConnectionManagerShared(true).build(); factory.setHttpClient(httpClient); return new RestTemplate(factory); } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/configuration/QQOAuth2Configuration.java ================================================ package com.huaan9527.mall.webapi.configuration; import lombok.AllArgsConstructor; import org.springframework.boot.context.properties.EnableConfigurationProperties; import org.springframework.context.annotation.Configuration; import org.springframework.core.env.Environment; import org.springframework.security.crypto.encrypt.Encryptors; import org.springframework.social.UserIdSource; import org.springframework.social.config.annotation.ConnectionFactoryConfigurer; import org.springframework.social.config.annotation.SocialConfigurer; import org.springframework.social.connect.ConnectionFactoryLocator; import org.springframework.social.connect.ConnectionSignUp; import org.springframework.social.connect.UsersConnectionRepository; import org.springframework.social.connect.jdbc.JdbcUsersConnectionRepository; import org.springframework.social.qq.ProviderType; import org.springframework.social.qq.configuration.QqProperties; import org.springframework.social.qq.oauth2.QqConnectionFactory; import org.springframework.social.security.AuthenticationNameUserIdSource; import javax.sql.DataSource; @Configuration @AllArgsConstructor @EnableConfigurationProperties(QqProperties.class) public class QQOAuth2Configuration implements SocialConfigurer { private final QqProperties properties; private DataSource dataSource; private ConnectionSignUp connectionSignUp; @Override public void addConnectionFactories(ConnectionFactoryConfigurer connectionFactoryConfigurer, Environment environment) { ProviderType providerType = ProviderType.valueOf(properties.getProviderType()); final QqConnectionFactory factory = new QqConnectionFactory(providerType, properties.getAppId(), properties.getAppSecret(), properties.getAuthorizeUrl(), properties.getAccessTokenApiUrl()); factory.setScope(properties.getScope()); connectionFactoryConfigurer.addConnectionFactory(factory); } @Override public UserIdSource getUserIdSource() { return new AuthenticationNameUserIdSource(); } @Override public UsersConnectionRepository getUsersConnectionRepository(ConnectionFactoryLocator connectionFactoryLocator) { JdbcUsersConnectionRepository connectionRepository = new JdbcUsersConnectionRepository(dataSource, connectionFactoryLocator, Encryptors.noOpText()); connectionRepository.setConnectionSignUp(connectionSignUp); return connectionRepository; } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/configuration/RedisConfiguration.java ================================================ package com.huaan9527.mall.webapi.configuration; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.data.redis.connection.RedisConnectionFactory; import org.springframework.data.redis.core.RedisTemplate; import org.springframework.data.redis.serializer.StringRedisSerializer; /** * redis * * @version 1.0.0 */ @Configuration public class RedisConfiguration { /** * RedisTemplate配置 * * @param redisConnectionFactory * @return */ @Bean public RedisTemplate redisTemplate(RedisConnectionFactory redisConnectionFactory) { RedisTemplate redisTemplate = new RedisTemplate<>(); redisTemplate.setConnectionFactory(redisConnectionFactory); // 使用Jackson2JsonRedisSerialize 替换默认序列化 // Jackson2JsonRedisSerializer jackson2JsonRedisSerializer = // new Jackson2JsonRedisSerializer(Object.class); // ObjectMapper objectMapper = new ObjectMapper(); // objectMapper.setVisibility(PropertyAccessor.ALL, JsonAutoDetect.Visibility.ANY); // objectMapper.enableDefaultTyping(ObjectMapper.DefaultTyping.NON_FINAL); // jackson2JsonRedisSerializer.setObjectMapper(objectMapper); // 设置value的序列化规则和 key的序列化规则 redisTemplate.setValueSerializer(new StringRedisSerializer()); redisTemplate.setKeySerializer(new StringRedisSerializer()); redisTemplate.setHashKeySerializer(new StringRedisSerializer()); redisTemplate.setHashValueSerializer(new StringRedisSerializer()); redisTemplate.afterPropertiesSet(); return redisTemplate; } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/configuration/SecurityConfiguration.java ================================================ package com.huaan9527.mall.webapi.configuration; import com.huaan9527.mall.webapi.security.DefalutLogoutSuccessHandler; import com.huaan9527.mall.webapi.security.MobileCodeAuthenticationProvider; import com.huaan9527.mall.webapi.security.MsAuthenticationEntryPoint; import com.huaan9527.mall.webapi.security.MsAuthenticationFailureHandler; import com.huaan9527.mall.webapi.security.MsAuthenticationSuccessHandler; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.security.config.annotation.web.builders.HttpSecurity; import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity; import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter; @EnableWebSecurity public class SecurityConfiguration extends WebSecurityConfigurerAdapter { @Autowired private MobileCodeAuthenticationProvider authenticationProvider; @Override protected void configure(HttpSecurity http) throws Exception { http.apply(new SocialConfigurer()); http.csrf().disable() .authorizeRequests() .antMatchers("/st/**", "/mi/**", "/auth/**", "/favicon.ico", "/login", "/logout") .permitAll() .anyRequest().authenticated() .and() .formLogin() .usernameParameter("mobile") .passwordParameter("code") .successHandler(new MsAuthenticationSuccessHandler()) .failureHandler(new MsAuthenticationFailureHandler()) .and() .logout() .logoutSuccessHandler(new DefalutLogoutSuccessHandler()) .and() .exceptionHandling() .authenticationEntryPoint(new MsAuthenticationEntryPoint()); http.authenticationProvider(authenticationProvider); } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/configuration/SessionConfiguration.java ================================================ package com.huaan9527.mall.webapi.configuration; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.session.data.redis.config.annotation.web.http.EnableRedisHttpSession; import org.springframework.session.web.http.HeaderHttpSessionIdResolver; import org.springframework.session.web.http.HttpSessionIdResolver; @Configuration @EnableRedisHttpSession(maxInactiveIntervalInSeconds = 60*60*24*30) //30天 public class SessionConfiguration { @Bean public HttpSessionIdResolver httpSessionIdResolver() { return HeaderHttpSessionIdResolver.xAuthToken(); } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/configuration/SocialConfigurer.java ================================================ package com.huaan9527.mall.webapi.configuration; import com.huaan9527.mall.webapi.security.MsAuthenticationFailureHandler; import com.huaan9527.mall.webapi.security.MsAuthenticationSuccessHandler; import org.springframework.beans.factory.NoSuchBeanDefinitionException; import org.springframework.context.ApplicationContext; import org.springframework.security.authentication.AuthenticationManager; import org.springframework.security.config.annotation.web.builders.HttpSecurity; import org.springframework.security.web.authentication.RememberMeServices; import org.springframework.security.web.authentication.preauth.AbstractPreAuthenticatedProcessingFilter; import org.springframework.social.connect.UsersConnectionRepository; import org.springframework.social.security.AuthenticationNameUserIdSource; import org.springframework.social.security.SocialAuthenticationFilter; import org.springframework.social.security.SocialAuthenticationProvider; import org.springframework.social.security.SocialAuthenticationServiceLocator; import org.springframework.social.security.SocialUserDetailsService; import org.springframework.social.security.SpringSocialConfigurer; public class SocialConfigurer extends SpringSocialConfigurer { @Override public void configure(HttpSecurity http) throws Exception { ApplicationContext applicationContext = http.getSharedObject(ApplicationContext.class); UsersConnectionRepository usersConnectionRepository = getDependency(applicationContext, UsersConnectionRepository.class); SocialAuthenticationServiceLocator authServiceLocator = getDependency(applicationContext, SocialAuthenticationServiceLocator.class); SocialUserDetailsService socialUsersDetailsService = getDependency(applicationContext, SocialUserDetailsService.class); SocialAuthenticationFilter filter = new SocialAuthenticationFilter( http.getSharedObject(AuthenticationManager.class), new AuthenticationNameUserIdSource(), usersConnectionRepository, authServiceLocator); filter.setAuthenticationSuccessHandler(new MsAuthenticationSuccessHandler()); filter.setAuthenticationFailureHandler(new MsAuthenticationFailureHandler()); RememberMeServices rememberMe = http.getSharedObject(RememberMeServices.class); if (rememberMe != null) { filter.setRememberMeServices(rememberMe); } http.authenticationProvider( new SocialAuthenticationProvider(usersConnectionRepository, socialUsersDetailsService)) .addFilterBefore(postProcess(filter), AbstractPreAuthenticatedProcessingFilter.class); } private T getDependency(ApplicationContext applicationContext, Class dependencyType) { try { T dependency = applicationContext.getBean(dependencyType); return dependency; } catch (NoSuchBeanDefinitionException e) { throw new IllegalStateException("SpringSocialConfigurer depends on " + dependencyType.getName() + ". No single bean of that type found in application context.", e); } } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/configuration/WebMvcConfiguration.java ================================================ package com.huaan9527.mall.webapi.configuration; import com.fasterxml.jackson.databind.ObjectMapper; import com.huaan9527.mall.webapi.interceptor.ParameterInterceptor; import org.springframework.beans.factory.BeanFactory; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.core.Ordered; import org.springframework.web.accept.ContentNegotiationManager; import org.springframework.web.servlet.config.annotation.InterceptorRegistry; import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; import org.springframework.web.servlet.view.ContentNegotiatingViewResolver; import org.springframework.web.servlet.view.json.MappingJackson2JsonView; import java.text.SimpleDateFormat; import java.util.Arrays; import java.util.Collections; import java.util.HashSet; import java.util.Set; @Configuration public class WebMvcConfiguration implements WebMvcConfigurer { @Override public void addInterceptors(InterceptorRegistry registry) { registry.addInterceptor(new ParameterInterceptor()); } @Bean public ContentNegotiatingViewResolver viewResolver(BeanFactory beanFactory) { ContentNegotiatingViewResolver resolver = new ContentNegotiatingViewResolver(); resolver.setContentNegotiationManager(beanFactory.getBean(ContentNegotiationManager.class)); resolver.setDefaultViews(Collections.singletonList(mappingJackson2JsonView())); resolver.setOrder(Ordered.HIGHEST_PRECEDENCE); return resolver; } private MappingJackson2JsonView mappingJackson2JsonView() { //设置日期格式 ObjectMapper objectMapper = new ObjectMapper(); SimpleDateFormat smt = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); objectMapper.setDateFormat(smt); MappingJackson2JsonView jsonView = new MappingJackson2JsonView(objectMapper); jsonView.setExtractValueFromSingleKeyModel(true); Set keys = new HashSet<>(Arrays.asList("success", "responseCode", "message", "data")); jsonView.setModelKeys(keys); return jsonView; } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/configuration/WechatAutoConfiguration.java ================================================ package com.huaan9527.mall.webapi.configuration; import lombok.AllArgsConstructor; import org.springframework.boot.context.properties.EnableConfigurationProperties; import org.springframework.context.annotation.Configuration; import org.springframework.core.env.Environment; import org.springframework.security.crypto.encrypt.Encryptors; import org.springframework.social.UserIdSource; import org.springframework.social.config.annotation.ConnectionFactoryConfigurer; import org.springframework.social.config.annotation.SocialConfigurer; import org.springframework.social.connect.ConnectionFactoryLocator; import org.springframework.social.connect.ConnectionSignUp; import org.springframework.social.connect.UsersConnectionRepository; import org.springframework.social.connect.jdbc.JdbcUsersConnectionRepository; import org.springframework.social.security.AuthenticationNameUserIdSource; import org.springframework.social.wechat2.WechatProviderType; import org.springframework.social.wechat2.configuration.WechatProperties; import org.springframework.social.wechat2.oauth2.WechatConnectionFactory; import javax.sql.DataSource; @Configuration @AllArgsConstructor @EnableConfigurationProperties(WechatProperties.class) public class WechatAutoConfiguration implements SocialConfigurer { private final WechatProperties properties; private DataSource dataSource; private ConnectionSignUp connectionSignUp; @Override public void addConnectionFactories(ConnectionFactoryConfigurer connectionFactoryConfigurer, Environment environment) { WechatProviderType providerType = WechatProviderType.valueOf(properties.getProviderType()); final WechatConnectionFactory factory = new WechatConnectionFactory(providerType, properties.getAppId(), properties.getAppSecret(), properties.getAuthorizeUrl(), properties.getAccessTokenApiUrl()); factory.setScope(properties.getScope()); connectionFactoryConfigurer.addConnectionFactory(factory); } @Override public UserIdSource getUserIdSource() { return new AuthenticationNameUserIdSource(); } @Override public UsersConnectionRepository getUsersConnectionRepository(ConnectionFactoryLocator connectionFactoryLocator) { JdbcUsersConnectionRepository connectionRepository = new JdbcUsersConnectionRepository(dataSource, connectionFactoryLocator, Encryptors.noOpText()); connectionRepository.setConnectionSignUp(connectionSignUp); return connectionRepository; } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/configuration/properties/DaTaoKeProperties.java ================================================ package com.huaan9527.mall.webapi.configuration.properties; import lombok.Data; import org.springframework.boot.context.properties.ConfigurationProperties; @Data @ConfigurationProperties(prefix = "dataoke") public class DaTaoKeProperties { private String appKey; private String appSecret; } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/configuration/properties/TaoBaoKeProperties.java ================================================ package com.huaan9527.mall.webapi.configuration.properties; import lombok.Data; import org.springframework.boot.context.properties.ConfigurationProperties; @Data @ConfigurationProperties(prefix = "taobaoke") public class TaoBaoKeProperties { private String serverUrl; private String appKey; private String appSecret; } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/configuration/properties/TencentSmsProperties.java ================================================ package com.huaan9527.mall.webapi.configuration.properties; import lombok.Data; import org.springframework.boot.context.properties.ConfigurationProperties; @ConfigurationProperties( prefix = "tencent.sms" ) @Data public class TencentSmsProperties { private String secretId; private String secretKey; private String appId; private String region; } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/controller/CateController.java ================================================ package com.huaan9527.mall.webapi.controller; import com.huaan9527.mall.webapi.service.GoodsService; import com.huaan9527.mall.webapi.utils.ResponseEntity; import lombok.AllArgsConstructor; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @RestController @RequestMapping("/mi") @AllArgsConstructor public class CateController { private GoodsService goodsService; @GetMapping("/load_cate") public ResponseEntity loadCate() { return ResponseEntity.success(goodsService.loadCate()); } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/controller/CollectionController.java ================================================ package com.huaan9527.mall.webapi.controller; import com.huaan9527.mall.webapi.domain.enums.DataType; import com.huaan9527.mall.webapi.service.CollectionService; import com.huaan9527.mall.webapi.utils.PageResponse; import com.huaan9527.mall.webapi.utils.ResponseEntity; import com.huaan9527.mall.webapi.vos.CollectionVo; import lombok.AllArgsConstructor; import org.springframework.data.domain.Pageable; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @RestController @RequestMapping("/collection") @AllArgsConstructor public class CollectionController { private CollectionService collectionService; @GetMapping("/product/add") public ResponseEntity addProductCollection(String productId) { collectionService.addCollection(DataType.Product.name(), productId); return ResponseEntity.success(); } @GetMapping("/collocation/add") public ResponseEntity addCollocationCollection(String collocationId) { collectionService.addCollection(DataType.Collocation.name(), collocationId); return ResponseEntity.success(); } @GetMapping("/product/remove") public ResponseEntity removeProductCollection(String productId) { collectionService.removeCollection(DataType.Product.name(), productId); return ResponseEntity.success(); } @GetMapping("/collocation/remove") public ResponseEntity removeCollocationCollection(String collocationId) { collectionService.removeCollection(DataType.Collocation.name(), collocationId); return ResponseEntity.success(); } @GetMapping("/product/list") public ResponseEntity listProductCollection(Pageable pageable) { PageResponse response = collectionService.listProductCollection(pageable); return ResponseEntity.success(response); } @GetMapping("/collocation/list") public ResponseEntity listCollocationCollection(Pageable pageable) { PageResponse response = collectionService.listCollocationCollection(pageable); return ResponseEntity.success(response); } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/controller/CollocationController.java ================================================ package com.huaan9527.mall.webapi.controller; import com.huaan9527.mall.webapi.service.CollocationService; import com.huaan9527.mall.webapi.utils.PageResponse; import com.huaan9527.mall.webapi.utils.ResponseEntity; import com.huaan9527.mall.webapi.vos.CollocationDetailVo; import com.huaan9527.mall.webapi.vos.CollocationProductVo; import com.huaan9527.mall.webapi.vos.CollocationVo; import lombok.AllArgsConstructor; import org.springframework.data.domain.PageRequest; import org.springframework.data.domain.Sort; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RestController; import java.util.List; @RestController @RequestMapping() @AllArgsConstructor public class CollocationController { private CollocationService collocationService; @GetMapping("/mi/collocation/load_recommend") public ResponseEntity recommendCollocations(Integer page) { PageRequest request = PageRequest.of(page, 20, Sort.Direction.DESC, "created_date"); PageResponse pageResponse = collocationService.list(request); return ResponseEntity.success(pageResponse); } @GetMapping("/mi/collocation/load_recommend2") public ResponseEntity recommendCollocations2(Integer page) { PageRequest request = PageRequest.of(page, 20, Sort.Direction.DESC, "view_count"); PageResponse pageResponse = collocationService.list(request); return ResponseEntity.success(pageResponse); } @GetMapping("/mi/collocation/list") public ResponseEntity list(@RequestParam(required = false) Integer sex, Integer page) { PageRequest request = PageRequest.of(page, 24, Sort.Direction.DESC, "createdDate"); PageResponse pageResponse = collocationService.simpleList(request, sex); return ResponseEntity.success(pageResponse); } @GetMapping("/collocation/add_appreciate") public ResponseEntity addAppreciate(Long collocationId) { collocationService.addAppreciate(collocationId); return ResponseEntity.success("Success"); } @GetMapping("/collocation/cancel_appreciate") public ResponseEntity cancelAppreciate(Long collocationId) { collocationService.cancelAppreciate(collocationId); return ResponseEntity.success("Success"); } @GetMapping("/mi/collocation/detail") public ResponseEntity detail(Long collocationId) { CollocationDetailVo detail = collocationService.detail(collocationId); return ResponseEntity.success(detail); } @GetMapping("/mi/collocation/simple_detail") public ResponseEntity simpleDetail(Long collocationId) { CollocationVo collocationVo = collocationService.simpleDetail(collocationId); return ResponseEntity.success(collocationVo); } @GetMapping("/mi/collocation/product") public ResponseEntity collocationProduct(Long collocationId) { List data = collocationService.loadCollocationProduct(collocationId); return ResponseEntity.success(data); } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/controller/EventController.java ================================================ package com.huaan9527.mall.webapi.controller; import com.huaan9527.mall.webapi.vos.EventVo; import lombok.AllArgsConstructor; import lombok.extern.slf4j.Slf4j; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @Slf4j @RestController @AllArgsConstructor @RequestMapping("/mi/event") public class EventController { @PostMapping("/collect") public void collectEvent(@RequestBody EventVo eventVo) { log.error("collectEvent.eventVo=>{}", eventVo.toString()); } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/controller/GoodsController.java ================================================ package com.huaan9527.mall.webapi.controller; import com.huaan9527.mall.webapi.service.GoodsService; import com.huaan9527.mall.webapi.utils.ResponseEntity; import com.huaan9527.mall.webapi.vos.ProductVo; import lombok.AllArgsConstructor; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; import java.util.HashMap; import java.util.Map; @RestController @RequestMapping("/mi") @AllArgsConstructor public class GoodsController { private GoodsService goodsService; @GetMapping("/load_recommend_goods") public ResponseEntity recommendGoods(Integer page) { return ResponseEntity.success(goodsService.recommendGoods(page, 50)); } @GetMapping("/load_nine_goods") public ResponseEntity nineGoods(Integer page, Integer size, String nineCid) { return ResponseEntity.success(goodsService.nineGoods(page, size, nineCid)); } @GetMapping("/load_rank_goods") public ResponseEntity rankGoods(String cid) { return ResponseEntity.success(goodsService.rankGoods(cid)); } @GetMapping("/load_goods_by_cate") public ResponseEntity loadGoodsByCate(String subcid, Integer page, Integer sort) { return ResponseEntity.success(goodsService.loadGoodsByCate(subcid, page, 50, sort)); } @GetMapping("/goods_detail") public ResponseEntity goodsDetail(String id, String goodsId) { return ResponseEntity.success(goodsService.goodsDetail(id, goodsId, true)); } @GetMapping("/goods_detail2") public ResponseEntity goodsDetail2(String id, String goodsId) { ProductVo productVo = goodsService.goodsDetail(id, goodsId, true); Map privilegeLink = goodsService.getPrivilegeLink(productVo.getGoodsId()); Map data = new HashMap<>(); data.put("productVo", productVo); data.put("privilegeLink", privilegeLink); return ResponseEntity.success(data); } @GetMapping("/get_privilege_link") public ResponseEntity getPrivilegeLink(String goodsId) { Map privilegeLink = goodsService.getPrivilegeLink(goodsId); return ResponseEntity.success("Success", privilegeLink); } @Deprecated @GetMapping("/search") public ResponseEntity search(String keyword, Integer page, Integer sort) { return ResponseEntity.success(goodsService.search(keyword, page, sort)); } @GetMapping("/search2") public ResponseEntity search2(String keyword, Integer page, String sort, String hasCoupon) { return ResponseEntity.success(goodsService.search2(keyword, page, sort, hasCoupon)); } @GetMapping("/get_hot_search") public ResponseEntity getHotSearch() { return ResponseEntity.success(goodsService.getHotSearchTop10()); } @GetMapping("/get_similar_goods") public ResponseEntity getSimilarGoods(String daTaoKeGoodsId) { return ResponseEntity.success(goodsService.similarGoods(daTaoKeGoodsId)); } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/controller/PublicController.java ================================================ package com.huaan9527.mall.webapi.controller; import com.huaan9527.mall.webapi.service.CarouselService; import com.huaan9527.mall.webapi.service.MenuService; import com.huaan9527.mall.webapi.service.UserService; import com.huaan9527.mall.webapi.utils.DateUtils; import com.huaan9527.mall.webapi.utils.MD5Util; import com.huaan9527.mall.webapi.utils.ResponseEntity; import com.huaan9527.mall.webapi.utils.WebUtils; import com.huaan9527.mall.webapi.vos.RegisterVo; import com.huaan9527.mall.webapi.vos.RegisterVo2; import com.huaan9527.mall.webapi.vos.SendEmailCodeVo; import com.huaan9527.mall.webapi.vos.UpdatePasswordVo; import lombok.AllArgsConstructor; import lombok.extern.slf4j.Slf4j; import org.springframework.data.redis.core.RedisTemplate; import org.springframework.data.redis.core.ValueOperations; import org.springframework.validation.BindingResult; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; import javax.annotation.Resource; import javax.servlet.http.HttpServletRequest; import javax.validation.Valid; import java.util.Base64; import java.util.Date; import java.util.Objects; @Slf4j @RestController @AllArgsConstructor @RequestMapping("/mi") public class PublicController { private UserService userService; private CarouselService carouselService; private MenuService menuService; @Resource private RedisTemplate redisTemplate; @Deprecated @PostMapping("/register") public ResponseEntity register(@Valid RegisterVo registerVo, BindingResult result) { if (result.hasErrors()) { return ResponseEntity.failure(result.getFieldErrors().get(0).getDefaultMessage()); } userService.register(registerVo); return ResponseEntity.success("注册成功"); } @PostMapping("/register2") public ResponseEntity register2(@Valid RegisterVo2 registerVo, BindingResult result) { if (result.hasErrors()) { return ResponseEntity.failure(result.getFieldErrors().get(0).getDefaultMessage()); } Base64.Encoder encoder = Base64.getEncoder(); String orginalStr = "mobile=" + registerVo.getMobile() + "&inviteCode=" + registerVo.getInviteCode() + "&verifyCode="+registerVo.getVerifyCode(); String validSign = MD5Util.getMD5(encoder.encodeToString(orginalStr.getBytes())); if (!registerVo.getSign().equals(validSign)) { log.error("register2=>签名校验失败"); return ResponseEntity.failure("签名校验失败"); } userService.register2(registerVo); return ResponseEntity.success("注册成功"); } @Deprecated @PostMapping("/update_password") public ResponseEntity updatePassword(@Valid UpdatePasswordVo updatePasswordVo, BindingResult result) { if (result.hasErrors()) { return ResponseEntity.failure(result.getFieldErrors().get(0).getDefaultMessage()); } userService.updatePassword(updatePasswordVo); return ResponseEntity.success("密码更新成功"); } @Deprecated @PostMapping("/send_email_code") public ResponseEntity sendEmailCode(@Valid SendEmailCodeVo sendEmailCodeVo, BindingResult result) { if (result.hasErrors()) { return ResponseEntity.failure(result.getFieldErrors().get(0).getDefaultMessage()); } userService.sendEmailCode(sendEmailCodeVo); return ResponseEntity.success("验证码已发送到邮箱"); } /** * md5(base64("mobile="+mobile.value+"&type=register")) * 一个手机号一天最多5次 * 一个ip一天15 * * @return */ @PostMapping("/send_mobile_code") public ResponseEntity sendMobileCode(String mobile, String type, String sign, HttpServletRequest request) { Base64.Encoder encoder = Base64.getEncoder(); String orginalStr = "mobile=" + mobile + "&type=" + type; String validSign = MD5Util.getMD5(encoder.encodeToString(orginalStr.getBytes())); if (!sign.equals(validSign)) { log.error("sendMobileCode=>签名校验失败"); return ResponseEntity.failure("签名校验失败"); } ValueOperations opsForValue = redisTemplate.opsForValue(); String mobileKey = "mobile_code_count_" + mobile; Integer redisValue = opsForValue.get(mobileKey); int mobileCount = Objects.isNull(redisValue) ? 0 : redisValue; if (mobileCount > 5) { log.error("手机号『{}』今日已达发送上限!", mobile); return ResponseEntity.failure("您今日已达发送上限"); } String clientIp = WebUtils.clientIp(request); String ipKey = "ip_code_count_" + clientIp; redisValue = opsForValue.get(ipKey); int ipCount = Objects.isNull(redisValue) ? 0 : redisValue; if (ipCount > 15) { log.error("IP『{}』今日已达发送上限!", clientIp); return ResponseEntity.failure("您今日已达发送上限"); } Date endTime = DateUtils.getEndTime(); opsForValue.set(mobileKey, mobileCount + 1); opsForValue.set(ipKey, ipCount + 1); redisTemplate.expireAt(mobileKey, endTime); redisTemplate.expireAt(ipKey, endTime); userService.sendMobileCode(mobile, type); return ResponseEntity.success("验证码发送成功"); } @PostMapping("/list_carousel") public ResponseEntity listCarousel() { return ResponseEntity.success(carouselService.list()); } @PostMapping("/list_menus") public ResponseEntity listMenus() { return ResponseEntity.success(menuService.list()); } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/controller/UserController.java ================================================ package com.huaan9527.mall.webapi.controller; import com.huaan9527.mall.webapi.service.UserService; import com.huaan9527.mall.webapi.utils.ResponseEntity; import com.huaan9527.mall.webapi.vos.UserVo; import lombok.AllArgsConstructor; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RestController; @RestController @AllArgsConstructor public class UserController { private UserService userService; @GetMapping("/user/current_user") public ResponseEntity getCurrentUser() { UserVo userVo = userService.getCurrentUser(); return ResponseEntity.success(userVo); } @PostMapping("/user/init_current_user") public ResponseEntity initCurrentUser(UserVo userVo) { userService.initUser(userVo); return ResponseEntity.success(userService.getCurrentUser()); } @PostMapping("/user/update") public ResponseEntity update(UserVo userVo) { userService.update(userVo); UserVo user = userService.getCurrentUser(); return ResponseEntity.success(user); } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/domain/AbstractDomain.java ================================================ package com.huaan9527.mall.webapi.domain; import lombok.Getter; import lombok.Setter; import org.apache.commons.lang3.builder.ReflectionToStringBuilder; import org.springframework.data.domain.Persistable; import org.springframework.data.mybatis.annotation.CreatedBy; import org.springframework.data.mybatis.annotation.CreatedDate; import org.springframework.data.mybatis.annotation.LastModifiedBy; import org.springframework.data.mybatis.annotation.LastModifiedDate; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.MappedSuperclass; import javax.persistence.Temporal; import javax.persistence.TemporalType; import java.io.Serializable; import java.util.Date; /** * 抽象实体基类,提供统一的ID,和相关的基本功能方法 */ @Getter @Setter @MappedSuperclass public abstract class AbstractDomain implements Persistable { @Id @GeneratedValue(strategy = GenerationType.AUTO) protected T id; @CreatedDate @Temporal(TemporalType.TIMESTAMP) private Date createdDate; @LastModifiedDate @Temporal(TemporalType.TIMESTAMP) private Date updatedDate; @CreatedBy protected Long createdBy; @LastModifiedBy protected Long lastUpdatedBy; // @Version // protected Integer version; @Override public T getId() { return id; } /* * (non-Javadoc) * * @see org.springframework.data.domain.Persistable#isNew() * */ public boolean isNew() { return null == getId(); } /* * (non-Javadoc) * * @see java.lang.Object#equals(java.lang.Object) */ @Override public boolean equals(Object obj) { if (null == obj) { return false; } if (this == obj) { return true; } if (!getClass().equals(obj.getClass())) { return false; } AbstractDomain that = (AbstractDomain) obj; return null != this.getId() && this.getId().equals(that.getId()); } /* * (non-Javadoc) * * @see java.lang.Object#hashCode() */ @Override public int hashCode() { int hashCode = 17; hashCode += null == getId() ? 0 : getId().hashCode() * 31; return hashCode; } @Override public String toString() { return ReflectionToStringBuilder.toString(this); } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/domain/AppreciateRelation.java ================================================ package com.huaan9527.mall.webapi.domain; import com.huaan9527.mall.webapi.domain.enums.DataType; import lombok.Getter; import lombok.NoArgsConstructor; import lombok.Setter; import javax.persistence.Entity; import javax.persistence.Table; @Getter @Setter @Entity @Table(name = "appreciate_relation") @NoArgsConstructor public class AppreciateRelation extends AbstractDomain { public final static Integer ADD_APPRECIATE = 1; public final static Integer CANCEL_APPRECIATE = -1; private Long userId; private Long dataId; private String dataType = DataType.Collocation.name(); } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/domain/Carousel.java ================================================ package com.huaan9527.mall.webapi.domain; import com.huaan9527.mall.webapi.domain.enums.Urlype; import lombok.Getter; import lombok.NoArgsConstructor; import lombok.Setter; import javax.persistence.Entity; import javax.persistence.Table; @Getter @Setter @Entity @Table(name = "carousel") @NoArgsConstructor public class Carousel extends AbstractDomain { private String title; private String image; private String backgroundColor; private String url; private int status; //0 禁用 1启用 private int top; private int sort; private String urlType = Urlype.H5.name(); } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/domain/Collection.java ================================================ package com.huaan9527.mall.webapi.domain; import com.huaan9527.mall.webapi.domain.enums.DataType; import lombok.Getter; import lombok.NoArgsConstructor; import lombok.Setter; import javax.persistence.Entity; import javax.persistence.Table; @Getter @Setter @Entity @Table(name = "collection") @NoArgsConstructor public class Collection extends AbstractDomain { private Long userId; private Long dataId; //淘宝商品id 或者 穿搭id private String dataType = DataType.Product.name(); } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/domain/Collocation.java ================================================ package com.huaan9527.mall.webapi.domain; import lombok.Getter; import lombok.NoArgsConstructor; import lombok.Setter; import javax.persistence.Entity; import javax.persistence.Table; @Getter @Setter @Entity @Table(name = "collocation") @NoArgsConstructor public class Collocation extends AbstractDomain { public static final String NOTHING_SOURCE_TYPE = "Nothing"; public static final String YI_XIN_SOURCE_TYPE = "YiXin"; private int sex; //1 男 0 女 private String description; private String mainImage; //封面图片 private String images; //多个用分号分隔 private Long viewCount; //浏览次数 private Long appreciateCount; //点赞数 private String sourceType; //Nothing private String sourceId; //matchId } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/domain/CollocationProduct.java ================================================ package com.huaan9527.mall.webapi.domain; import com.huaan9527.mall.webapi.domain.enums.ProductStatus; import lombok.Getter; import lombok.NoArgsConstructor; import lombok.Setter; import javax.persistence.Entity; import javax.persistence.Table; @Getter @Setter @Entity @Table(name = "collocation_product") @NoArgsConstructor public class CollocationProduct extends AbstractDomain { private Long collocationId; private String tbGoodsId; //淘宝商品id private String productStatus = ProductStatus.Up.name(); } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/domain/Menu.java ================================================ package com.huaan9527.mall.webapi.domain; import com.huaan9527.mall.webapi.domain.enums.Urlype; import lombok.Getter; import lombok.NoArgsConstructor; import lombok.Setter; import javax.persistence.Entity; import javax.persistence.Table; @Getter @Setter @Entity @Table(name = "menu") @NoArgsConstructor public class Menu extends AbstractDomain { private String label; private String icon; private String url; private int sort; private int status; //0 禁用 1启用 private String title; private int top; private String urlType = Urlype.H5.name(); } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/domain/Tag.java ================================================ package com.huaan9527.mall.webapi.domain; import lombok.Getter; import lombok.NoArgsConstructor; import lombok.Setter; import javax.persistence.Entity; import javax.persistence.Table; @Getter @Setter @Entity @Table(name = "tag") @NoArgsConstructor public class Tag extends AbstractDomain { private String name; } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/domain/TagRelation.java ================================================ package com.huaan9527.mall.webapi.domain; import com.huaan9527.mall.webapi.domain.enums.DataType; import lombok.Getter; import lombok.NoArgsConstructor; import lombok.Setter; import javax.persistence.Entity; import javax.persistence.Table; @Getter @Setter @Entity @Table(name = "tag_relation") @NoArgsConstructor public class TagRelation extends AbstractDomain { private Long tagId; private Long dataId; private String dataType = DataType.Collocation.name(); } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/domain/User.java ================================================ package com.huaan9527.mall.webapi.domain; import com.huaan9527.mall.webapi.domain.enums.UserStatus; import lombok.Getter; import lombok.NoArgsConstructor; import lombok.Setter; import org.springframework.social.connect.Connection; import org.springframework.social.connect.UserProfile; import javax.persistence.Entity; import javax.persistence.Table; @Getter @Setter @Entity @Table(name = "user") @NoArgsConstructor public class User extends AbstractDomain { private String account; private String password; private String userType; private String nick; private String mobile; private String email; private String status = UserStatus.Normal.name(); private String avatarUrl; private String city; private String country; private String province; private int sex; /** * OAuth2 注册 * * @param connection */ public void signUpFromConnection(Connection connection) { UserProfile userProfile = connection.fetchUserProfile(); this.account = userProfile.getUsername(); this.email = userProfile.getEmail(); this.nick = userProfile.getName(); } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/domain/UserConnection.java ================================================ package com.huaan9527.mall.webapi.domain; import lombok.Getter; import lombok.NoArgsConstructor; import lombok.Setter; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.Table; @Getter @Setter @Entity @Table(name = "UserConnection") @NoArgsConstructor public class UserConnection extends AbstractDomain { @Column(name = "userId") private String userId; @Column(name = "providerId") private String providerId; @Column(name = "providerUserId") private String providerUserId; private Integer rank; @Column(name = "displayName") private String displayName; @Column(name = "profileUrl") private String profileUrl; @Column(name = "imageUrl") private String imageUrl; @Column(name = "accessToken") private String accessToken; private String secret; @Column(name = "refreshToken") private String refreshToken; @Column(name = "expireTime") private Long expireTime; } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/domain/enums/DataType.java ================================================ package com.huaan9527.mall.webapi.domain.enums; public enum DataType { Collocation("搭配"), Product("商品"); private String label; DataType(String label) { this.label = label; } public String getLabel() { return label; } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/domain/enums/ProductStatus.java ================================================ package com.huaan9527.mall.webapi.domain.enums; public enum ProductStatus { Up("上架"), Down("下架"); private String label; ProductStatus(String label) { this.label = label; } public String getLabel() { return label; } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/domain/enums/Urlype.java ================================================ package com.huaan9527.mall.webapi.domain.enums; public enum Urlype { H5, Native } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/domain/enums/UserStatus.java ================================================ package com.huaan9527.mall.webapi.domain.enums; public enum UserStatus { Normal, Disable; } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/domain/enums/UserType.java ================================================ package com.huaan9527.mall.webapi.domain.enums; public enum UserType { Visitor, Register } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/exception/GlobalExceptionHandler.java ================================================ package com.huaan9527.mall.webapi.exception; import com.huaan9527.mall.webapi.security.SecurityUtils; import com.huaan9527.mall.webapi.utils.Constants; import com.huaan9527.mall.webapi.utils.ResponseEntity; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.http.HttpStatus; import org.springframework.web.bind.annotation.ControllerAdvice; import org.springframework.web.bind.annotation.ExceptionHandler; import org.springframework.web.bind.annotation.ResponseBody; import javax.servlet.http.HttpServletRequest; @ControllerAdvice public class GlobalExceptionHandler { private Logger logger = LoggerFactory.getLogger(getClass()); @ExceptionHandler(Exception.class) @ResponseBody public ResponseEntity exceptionHandler(Exception exception, HttpServletRequest request) { logger.error("exception message:[{}]", exception.getMessage(), exception); logger.error("request userId:{}, User-Agent: {}", SecurityUtils.getCurrentUserId(), request.getHeader("User-Agent")); return ResponseEntity.failure(HttpStatus.INTERNAL_SERVER_ERROR.value(), "服务端异常"); } @ExceptionHandler(MsException.class) @ResponseBody public ResponseEntity appExceptionHandler(Exception exception) { return ResponseEntity.failure(Constants.BIZ_ERROR_CODE, exception.getMessage()); } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/exception/MsException.java ================================================ package com.huaan9527.mall.webapi.exception; import lombok.Getter; @Getter public class MsException extends RuntimeException { private String module; public MsException(String module, String message) { super(message); this.module = module; } public MsException(String module, String message, Throwable cause) { super(message, cause); this.module = module; } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/filter/CrossDomainFilter.java ================================================ package com.huaan9527.mall.webapi.filter; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import javax.servlet.Filter; import javax.servlet.FilterChain; import javax.servlet.FilterConfig; import javax.servlet.ServletException; import javax.servlet.ServletRequest; import javax.servlet.ServletResponse; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import java.io.IOException; //@Order(0) //@WebFilter(filterName = "crossDomainFilter", urlPatterns = "/*") public class CrossDomainFilter implements Filter { private static final Logger log = LoggerFactory.getLogger(CrossDomainFilter.class); @Override public void destroy() { } @Override public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException { HttpServletRequest req = (HttpServletRequest) request; HttpServletResponse resp = (HttpServletResponse) response; // 得到请求的uri和url String reqUri = req.getRequestURI(); String reqUrl = req.getRequestURL().toString(); log.debug("reqUri:{} ,reqUrl:{}", reqUri, reqUrl); // 跨域处理 this.crossDomain(req, resp); chain.doFilter(req, resp); } @Override public void init(FilterConfig config) throws ServletException { } /** * 处理跨域问题 */ private void crossDomain(HttpServletRequest request, HttpServletResponse response) { String originHeader = request.getHeader("Origin"); response.setHeader("Access-Control-Allow-Origin", originHeader); response.setHeader("Access-Control-Allow-Methods", "POST, GET, PUT, OPTIONS, DELETE"); response.setHeader("Access-Control-Max-Age", "3600"); response.setHeader("Access-Control-Allow-Headers", "Origin, No-Cache, X-Requested-With, If-Modified-Since, Pragma, Last-Modified, Cache-Control, Expires, Content-Type, X-E4M-With"); response.setHeader("Access-Control-Allow-Credentials", "true"); } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/interceptor/ParameterInterceptor.java ================================================ package com.huaan9527.mall.webapi.interceptor; import com.alibaba.fastjson.JSON; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.lang.Nullable; import org.springframework.web.servlet.ModelAndView; import org.springframework.web.servlet.handler.HandlerInterceptorAdapter; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; public class ParameterInterceptor extends HandlerInterceptorAdapter { private Logger logger = LoggerFactory.getLogger(getClass()); @Override public void postHandle(HttpServletRequest request, HttpServletResponse response, Object handler, @Nullable ModelAndView modelAndView) throws Exception { logger.info("Start Request URI : {}", request.getRequestURI()); logger.info("Parameters : {}", JSON.toJSONString(request.getParameterMap())); } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/repository/AppreciateRelationRepository.java ================================================ package com.huaan9527.mall.webapi.repository; import com.huaan9527.mall.webapi.domain.AppreciateRelation; import com.huaan9527.mall.webapi.domain.enums.DataType; import org.springframework.data.mybatis.repository.Modifying; import org.springframework.data.mybatis.repository.MybatisRepository; import org.springframework.data.mybatis.repository.Query; import java.util.List; public interface AppreciateRelationRepository extends MybatisRepository { @Modifying @Query("DELETE FROM appreciate_relation WHERE user_id=?1 AND data_type=?2 AND data_id=?3") void deleteByDataTypeAndDataId(Long userId, DataType dataType, Long dataId); List findByUserIdAndDataType(Long userId, DataType dataType); AppreciateRelation findByUserIdAndDataIdAndDataType(Long userId, Long dataId, String dataType); } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/repository/CarouselRepository.java ================================================ package com.huaan9527.mall.webapi.repository; import com.huaan9527.mall.webapi.domain.Carousel; import org.springframework.data.mybatis.repository.MybatisRepository; import java.util.List; public interface CarouselRepository extends MybatisRepository { List findByStatusOrderByCreatedDateDesc(int status); } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/repository/CollectionRepository.java ================================================ package com.huaan9527.mall.webapi.repository; import com.huaan9527.mall.webapi.domain.Collection; import org.springframework.data.domain.Page; import org.springframework.data.domain.Pageable; import org.springframework.data.mybatis.repository.MybatisRepository; import org.springframework.data.mybatis.repository.Query; public interface CollectionRepository extends MybatisRepository { Page findByUserIdAndDataTypeOrderByCreatedDateDesc(Long userId, String dataType, Pageable pageable); long countByUserId(Long currentUserId); Collection findByUserIdAndDataIdAndDataType(Long userId, String dataId, String dataType); @Query("delete from collection where user_id=?1 and data_id=?2 and data_type=?3") void removeCollection(Long userId, String dataId, String dataType); } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/repository/CollocationProductRepository.java ================================================ package com.huaan9527.mall.webapi.repository; import com.huaan9527.mall.webapi.domain.CollocationProduct; import org.springframework.data.mybatis.repository.MybatisRepository; import java.util.List; public interface CollocationProductRepository extends MybatisRepository { List findByCollocationIdAndProductStatus(Long collocationId, String status); } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/repository/CollocationRepository.java ================================================ package com.huaan9527.mall.webapi.repository; import com.huaan9527.mall.webapi.domain.Collocation; import com.huaan9527.mall.webapi.vos.CollocationDetailVo; import com.huaan9527.mall.webapi.vos.CollocationVo; import org.springframework.data.domain.Page; import org.springframework.data.domain.Pageable; import org.springframework.data.mybatis.repository.Modifying; import org.springframework.data.mybatis.repository.MybatisRepository; import org.springframework.data.mybatis.repository.Query; import org.springframework.data.repository.query.Param; public interface CollocationRepository extends MybatisRepository { @Query(statement = "findList") Page findList(Pageable pageable); @Query(statement = "findDetailById") CollocationDetailVo findDetailById(@Param("collocationId") Long collocationId); @Modifying @Query(statement = "updateAppreciateCount") void updateAppreciateCount(@Param("collocationId") Long collocationId, @Param("amount") int amount); @Query(statement = "simpleDetail") CollocationVo simpleDetail(@Param("collocationId") Long collocationId); long countBySourceTypeAndSourceId(String sourceType, String sourceId); @Query("UPDATE collocation SET view_count = view_count + 1 WHERE id=?1") void increaseViewCount(Long collocationId); Page findBySex(Integer sex, Pageable pageable); } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/repository/MenuRepository.java ================================================ package com.huaan9527.mall.webapi.repository; import com.huaan9527.mall.webapi.domain.Menu; import org.springframework.data.mybatis.repository.MybatisRepository; import java.util.List; public interface MenuRepository extends MybatisRepository { List findByStatusOrderByCreatedDateDesc(int status); List findByStatusOrderBySortAsc(int status); } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/repository/TagRelationRepository.java ================================================ package com.huaan9527.mall.webapi.repository; import com.huaan9527.mall.webapi.domain.TagRelation; import org.springframework.data.mybatis.repository.MybatisRepository; public interface TagRelationRepository extends MybatisRepository { } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/repository/TagRepository.java ================================================ package com.huaan9527.mall.webapi.repository; import com.huaan9527.mall.webapi.domain.Tag; import org.springframework.data.mybatis.repository.MybatisRepository; public interface TagRepository extends MybatisRepository { Tag findByName(String tagName); } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/repository/UserConnectionRepository.java ================================================ package com.huaan9527.mall.webapi.repository; import com.huaan9527.mall.webapi.domain.UserConnection; import org.springframework.data.mybatis.repository.MybatisRepository; public interface UserConnectionRepository extends MybatisRepository { UserConnection findByUserId(String userId); } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/repository/UserRepository.java ================================================ package com.huaan9527.mall.webapi.repository; import com.huaan9527.mall.webapi.domain.User; import org.springframework.data.mybatis.repository.MybatisRepository; public interface UserRepository extends MybatisRepository { User findByMobile(String account); long countByMobile(String mobile); long countByEmail(String mobile); } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/security/DefalutLogoutSuccessHandler.java ================================================ package com.huaan9527.mall.webapi.security; import com.huaan9527.mall.webapi.utils.ResponseEntity; import com.huaan9527.mall.webapi.utils.WebUtils; import org.springframework.security.core.Authentication; import org.springframework.security.web.authentication.logout.LogoutSuccessHandler; import javax.servlet.ServletException; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import java.io.IOException; public class DefalutLogoutSuccessHandler implements LogoutSuccessHandler { @Override public void onLogoutSuccess(HttpServletRequest request, HttpServletResponse response, Authentication authentication) throws IOException, ServletException { WebUtils.writeJSON(response, ResponseEntity.success("退出成功")); } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/security/DefaultConnectionSignUp.java ================================================ package com.huaan9527.mall.webapi.security; import com.huaan9527.mall.webapi.domain.User; import com.huaan9527.mall.webapi.service.UserService; import lombok.AllArgsConstructor; import org.springframework.social.connect.Connection; import org.springframework.social.connect.ConnectionSignUp; import org.springframework.stereotype.Component; @Component @AllArgsConstructor public class DefaultConnectionSignUp implements ConnectionSignUp { private UserService userService; @Override public String execute(Connection connection) { User user = userService.signUp(connection); return String.valueOf(user.getId()); } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/security/DefaultSocialUserDetailsService.java ================================================ package com.huaan9527.mall.webapi.security; import com.huaan9527.mall.webapi.domain.User; import com.huaan9527.mall.webapi.repository.UserRepository; import lombok.AllArgsConstructor; import org.springframework.security.core.userdetails.UsernameNotFoundException; import org.springframework.social.security.SocialUser; import org.springframework.social.security.SocialUserDetails; import org.springframework.social.security.SocialUserDetailsService; import org.springframework.stereotype.Component; import java.util.ArrayList; @Component @AllArgsConstructor public class DefaultSocialUserDetailsService implements SocialUserDetailsService { private UserRepository userRepository; @Override public SocialUserDetails loadUserByUserId(String userId) throws UsernameNotFoundException { User user = userRepository.getById(Long.valueOf(userId)); if (user == null) { return null; } return new SocialUser(userId, user.getPassword() == null ? "" : user.getPassword(), new ArrayList<>()); } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/security/MobileCodeAuthenticationProvider.java ================================================ package com.huaan9527.mall.webapi.security; import com.huaan9527.mall.webapi.client.MobServiceClient; import lombok.extern.slf4j.Slf4j; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.security.authentication.AuthenticationProvider; import org.springframework.security.authentication.BadCredentialsException; import org.springframework.security.authentication.InternalAuthenticationServiceException; import org.springframework.security.authentication.UsernamePasswordAuthenticationToken; import org.springframework.security.core.Authentication; import org.springframework.security.core.AuthenticationException; import org.springframework.security.core.userdetails.UserDetails; import org.springframework.security.core.userdetails.UserDetailsService; import org.springframework.security.core.userdetails.UsernameNotFoundException; import org.springframework.stereotype.Component; import java.util.ArrayList; import java.util.Objects; /** * 手机号验证码模式登陆 */ @Slf4j @Component public class MobileCodeAuthenticationProvider implements AuthenticationProvider { @Autowired private UserDetailsService userDetailsService; @Autowired private MobServiceClient mobServiceClient; @Override public boolean supports(Class authentication) { return (UsernamePasswordAuthenticationToken.class.isAssignableFrom(authentication)); } @Override public Authentication authenticate(Authentication authentication) throws AuthenticationException { validate(authentication); try { String mobile = authentication.getName(); UserDetails userDetails = userDetailsService.loadUserByUsername(mobile); return createSuccessAuthentication(userDetails, authentication); } catch (InternalAuthenticationServiceException ex) { throw ex; } catch (Exception ex) { throw new InternalAuthenticationServiceException(ex.getMessage(), ex); } } private void validate(Authentication authentication) { if (Objects.isNull(authentication.getName())) { throw new UsernameNotFoundException("手机号不能为空"); } if (Objects.isNull(authentication.getCredentials())) { throw new BadCredentialsException("验证码不能为空"); } String code = authentication.getCredentials().toString(); String mobile = authentication.getName(); if("18380483688".equals(mobile) && "1122".equals(code)){ //测试账号免验证 return; } if (!mobServiceClient.confirmSMSCode(mobile, code)) { throw new BadCredentialsException("验证码错误或已过期"); } } private Authentication createSuccessAuthentication(Object principal, Authentication authentication) { UsernamePasswordAuthenticationToken result = new UsernamePasswordAuthenticationToken( principal, authentication.getCredentials(), new ArrayList<>()); result.setDetails(authentication.getDetails()); return result; } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/security/MsAuthenticationEntryPoint.java ================================================ package com.huaan9527.mall.webapi.security; import com.huaan9527.mall.webapi.utils.Constants; import com.huaan9527.mall.webapi.utils.ResponseEntity; import com.huaan9527.mall.webapi.utils.WebUtils; import lombok.extern.slf4j.Slf4j; import org.springframework.security.core.AuthenticationException; import org.springframework.security.web.AuthenticationEntryPoint; import javax.servlet.ServletException; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import java.io.IOException; @Slf4j public class MsAuthenticationEntryPoint implements AuthenticationEntryPoint { public MsAuthenticationEntryPoint() { } @Override public void commence(HttpServletRequest request, HttpServletResponse response, AuthenticationException authException) throws IOException, ServletException { log.error(authException.getMessage()); WebUtils.writeJSON(response, ResponseEntity.failure(Constants.UNLOGIN_CODE, "还未登录请先登录")); } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/security/MsAuthenticationFailureHandler.java ================================================ package com.huaan9527.mall.webapi.security; import com.huaan9527.mall.webapi.utils.Constants; import com.huaan9527.mall.webapi.utils.ResponseEntity; import com.huaan9527.mall.webapi.utils.WebUtils; import lombok.extern.slf4j.Slf4j; import org.springframework.security.authentication.BadCredentialsException; import org.springframework.security.authentication.LockedException; import org.springframework.security.core.AuthenticationException; import org.springframework.security.web.authentication.AuthenticationFailureHandler; import javax.servlet.ServletException; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import java.io.IOException; @Slf4j public class MsAuthenticationFailureHandler implements AuthenticationFailureHandler { @Override public void onAuthenticationFailure(HttpServletRequest request, HttpServletResponse response, AuthenticationException exception) throws IOException, ServletException { log.error("Authentication Fail, request uri:[{}]", request.getRequestURI(), exception); String message = "登录失败"; if(exception instanceof BadCredentialsException){ message = "验证码错误或已过期"; } else if(exception instanceof LockedException){ message = "账号已被禁用,请联系客服"; } WebUtils.writeJSON(response, ResponseEntity.failure(Constants.LOGIN_FAILURE_CODE, message)); } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/security/MsAuthenticationSuccessHandler.java ================================================ package com.huaan9527.mall.webapi.security; import com.huaan9527.mall.webapi.utils.ResponseEntity; import com.huaan9527.mall.webapi.utils.WebUtils; import org.springframework.security.core.Authentication; import org.springframework.security.web.authentication.AuthenticationSuccessHandler; import javax.servlet.ServletException; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import java.io.IOException; import java.util.HashMap; import java.util.Map; public class MsAuthenticationSuccessHandler implements AuthenticationSuccessHandler { @Override public void onAuthenticationSuccess(HttpServletRequest request, HttpServletResponse response, Authentication authentication) throws IOException, ServletException { Map data = new HashMap<>(); data.put("xAuthToken", request.getSession().getId()); ResponseEntity responseEntity = ResponseEntity.success(data); WebUtils.writeJSON(response, responseEntity); } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/security/SecurityUtils.java ================================================ package com.huaan9527.mall.webapi.security; import com.huaan9527.mall.webapi.exception.MsException; import org.springframework.security.authentication.AnonymousAuthenticationToken; import org.springframework.security.core.Authentication; import org.springframework.security.core.context.SecurityContextHolder; import org.springframework.security.core.userdetails.UserDetails; import org.springframework.social.security.SocialUser; public class SecurityUtils { /** * @return */ public static Long getCurrentUserId() { Authentication authentication = SecurityContextHolder.getContext().getAuthentication(); if (authentication == null || authentication instanceof AnonymousAuthenticationToken) { return -1L; } if (authentication.getPrincipal() instanceof SocialUser) { return Long.valueOf(((SocialUser) authentication.getPrincipal()).getUserId()); } if (authentication.getPrincipal() instanceof UserDetails) { return Long.valueOf(((UserDetails) authentication.getPrincipal()).getUsername()); } throw new MsException("User", "当前登录账号异常"); } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/security/UserDetailsServiceImpl.java ================================================ package com.huaan9527.mall.webapi.security; import com.huaan9527.mall.webapi.service.UserService; import lombok.NoArgsConstructor; import lombok.extern.slf4j.Slf4j; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.security.core.userdetails.User; import org.springframework.security.core.userdetails.UserDetails; import org.springframework.security.core.userdetails.UserDetailsService; import org.springframework.security.core.userdetails.UsernameNotFoundException; import org.springframework.stereotype.Component; import java.util.ArrayList; import java.util.Objects; @Slf4j @Component @NoArgsConstructor public class UserDetailsServiceImpl implements UserDetailsService { @Autowired private UserService userService; @Override public UserDetails loadUserByUsername(String mobile) throws UsernameNotFoundException { com.huaan9527.mall.webapi.domain.User user = userService.findByMobile(mobile); if (Objects.isNull(user)) { log.error("手机号[{}]查询不到用户,走注册流程", mobile); user = userService.register(mobile); } assert user.getId() != null; return new User(user.getId().toString(), user.getPassword(), new ArrayList<>()); } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/service/AppreciateRelationService.java ================================================ package com.huaan9527.mall.webapi.service; import com.huaan9527.mall.webapi.domain.AppreciateRelation; import com.huaan9527.mall.webapi.domain.enums.DataType; import com.huaan9527.mall.webapi.repository.AppreciateRelationRepository; import com.huaan9527.mall.webapi.security.SecurityUtils; import lombok.AllArgsConstructor; import lombok.extern.slf4j.Slf4j; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; import java.util.ArrayList; import java.util.List; @Slf4j @Service @AllArgsConstructor @Transactional(readOnly = true) public class AppreciateRelationService { private AppreciateRelationRepository appreciateRelationRepository; /** * 新增关注 */ @Transactional public void addAppreciate(DataType dataType, Long dataId) { AppreciateRelation appreciateRelation = buildAppreciateLog(dataType, dataId); appreciateRelationRepository.save(appreciateRelation); } @Transactional public void cancelAppreciate(DataType dataType, Long dataId) { Long userId = SecurityUtils.getCurrentUserId(); appreciateRelationRepository.deleteByDataTypeAndDataId(userId, dataType, dataId); } private AppreciateRelation buildAppreciateLog(DataType dataType, Long dataId) { AppreciateRelation appreciateRelation = new AppreciateRelation(); appreciateRelation.setDataId(dataId); appreciateRelation.setDataType(dataType.name()); appreciateRelation.setUserId(SecurityUtils.getCurrentUserId()); return appreciateRelation; } public List findAppreciateCollocations() { Long userId = SecurityUtils.getCurrentUserId(); if (userId == -1) { log.error("AppreciateRelationService.findAppreciateCollocations => 用户未登录"); return new ArrayList<>(); } return appreciateRelationRepository.findByUserIdAndDataType(userId, DataType.Collocation); } public AppreciateRelation findAppreciateCollocation(Long userId, Long collocationId, String dataType) { return appreciateRelationRepository.findByUserIdAndDataIdAndDataType(userId, collocationId, dataType); } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/service/CarouselService.java ================================================ package com.huaan9527.mall.webapi.service; import com.huaan9527.mall.webapi.domain.Carousel; import com.huaan9527.mall.webapi.repository.CarouselRepository; import com.huaan9527.mall.webapi.vos.CarouselVo; import lombok.AllArgsConstructor; import lombok.extern.slf4j.Slf4j; import org.springframework.beans.BeanUtils; import org.springframework.stereotype.Service; import java.util.List; import java.util.stream.Collectors; @Slf4j @Service @AllArgsConstructor public class CarouselService { private CarouselRepository carouselRepository; public List list() { List carouselList = carouselRepository.findByStatusOrderByCreatedDateDesc(1); return carouselList.stream().map(carousel -> { CarouselVo vo = new CarouselVo(); BeanUtils.copyProperties(carousel, vo); vo.setId(carousel.getId()); return vo; }).collect(Collectors.toList()); } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/service/CollectionService.java ================================================ package com.huaan9527.mall.webapi.service; import com.huaan9527.mall.webapi.domain.Collection; import com.huaan9527.mall.webapi.domain.enums.DataType; import com.huaan9527.mall.webapi.repository.CollectionRepository; import com.huaan9527.mall.webapi.security.SecurityUtils; import com.huaan9527.mall.webapi.utils.PageResponse; import com.huaan9527.mall.webapi.vos.CollectionVo; import com.huaan9527.mall.webapi.vos.CollocationVo; import com.huaan9527.mall.webapi.vos.ProductVo; import lombok.AllArgsConstructor; import lombok.extern.slf4j.Slf4j; import org.springframework.data.domain.Page; import org.springframework.data.domain.Pageable; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; import java.util.List; import java.util.function.Function; import java.util.stream.Collectors; @Slf4j @Service @AllArgsConstructor @Transactional(readOnly = true) public class CollectionService { private GoodsService goodsService; private CollocationService collocationService; private CollectionRepository collectionRepository; @Transactional public void addCollection(String dataType, String dataId) { Long currentUserId = SecurityUtils.getCurrentUserId(); Collection existCollection = collectionRepository.findByUserIdAndDataIdAndDataType(currentUserId, dataId, dataType); if (existCollection != null) { log.info("已经收藏,dataId:{}", dataId); return; } Collection collection = new Collection(); collection.setUserId(currentUserId); collection.setDataId(Long.valueOf(dataId)); collection.setDataType(dataType); collectionRepository.save(collection); } @Transactional public void removeCollection(String dataType, String dataId) { Long currentUserId = SecurityUtils.getCurrentUserId(); collectionRepository.removeCollection(currentUserId, dataId, dataType); } public PageResponse listProductCollection(Pageable pageable) { Long userId = SecurityUtils.getCurrentUserId(); Page collectionPage = collectionRepository.findByUserIdAndDataTypeOrderByCreatedDateDesc(userId, DataType.Product.name(), pageable); List list = collectionPage .stream() .map(getProductCollection()) .collect(Collectors.toList()); return new PageResponse<>(pageable.getPageNumber(), pageable.getPageSize(), collectionPage.getTotalElements(), list); } private Function getProductCollection() { return collection -> { CollectionVo collectionVo = new CollectionVo(collection); ProductVo productVo = goodsService.goodsDetail(null, collection.getDataId().toString(), false); collectionVo.setData(productVo); return collectionVo; }; } public PageResponse listCollocationCollection(Pageable pageable) { Long userId = SecurityUtils.getCurrentUserId(); Page collectionPage = collectionRepository.findByUserIdAndDataTypeOrderByCreatedDateDesc(userId, DataType.Collocation.name(), pageable); List list = collectionPage .stream() .map(getCollocationCollection()) .collect(Collectors.toList()); return new PageResponse<>(pageable.getPageNumber(), pageable.getPageSize(), collectionPage.getTotalElements(), list); } private Function getCollocationCollection() { return collection -> { CollectionVo collectionVo = new CollectionVo(collection); CollocationVo collocationVo = collocationService.simpleDetail(collection.getDataId()); collectionVo.setData(collocationVo); return collectionVo; }; } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/service/CollocationService.java ================================================ package com.huaan9527.mall.webapi.service; import com.alibaba.fastjson.JSONObject; import com.huaan9527.mall.webapi.domain.AppreciateRelation; import com.huaan9527.mall.webapi.domain.Collocation; import com.huaan9527.mall.webapi.domain.CollocationProduct; import com.huaan9527.mall.webapi.domain.enums.DataType; import com.huaan9527.mall.webapi.domain.enums.ProductStatus; import com.huaan9527.mall.webapi.repository.CollocationProductRepository; import com.huaan9527.mall.webapi.repository.CollocationRepository; import com.huaan9527.mall.webapi.security.SecurityUtils; import com.huaan9527.mall.webapi.service.operation.api.GoodsDetailApi; import com.huaan9527.mall.webapi.utils.PageResponse; import com.huaan9527.mall.webapi.vos.CollocationDetailVo; import com.huaan9527.mall.webapi.vos.CollocationProductVo; import com.huaan9527.mall.webapi.vos.CollocationVo; import lombok.AllArgsConstructor; import lombok.extern.slf4j.Slf4j; import org.springframework.beans.BeanUtils; import org.springframework.data.domain.Page; import org.springframework.data.domain.Pageable; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; import org.springframework.util.CollectionUtils; import java.util.List; import java.util.Map; import java.util.Objects; import static java.util.stream.Collectors.groupingBy; import static java.util.stream.Collectors.toList; @Slf4j @Service @AllArgsConstructor @Transactional(readOnly = true) public class CollocationService { private CollocationRepository collocationRepository; private CollocationProductRepository collocationProductRepository; private GoodsDetailApi goodsDetailApi; private AppreciateRelationService appreciateRelationService; /** * @param pageable * @return */ public PageResponse list(Pageable pageable) { Page collocations = collocationRepository.findList(pageable); List appreciates = appreciateRelationService.findAppreciateCollocations(); Map> group = appreciates.stream().collect(groupingBy(AppreciateRelation::getDataId)); List collocationVos = collocations.getContent().stream().map(collocation -> { CollocationVo collocationVo = CollocationVo.builder().build(); BeanUtils.copyProperties(collocation, collocationVo); List appreciateRelations = group.get(collocation.getCollocationId()); if (!CollectionUtils.isEmpty(appreciateRelations)) { collocationVo.setAppreciate(true); } return collocationVo; }).collect(toList()); return new PageResponse<>(pageable.getPageNumber(), pageable.getPageSize(), collocations.getTotalElements(), collocationVos); } /** * @param pageable * @param sex * @return */ public PageResponse simpleList(Pageable pageable, Integer sex) { Page collocationPage; if (Objects.isNull(sex)) { collocationPage = collocationRepository.findAll(pageable); } else { collocationPage = collocationRepository.findBySex(sex, pageable); } List collocationVos = collocationPage.getContent().stream().map(collocation -> { CollocationVo collocationVo = CollocationVo.builder().build(); BeanUtils.copyProperties(collocation, collocationVo); collocationVo.setCollocationId(collocation.getId()); return collocationVo; }).collect(toList()); return new PageResponse<>(pageable.getPageNumber(), pageable.getPageSize(), collocationPage.getTotalElements(), collocationVos); } /** * @return */ public CollocationDetailVo detail(Long collocationId) { collocationRepository.increaseViewCount(collocationId); CollocationDetailVo detail = collocationRepository.findDetailById(collocationId); detail.getProducts().forEach(product -> { String tbGoodsId = product.getGoodsId(); JSONObject jb = goodsDetailApi.loadGoodsDetail(null, tbGoodsId); product.setMainPic(jb.getString("mainPic")); product.setMarketingMainPic(jb.getString("marketingMainPic")); product.setTitle(jb.getString("dtitle")); product.setActualPrice(jb.getString("actualPrice")); product.setCouponPrice(jb.getString("couponPrice")); }); return detail; } public List loadCollocationProduct(Long collocationId) { List products = collocationProductRepository .findByCollocationIdAndProductStatus(collocationId, ProductStatus.Up.name()); return products.stream().map(product -> { String tbGoodsId = product.getTbGoodsId(); CollocationProductVo productVo = new CollocationProductVo(); JSONObject jb = goodsDetailApi.loadGoodsDetail(null, tbGoodsId); if (Objects.isNull(jb)) { return null; } productVo.setMainPic(jb.getString("mainPic")); productVo.setMarketingMainPic(jb.getString("marketingMainPic")); productVo.setTitle(jb.getString("dtitle")); productVo.setActualPrice(jb.getString("actualPrice")); productVo.setCouponPrice(jb.getString("couponPrice")); productVo.setProductId(product.getId()); productVo.setGoodsId(tbGoodsId); return productVo; }).filter(Objects::nonNull).collect(toList()); } @Transactional public CollocationVo simpleDetail(Long collocationId) { collocationRepository.increaseViewCount(collocationId); CollocationVo collocationVo = collocationRepository.simpleDetail(collocationId); Long userId = SecurityUtils.getCurrentUserId(); AppreciateRelation appreciateRelation = appreciateRelationService.findAppreciateCollocation(userId, collocationId, DataType.Collocation.name()); if (Objects.nonNull(appreciateRelation)) { collocationVo.setAppreciate(true); } return collocationVo; } @Transactional public void addAppreciate(Long collocationId) { appreciateRelationService.addAppreciate(DataType.Collocation, collocationId); collocationRepository.updateAppreciateCount(collocationId, 1); } @Transactional public void cancelAppreciate(Long collocationId) { appreciateRelationService.cancelAppreciate(DataType.Collocation, collocationId); collocationRepository.updateAppreciateCount(collocationId, -1); } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/service/GoodsService.java ================================================ package com.huaan9527.mall.webapi.service; import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONArray; import com.alibaba.fastjson.JSONObject; import com.huaan9527.mall.webapi.domain.Collection; import com.huaan9527.mall.webapi.domain.enums.DataType; import com.huaan9527.mall.webapi.exception.MsException; import com.huaan9527.mall.webapi.repository.CollectionRepository; import com.huaan9527.mall.webapi.security.SecurityUtils; import com.huaan9527.mall.webapi.service.operation.api.CateApi; import com.huaan9527.mall.webapi.service.operation.api.ExplosiveGoodsListApi; import com.huaan9527.mall.webapi.service.operation.api.GoodsApi; import com.huaan9527.mall.webapi.service.operation.api.GoodsDetailApi; import com.huaan9527.mall.webapi.service.operation.api.HotSearchTop10Api; import com.huaan9527.mall.webapi.service.operation.api.NineGoodsApi; import com.huaan9527.mall.webapi.service.operation.api.PrivilegeApi; import com.huaan9527.mall.webapi.service.operation.api.RankGoodsApi; import com.huaan9527.mall.webapi.service.operation.api.SearchApi; import com.huaan9527.mall.webapi.service.operation.api.SimilarGoodsApi; import com.huaan9527.mall.webapi.service.operation.api.TaobaoSearchApi; import com.huaan9527.mall.webapi.utils.Constants; import com.huaan9527.mall.webapi.vos.ProductVo; import lombok.extern.slf4j.Slf4j; import org.apache.commons.lang3.StringUtils; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.data.redis.core.RedisTemplate; import org.springframework.data.redis.core.ValueOperations; import org.springframework.stereotype.Service; import org.springframework.util.CollectionUtils; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.concurrent.TimeUnit; import java.util.stream.Collectors; @Slf4j @Service public class GoodsService { @Autowired private RedisTemplate redisTemplate; @Autowired private CateApi cateApi; @Autowired private NineGoodsApi nineGoodsApi; @Autowired private RankGoodsApi rankGoodsApi; @Autowired private GoodsApi goodsApi; @Autowired private GoodsDetailApi goodsDetailApi; @Autowired private PrivilegeApi privilegeApi; @Autowired private HotSearchTop10Api hotSearchTop10Api; @Autowired private SearchApi searchApi; @Autowired private TaobaoSearchApi taobaoSearchApi; @Autowired private CollectionRepository collectionRepository; @Autowired private SimilarGoodsApi similarGoodsApi; @Autowired private ExplosiveGoodsListApi explosiveGoodsListApi; public JSONArray loadCate() { return cateApi.loadCate(); } public JSONObject nineGoods(Integer page, Integer size, String nineCid) { return nineGoodsApi.loadNineGoods(page, size, nineCid); } public JSONArray rankGoods(String cid) { return rankGoodsApi.loadRankGoods(cid); } @SuppressWarnings("unchecked") public JSONObject recommendGoods(Integer page, Integer size) { ValueOperations operations = redisTemplate.opsForValue(); String cachedRecommendGoods = operations.get(getRecommendGoodsKey(page)); if (StringUtils.isEmpty(cachedRecommendGoods)) { Map params = new HashMap<>(); params.put("pageId", page.toString()); params.put("pageSize", size.toString()); params.put("PriceCid", "3"); JSONObject data = explosiveGoodsListApi.get(params); operations.set(getRecommendGoodsKey(page), data.toJSONString()); redisTemplate.expire(getRecommendGoodsKey(page), 2, TimeUnit.HOURS); return data; } return JSON.parseObject(cachedRecommendGoods); } private String getRecommendGoodsKey(Integer page) { return Constants.RECOMMEND_GOODS_REDIS_KEY + "_page_" + page; } public JSONObject loadGoodsByCate(String subcid, Integer page, Integer size, Integer sort) { Map params = new HashMap<>(); params.put("subcid", subcid); params.put("pageId", page.toString()); params.put("pageSize", size.toString()); params.put("sort", sort.toString()); return goodsApi.loadGoods(params); } public ProductVo goodsDetail(String id, String goodsId, Boolean checkFavorite) { JSONObject goodsDetail = goodsDetailApi.loadGoodsDetail(id, goodsId); if (goodsDetail == null) { throw new MsException("Goods", "未查询到商品信息"); } ProductVo productVo = buildProductVo(goodsDetail); if (!checkFavorite) { return productVo; } Long currentUserId = SecurityUtils.getCurrentUserId(); if (currentUserId != null) { //是否已收藏 Collection collection = collectionRepository.findByUserIdAndDataIdAndDataType(currentUserId, goodsId, DataType.Product.name()); productVo.setFavorite(collection != null); } return productVo; } private ProductVo buildProductVo(JSONObject goodsDetail) { return ProductVo.builder() .id(goodsDetail.getLong("id")) .title(goodsDetail.getString("title")) .actualPrice(goodsDetail.getDouble("actualPrice")) .originalPrice(goodsDetail.getDouble("originalPrice")) .monthSales(goodsDetail.getInteger("monthSales")) .dailySales(goodsDetail.getInteger("dailySales")) .couponReceiveNum(goodsDetail.getInteger("couponReceiveNum")) .couponPrice(goodsDetail.getDouble("couponPrice")) .couponStartTime(goodsDetail.getString("couponStartTime")) .couponEndTime(goodsDetail.getString("couponEndTime")) .desc(goodsDetail.getString("desc")) .shopName(goodsDetail.getString("shopName")) .descScore(goodsDetail.getDouble("descScore")) .serviceScore(goodsDetail.getDouble("serviceScore")) .shipScore(goodsDetail.getDouble("shipScore")) .mainPic(goodsDetail.getString("mainPic")) .goodsId(goodsDetail.getString("goodsId")) .imgs(goodsDetail.getString("imgs")) .marketingMainPic(goodsDetail.getString("marketingMainPic")) .build(); } public Map getPrivilegeLink(String goodsId) { JSONObject result = privilegeApi.getPrivilegeLink(goodsId); Map map = new HashMap<>(); map.put("tpwd", result.getString("tpwd")); map.put("couponClickUrl", result.getString("couponClickUrl")); map.put("itemUrl", result.getString("itemUrl")); //todo: 审核代码 // map.put("audit", "1"); // map.put("tpwdTxt", "点击复制,在浏览器中打开链接,即可购买"); // map.put("tpwdValue", result.getString("couponClickUrl")); // map.put("tpwdTip", "复制成功"); //正式代码 map.put("audit", "0"); map.put("tpwdTxt", result.getString("longTpwd")); map.put("tpwdValue", result.getString("longTpwd")); map.put("tpwdTip", "口令复制成功,请打开手机淘宝"); return map; } public List getHotSearchTop10() { return hotSearchTop10Api.loadHotSearch(); } public JSONObject search(String keyword, Integer page, Integer sort) { return searchApi.search(keyword, page, sort); } public List search2(String keyword, Integer page, String sort, String hasCoupon) { JSONArray array = taobaoSearchApi.search(keyword, page, sort, hasCoupon); if (CollectionUtils.isEmpty(array)) { return new ArrayList<>(); } return array.stream().map(o -> { JSONObject jb = (JSONObject) o; ProductVo productVo = new ProductVo(); productVo.setGoodsId(jb.getString("item_id")); productVo.setMainPic(jb.getString("pict_url")); productVo.setShopType(jb.getIntValue("user_type")); productVo.setTitle(jb.getString("title")); if (jb.getDoubleValue("coupon_amount") > 0) { productVo.setActualPrice( jb.getBigDecimal("zk_final_price") .subtract(jb.getBigDecimal("coupon_amount")) .doubleValue()); }else{ productVo.setActualPrice(jb.getDoubleValue("zk_final_price")); } productVo.setCouponPrice(jb.getDoubleValue("coupon_amount")); productVo.setMonthSales(jb.getIntValue("volume")); productVo.setCouponReceiveNum(jb.getIntValue("coupon_total_count") - jb.getIntValue("coupon_remain_count")); return productVo; }).collect(Collectors.toList()); } public JSONArray similarGoods(String daTaoKeGoodsId) { return similarGoodsApi.loadSimilarGoods(daTaoKeGoodsId, 20); } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/service/MenuService.java ================================================ package com.huaan9527.mall.webapi.service; import com.huaan9527.mall.webapi.domain.Menu; import com.huaan9527.mall.webapi.repository.MenuRepository; import com.huaan9527.mall.webapi.vos.MenuVo; import lombok.AllArgsConstructor; import lombok.extern.slf4j.Slf4j; import org.springframework.beans.BeanUtils; import org.springframework.stereotype.Service; import java.util.List; import java.util.stream.Collectors; @Slf4j @Service @AllArgsConstructor public class MenuService { private MenuRepository menuRepository; public List list() { List menus = menuRepository.findByStatusOrderBySortAsc(1); return menus.stream().map(menu -> { MenuVo vo = new MenuVo(); BeanUtils.copyProperties(menu, vo); vo.setId(menu.getId()); return vo; }).collect(Collectors.toList()); } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/service/TagService.java ================================================ package com.huaan9527.mall.webapi.service; import com.huaan9527.mall.webapi.domain.Tag; import com.huaan9527.mall.webapi.domain.TagRelation; import com.huaan9527.mall.webapi.repository.TagRelationRepository; import com.huaan9527.mall.webapi.repository.TagRepository; import lombok.AllArgsConstructor; import lombok.extern.slf4j.Slf4j; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; import java.util.Objects; @Slf4j @Service @AllArgsConstructor @Transactional(readOnly = true) public class TagService { private TagRepository tagRepository; private TagRelationRepository tagRelationRepository; @Transactional public void addTag(String dataType, Long dataId, String tagName) { Tag tag = tagRepository.findByName(tagName); if (Objects.isNull(tag)) { tag = new Tag(); tag.setName(tagName); } tagRepository.save(tag); TagRelation tagRelation = new TagRelation(); tagRelation.setDataId(dataId); tagRelation.setDataType(dataType); tagRelation.setTagId(tag.getId()); tagRelationRepository.save(tagRelation); } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/service/UserService.java ================================================ package com.huaan9527.mall.webapi.service; import com.huaan9527.mall.webapi.domain.User; import com.huaan9527.mall.webapi.domain.enums.UserType; import com.huaan9527.mall.webapi.exception.MsException; import com.huaan9527.mall.webapi.repository.UserRepository; import com.huaan9527.mall.webapi.security.SecurityUtils; import com.huaan9527.mall.webapi.sms.SmsProvider; import com.huaan9527.mall.webapi.utils.CodeGenerator; import com.huaan9527.mall.webapi.utils.Constants; import com.huaan9527.mall.webapi.utils.DxyzmUtils; import com.huaan9527.mall.webapi.vos.RegisterVo; import com.huaan9527.mall.webapi.vos.RegisterVo2; import com.huaan9527.mall.webapi.vos.SendEmailCodeVo; import com.huaan9527.mall.webapi.vos.UpdatePasswordVo; import com.huaan9527.mall.webapi.vos.UserVo; import lombok.AllArgsConstructor; import lombok.extern.slf4j.Slf4j; import org.springframework.beans.BeanUtils; import org.springframework.data.redis.core.RedisTemplate; import org.springframework.data.redis.core.ValueOperations; import org.springframework.mail.MailSender; import org.springframework.mail.SimpleMailMessage; import org.springframework.social.connect.Connection; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; import javax.annotation.Resource; import java.util.concurrent.TimeUnit; @Slf4j @Service @AllArgsConstructor @Transactional(readOnly = true) public class UserService { private static final String DEFAULT_PASSWORD = "123456"; private UserRepository userRepository; private MailSender mailSender; private SmsProvider smsProvider; @Resource private RedisTemplate redisTemplate; /** * 注册用户 * * @return */ @Transactional public User signUp(Connection connection) { User user = new User(); user.signUpFromConnection(connection); user.setUserType(UserType.Visitor.name()); userRepository.save(user); return user; } @Transactional public User update(UserVo userVo) { Long currentUserId = SecurityUtils.getCurrentUserId(); User user = new User(); BeanUtils.copyProperties(userVo, user); user.setId(currentUserId); userRepository.updateIgnoreNull(user); return user; } public UserVo getCurrentUser() { Long currentUserId = SecurityUtils.getCurrentUserId(); User user = userRepository.getById(currentUserId); UserVo userVo = new UserVo(); BeanUtils.copyProperties(user, userVo); userVo.setUserId(currentUserId); return userVo; } @Transactional public User initUser(UserVo userVo) { Long currentUserId = SecurityUtils.getCurrentUserId(); User user = new User(); BeanUtils.copyProperties(userVo, user); user.setId(currentUserId); user.setUserType(UserType.Register.name()); userRepository.updateIgnoreNull(user); return user; } public User findByMobile(String mobile) { return userRepository.findByMobile(mobile); } @Transactional public void register(RegisterVo registerVo) { String mobile = registerVo.getMobile(); if (userRepository.countByMobile(mobile) > 0) { throw new MsException("User", "手机号已经存在"); } String email = registerVo.getEmail(); if (userRepository.countByEmail(mobile) > 0) { throw new MsException("User", "邮箱已经存在"); } User user = new User(); user.setUserType(UserType.Register.name()); user.setAccount(mobile); user.setNick(mobile); user.setMobile(mobile); user.setEmail(email); user.setPassword(registerVo.getPassword()); userRepository.save(user); } @Transactional public User register(String mobile) { if (userRepository.countByMobile(mobile) > 0) { throw new MsException("User", "手机号已经存在"); } User user = new User(); user.setUserType(UserType.Register.name()); user.setAccount(mobile); user.setNick(mobile); user.setMobile(mobile); user.setPassword(DEFAULT_PASSWORD); userRepository.save(user); return user; } @Transactional public void register2(RegisterVo2 registerVo) { ValueOperations opsForValue = redisTemplate.opsForValue(); String cachedCode = opsForValue.get("MobileCode_" + registerVo.getMobile()); if (registerVo.getVerifyCode().equals(cachedCode)) { throw new MsException("User", "验证码有误"); } } @SuppressWarnings("unchecked") public void sendEmailCode(SendEmailCodeVo vo) { User user = userRepository.findByMobile(vo.getMobile()); if (!vo.getEmail().equals(user.getEmail())) { throw new MsException("SendMail", "该邮箱与注册预留邮箱不一致"); } String code = CodeGenerator.random(true, 6); ValueOperations ops = redisTemplate.opsForValue(); ops.set(Constants.EMAIL_CODE_CACHE_KEY + user.getMobile(), code, 30, TimeUnit.MINUTES); SimpleMailMessage message = new SimpleMailMessage(); message.setFrom("380303318@qq.com"); message.setTo(user.getEmail()); message.setSubject("邮箱验证码"); message.setText("验证码:" + code); mailSender.send(message); } @Transactional @SuppressWarnings("unchecked") public void updatePassword(UpdatePasswordVo vo) { ValueOperations ops = redisTemplate.opsForValue(); String key = Constants.EMAIL_CODE_CACHE_KEY + vo.getMobile(); Object o = ops.get(key); if (o == null) { throw new MsException("UpdatePassword", "验证码已失效"); } String code = o.toString(); if (!code.equals(vo.getCode())) { throw new MsException("UpdatePassword", "验证码错误"); } User user = userRepository.findByMobile(vo.getMobile()); user.setPassword(vo.getNewPassword()); userRepository.save(user); redisTemplate.delete(key); } public void sendMobileCode(String mobile, String type) { if (userRepository.countByMobile(mobile) > 0) { throw new MsException("User", "手机号已经注册"); } String code = DxyzmUtils.getNonceStr(); log.info("sendMobileCode, mobile:[{}], code:[{}]", mobile, code); ValueOperations opsForValue = redisTemplate.opsForValue(); opsForValue.set("MobileCode_" + mobile, code, 30, TimeUnit.MINUTES); //发送手机验证码 // SendSmsRequest request = new SendSmsRequest(); // smsProvider.sendSms() } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/service/operation/api/AbstractDaTaoKeApi.java ================================================ package com.huaan9527.mall.webapi.service.operation.api; import com.huaan9527.mall.webapi.configuration.properties.DaTaoKeProperties; import com.huaan9527.mall.webapi.utils.Constants; import java.util.TreeMap; public abstract class AbstractDaTaoKeApi { protected DaTaoKeProperties daTaoKeProperties; public AbstractDaTaoKeApi(DaTaoKeProperties daTaoKeProperties) { this.daTaoKeProperties = daTaoKeProperties; } protected TreeMap createParams() { TreeMap params = new TreeMap<>(); params.put("appKey", daTaoKeProperties.getAppKey()); params.put("version", Constants.DA_TAO_KE_API_VERSION); return params; } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/service/operation/api/AlbumApi.java ================================================ package com.huaan9527.mall.webapi.service.operation.api; import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONArray; import com.alibaba.fastjson.JSONObject; import com.dtk.main.ApiClient; import com.huaan9527.mall.webapi.configuration.properties.DaTaoKeProperties; import lombok.extern.slf4j.Slf4j; import org.springframework.stereotype.Component; import java.util.TreeMap; @Slf4j @Component public class AlbumApi extends AbstractDaTaoKeApi { private static final String url = "https://openapi.dataoke.com/api/goods/topic/catalogue"; public AlbumApi(DaTaoKeProperties daTaoKeProperties) { super(daTaoKeProperties); } public JSONArray loadAlbum() { TreeMap params = createParams(); String body = ApiClient.sendReq(url, daTaoKeProperties.getAppSecret(), params); JSONObject result = JSON.parseObject(body); if (result.getInteger("code") != 0) { log.error("查询专辑失败, body:{}", body); return null; } return result.getJSONArray("data"); } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/service/operation/api/AlbumGoodsApi.java ================================================ package com.huaan9527.mall.webapi.service.operation.api; import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONArray; import com.alibaba.fastjson.JSONObject; import com.dtk.main.ApiClient; import com.huaan9527.mall.webapi.configuration.properties.DaTaoKeProperties; import lombok.extern.slf4j.Slf4j; import org.springframework.stereotype.Component; import java.util.TreeMap; @Slf4j @Component public class AlbumGoodsApi extends AbstractDaTaoKeApi { private static final String url = "https://openapi.dataoke.com/api/goods/topic/goods-list"; public AlbumGoodsApi(DaTaoKeProperties daTaoKeProperties) { super(daTaoKeProperties); } public JSONArray loadAlbumGoods(Integer page, Integer size, String topicId) { TreeMap params = createParams(); params.put("pageId", page.toString()); params.put("pageSize", size.toString()); params.put("topicId", topicId); String body = ApiClient.sendReq(url, daTaoKeProperties.getAppSecret(), params); JSONObject result = JSON.parseObject(body); if (result.getInteger("code") != 0) { log.error("查询专辑失败, body:{}", body); return null; } return result.getJSONArray("data"); } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/service/operation/api/BrandApi.java ================================================ package com.huaan9527.mall.webapi.service.operation.api; import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONArray; import com.alibaba.fastjson.JSONObject; import com.dtk.main.ApiClient; import com.huaan9527.mall.webapi.configuration.properties.DaTaoKeProperties; import lombok.extern.slf4j.Slf4j; import org.springframework.stereotype.Component; import java.util.TreeMap; @Slf4j @Component public class BrandApi extends AbstractDaTaoKeApi { private static final String url = "https://openapi.dataoke.com/api/tb-service/get-brand-list"; public BrandApi(DaTaoKeProperties daTaoKeProperties) { super(daTaoKeProperties); } public JSONArray loadBrand(Integer page, Integer size) { TreeMap params = createParams(); params.put("pageId", page.toString()); params.put("pageSize", size.toString()); String body = ApiClient.sendReq(url, daTaoKeProperties.getAppSecret(), params); JSONObject result = JSON.parseObject(body); if (result.getInteger("code") != 0) { log.error("查询品牌失败, body:{}", body); return null; } return result.getJSONArray("data"); } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/service/operation/api/CateApi.java ================================================ package com.huaan9527.mall.webapi.service.operation.api; import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONArray; import com.alibaba.fastjson.JSONObject; import com.dtk.main.ApiClient; import com.huaan9527.mall.webapi.configuration.properties.DaTaoKeProperties; import lombok.extern.slf4j.Slf4j; import org.springframework.stereotype.Component; import java.util.TreeMap; @Slf4j @Component public class CateApi extends AbstractDaTaoKeApi { private static final String url = "https://openapi.dataoke.com/api/category/get-super-category"; public CateApi(DaTaoKeProperties daTaoKeProperties) { super(daTaoKeProperties); } public JSONArray loadCate() { TreeMap params = createParams(); String body = ApiClient.sendReq(url, daTaoKeProperties.getAppSecret(), params); JSONObject result = JSON.parseObject(body); if (result.getInteger("code") != 0) { log.error("查询分类失败, body:{}", body); return null; } return result.getJSONArray("data"); } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/service/operation/api/ExplosiveGoodsListApi.java ================================================ package com.huaan9527.mall.webapi.service.operation.api; import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONObject; import com.dtk.main.ApiClient; import com.huaan9527.mall.webapi.configuration.properties.DaTaoKeProperties; import lombok.extern.slf4j.Slf4j; import org.springframework.stereotype.Component; import java.util.Map; import java.util.TreeMap; @Slf4j @Component public class ExplosiveGoodsListApi extends AbstractDaTaoKeApi { private static final String url = "https://openapi.dataoke.com/api/goods/explosive-goods-list"; public ExplosiveGoodsListApi(DaTaoKeProperties daTaoKeProperties) { super(daTaoKeProperties); } public JSONObject get(Map params) { TreeMap params2 = createParams(); params2.putAll(params); String body = ApiClient.sendReq(url, daTaoKeProperties.getAppSecret(), params2); JSONObject result = JSON.parseObject(body); if (result.getInteger("code") != 0) { log.error("查询推荐商品失败,params:{}, body:{}", params, body); return null; } return result.getJSONObject("data"); } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/service/operation/api/GoodsApi.java ================================================ package com.huaan9527.mall.webapi.service.operation.api; import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONObject; import com.dtk.main.ApiClient; import com.huaan9527.mall.webapi.configuration.properties.DaTaoKeProperties; import lombok.extern.slf4j.Slf4j; import org.springframework.stereotype.Component; import java.util.Map; import java.util.TreeMap; @Slf4j @Component public class GoodsApi extends AbstractDaTaoKeApi { private static final String url = "https://openapi.dataoke.com/api/goods/get-goods-list"; public GoodsApi(DaTaoKeProperties daTaoKeProperties) { super(daTaoKeProperties); } public JSONObject loadGoods(Map params) { TreeMap params2 = createParams(); params2.putAll(params); String body = ApiClient.sendReq(url, daTaoKeProperties.getAppSecret(), params2); JSONObject result = JSON.parseObject(body); if (result.getInteger("code") != 0) { log.error("查询分类失败, body:{}", body); return null; } return result.getJSONObject("data"); } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/service/operation/api/GoodsDetailApi.java ================================================ package com.huaan9527.mall.webapi.service.operation.api; import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONObject; import com.dtk.main.ApiClient; import com.huaan9527.mall.webapi.configuration.properties.DaTaoKeProperties; import lombok.extern.slf4j.Slf4j; import org.apache.commons.lang3.StringUtils; import org.springframework.stereotype.Component; import java.util.TreeMap; @Slf4j @Component public class GoodsDetailApi extends AbstractDaTaoKeApi { private static final String url = "https://openapi.dataoke.com/api/goods/get-goods-details"; public GoodsDetailApi(DaTaoKeProperties daTaoKeProperties) { super(daTaoKeProperties); } public JSONObject loadGoodsDetail(String id, String tbGoodsId) { TreeMap params = createParams(); if (StringUtils.isNotEmpty(id)) { params.put("id", id); } if (StringUtils.isNotEmpty(tbGoodsId)) { params.put("goodsId", tbGoodsId); } String body = ApiClient.sendReq(url, daTaoKeProperties.getAppSecret(), params); JSONObject result = JSON.parseObject(body); if (result.getInteger("code") != 0) { log.error("查询商品详情失败, body:{}", body); return null; } return result.getJSONObject("data"); } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/service/operation/api/HotSearchTop10Api.java ================================================ package com.huaan9527.mall.webapi.service.operation.api; import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONArray; import com.alibaba.fastjson.JSONObject; import com.dtk.main.ApiClient; import com.huaan9527.mall.webapi.configuration.properties.DaTaoKeProperties; import lombok.extern.slf4j.Slf4j; import org.springframework.stereotype.Component; import java.util.List; import java.util.TreeMap; @Slf4j @Component public class HotSearchTop10Api extends AbstractDaTaoKeApi { private static final String url = "https://openapi.dataoke.com/api/category/get-top100"; public HotSearchTop10Api(DaTaoKeProperties daTaoKeProperties) { super(daTaoKeProperties); } public List loadHotSearch() { TreeMap params = createParams(); String body = ApiClient.sendReq(url, daTaoKeProperties.getAppSecret(), params); JSONObject result = JSON.parseObject(body); if (result.getInteger("code") != 0) { log.error("热搜, body:{}", body); return null; } JSONArray array = result.getJSONObject("data").getJSONArray("hotWords"); return array.subList(0, 10); } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/service/operation/api/NineGoodsApi.java ================================================ package com.huaan9527.mall.webapi.service.operation.api; import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONObject; import com.dtk.main.ApiClient; import com.huaan9527.mall.webapi.configuration.properties.DaTaoKeProperties; import lombok.extern.slf4j.Slf4j; import org.springframework.stereotype.Component; import java.util.TreeMap; @Slf4j @Component public class NineGoodsApi extends AbstractDaTaoKeApi { private static final String NINE_YUAN_NINE_URL = "https://openapi.dataoke.com/api/goods/nine/op-goods-list"; public NineGoodsApi(DaTaoKeProperties daTaoKeProperties) { super(daTaoKeProperties); } public JSONObject loadNineGoods(Integer page, Integer size, String nineCid) { TreeMap params = createParams(); params.put("pageId", page.toString()); params.put("pageSize", size.toString()); params.put("nineCid", nineCid); String body = ApiClient.sendReq(NINE_YUAN_NINE_URL, daTaoKeProperties.getAppSecret(), params); JSONObject result = JSON.parseObject(body); if (result.getInteger("code") != 0) { log.error("查询9.9商品失败, body:{}", body); return null; } return result.getJSONObject("data"); } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/service/operation/api/PrivilegeApi.java ================================================ package com.huaan9527.mall.webapi.service.operation.api; import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONObject; import com.dtk.main.ApiClient; import com.huaan9527.mall.webapi.configuration.properties.DaTaoKeProperties; import lombok.extern.slf4j.Slf4j; import org.springframework.stereotype.Component; import java.util.TreeMap; @Slf4j @Component public class PrivilegeApi extends AbstractDaTaoKeApi { private static final String url = "https://openapi.dataoke.com/api/tb-service/get-privilege-link"; private static final String pid = "mm_55354930_1527000006_110255950161"; public PrivilegeApi(DaTaoKeProperties daTaoKeProperties) { super(daTaoKeProperties); } public JSONObject getPrivilegeLink(String goodsId) { TreeMap params = createParams(); params.put("pid", pid); params.put("goodsId", goodsId); String body = ApiClient.sendReq(url, daTaoKeProperties.getAppSecret(), params); JSONObject result = JSON.parseObject(body); if (result.getInteger("code") != 0) { log.error("转换链接失败, body:{}", body); return null; } return result.getJSONObject("data"); } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/service/operation/api/RankGoodsApi.java ================================================ package com.huaan9527.mall.webapi.service.operation.api; import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONArray; import com.alibaba.fastjson.JSONObject; import com.dtk.main.ApiClient; import com.huaan9527.mall.webapi.configuration.properties.DaTaoKeProperties; import lombok.extern.slf4j.Slf4j; import org.springframework.stereotype.Component; import java.util.TreeMap; @Slf4j @Component public class RankGoodsApi extends AbstractDaTaoKeApi { private static final String NINE_YUAN_NINE_URL = "https://openapi.dataoke.com/api/goods/get-ranking-list"; public RankGoodsApi(DaTaoKeProperties daTaoKeProperties) { super(daTaoKeProperties); } public JSONArray loadRankGoods(String cid) { TreeMap params = createParams(); params.put("rankType", "1"); params.put("cid", cid); String body = ApiClient.sendReq(NINE_YUAN_NINE_URL, daTaoKeProperties.getAppSecret(), params); JSONObject result = JSON.parseObject(body); if (result.getInteger("code") != 0) { log.error("查询榜单商品失败, body:{}", body); return null; } return result.getJSONArray("data"); } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/service/operation/api/SearchApi.java ================================================ package com.huaan9527.mall.webapi.service.operation.api; import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONObject; import com.dtk.main.ApiClient; import com.huaan9527.mall.webapi.configuration.properties.DaTaoKeProperties; import lombok.extern.slf4j.Slf4j; import org.springframework.stereotype.Component; import java.util.TreeMap; @Slf4j @Component public class SearchApi extends AbstractDaTaoKeApi { private static final String url = "https://openapi.dataoke.com/api/goods/get-dtk-search-goods"; public SearchApi(DaTaoKeProperties daTaoKeProperties) { super(daTaoKeProperties); } public JSONObject search(String keyword, Integer page, Integer sort) { TreeMap params = createParams(); params.put("keyWords", keyword); params.put("pageId", page.toString()); params.put("pageSize", "50"); params.put("sort", sort.toString()); String body = ApiClient.sendReq(url, daTaoKeProperties.getAppSecret(), params); JSONObject result = JSON.parseObject(body); if (result.getInteger("code") != 0) { log.error("SearchApi, body:{}", body); return null; } return result.getJSONObject("data"); } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/service/operation/api/SimilarGoodsApi.java ================================================ package com.huaan9527.mall.webapi.service.operation.api; import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONArray; import com.alibaba.fastjson.JSONObject; import com.dtk.main.ApiClient; import com.huaan9527.mall.webapi.configuration.properties.DaTaoKeProperties; import lombok.extern.slf4j.Slf4j; import org.springframework.stereotype.Component; import java.util.TreeMap; @Slf4j @Component public class SimilarGoodsApi extends AbstractDaTaoKeApi { private static final String url = "https://openapi.dataoke.com/api/goods/list-similer-goods-by-open"; public SimilarGoodsApi(DaTaoKeProperties daTaoKeProperties) { super(daTaoKeProperties); } public JSONArray loadSimilarGoods(String daTaoKeGoodsId, Integer size) { TreeMap params = createParams(); params.put("id", daTaoKeGoodsId); params.put("size", size.toString()); String body = ApiClient.sendReq(url, daTaoKeProperties.getAppSecret(), params); JSONObject result = JSON.parseObject(body); if (result.getInteger("code") != 0) { log.error("查询相似商品失败, body:{}", body); return null; } return result.getJSONArray("data"); } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/service/operation/api/SupperSearchApi.java ================================================ package com.huaan9527.mall.webapi.service.operation.api; import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONObject; import com.dtk.main.ApiClient; import com.huaan9527.mall.webapi.configuration.properties.DaTaoKeProperties; import lombok.extern.slf4j.Slf4j; import org.springframework.stereotype.Component; import java.util.TreeMap; @Slf4j @Component public class SupperSearchApi extends AbstractDaTaoKeApi { private static final String url = "https://openapi.dataoke.com/api/goods/list-super-goods"; public SupperSearchApi(DaTaoKeProperties daTaoKeProperties) { super(daTaoKeProperties); } public JSONObject search(String keyword, Integer page, Integer sort) { TreeMap params = createParams(); params.put("type", "0"); params.put("keyWords", keyword); params.put("pageId", page.toString()); params.put("pageSize", "50"); params.put("sort", sort.toString()); String body = ApiClient.sendReq(url, daTaoKeProperties.getAppSecret(), params); JSONObject result = JSON.parseObject(body); if (result.getInteger("code") != 0) { log.error("SearchApi, body:{}", body); return null; } return result.getJSONObject("data"); } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/service/operation/api/TaobaoSearchApi.java ================================================ package com.huaan9527.mall.webapi.service.operation.api; import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONArray; import com.alibaba.fastjson.JSONObject; import com.dtk.main.ApiClient; import com.huaan9527.mall.webapi.configuration.properties.DaTaoKeProperties; import lombok.extern.slf4j.Slf4j; import org.springframework.stereotype.Component; import java.util.TreeMap; @Slf4j @Component public class TaobaoSearchApi extends AbstractDaTaoKeApi { private static final String url = "https://openapi.dataoke.com/api/tb-service/get-tb-service"; public TaobaoSearchApi(DaTaoKeProperties daTaoKeProperties) { super(daTaoKeProperties); } public JSONArray search(String keyword, Integer page, String sort, String hasCoupon) { TreeMap params = createParams(); params.put("pageNo", page.toString()); params.put("pageSize", "50"); params.put("keyWords", keyword); params.put("sort", sort); params.put("hasCoupon", hasCoupon); String body = ApiClient.sendReq(url, daTaoKeProperties.getAppSecret(), params); JSONObject result = JSON.parseObject(body); if (result.getInteger("code") != 0) { log.error("TaobaoSearchApi, body:{},params:{}", body, params); return null; } return result.getJSONArray("data"); } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/sms/AbstractSmsProvider.java ================================================ package com.huaan9527.mall.webapi.sms; import com.huaan9527.mall.webapi.exception.MsException; import org.springframework.util.CollectionUtils; import org.springframework.util.StringUtils; public abstract class AbstractSmsProvider implements SmsProvider { @Override public SendSmsResponse sendSms(SendSmsRequest request) { validateRequest(request); return executeSendSms(request); } protected abstract SendSmsResponse executeSendSms(SendSmsRequest request); private void validateRequest(SendSmsRequest request) { if (CollectionUtils.isEmpty(request.getPhones())) { throw new MsException("sms", "手机号不能为空"); } if (StringUtils.isEmpty(request.getTemplateId())) { throw new MsException("sms", "模板id不能为空"); } } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/sms/SendSmsRequest.java ================================================ package com.huaan9527.mall.webapi.sms; import lombok.Getter; import lombok.Setter; import java.util.List; import java.util.Map; @Getter @Setter public class SendSmsRequest { private String templateId; private List phones; private Map params; } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/sms/SendSmsResponse.java ================================================ package com.huaan9527.mall.webapi.sms; import lombok.Getter; import lombok.Setter; @Getter @Setter public class SendSmsResponse { private int code; private String message; public SendSmsResponse(int code, String message) { this.code = code; this.message = message; } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/sms/SmsProvider.java ================================================ package com.huaan9527.mall.webapi.sms; public interface SmsProvider { SendSmsResponse sendSms(SendSmsRequest request); } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/sms/SmsProviders.java ================================================ package com.huaan9527.mall.webapi.sms; import org.springframework.stereotype.Component; @Component public class SmsProviders { } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/sms/TencentSmsProviderAdapter.java ================================================ package com.huaan9527.mall.webapi.sms; import com.alibaba.fastjson.JSON; import com.huaan9527.mall.webapi.configuration.properties.TencentSmsProperties; import com.tencentcloudapi.common.Credential; import com.tencentcloudapi.common.exception.TencentCloudSDKException; import com.tencentcloudapi.common.profile.ClientProfile; import com.tencentcloudapi.common.profile.HttpProfile; import com.tencentcloudapi.sms.v20190711.SmsClient; import lombok.extern.slf4j.Slf4j; import org.springframework.beans.factory.InitializingBean; import org.springframework.stereotype.Component; import java.util.ArrayList; import java.util.List; @Slf4j @Component public class TencentSmsProviderAdapter extends AbstractSmsProvider implements InitializingBean { private TencentSmsProperties properties; private SmsClient smsClient; public TencentSmsProviderAdapter(TencentSmsProperties properties) { this.properties = properties; } @Override public void afterPropertiesSet() throws Exception { Credential cred = new Credential(properties.getSecretId(), properties.getSecretKey()); HttpProfile httpProfile = new HttpProfile(); httpProfile.setEndpoint("sms.tencentcloudapi.com"); ClientProfile clientProfile = new ClientProfile(); clientProfile.setHttpProfile(httpProfile); this.smsClient = new SmsClient(cred, properties.getRegion(), clientProfile); } @Override protected SendSmsResponse executeSendSms(SendSmsRequest request) { try { com.tencentcloudapi.sms.v20190711.models.SendSmsRequest req = buildTencentSendSmsRequest(request); log.info("tencent send sms request:{}", JSON.toJSONString(req)); com.tencentcloudapi.sms.v20190711.models.SendSmsResponse response = smsClient.SendSms(req); log.info("tencent send sms response:{}", JSON.toJSONString(response)); return new SendSmsResponse(200, "发送短信成功"); } catch (TencentCloudSDKException e) { log.error("发送短信失败:{}", e.getMessage(), e); return new SendSmsResponse(500, "发送短信失败"); } } private com.tencentcloudapi.sms.v20190711.models.SendSmsRequest buildTencentSendSmsRequest(SendSmsRequest request) { com.tencentcloudapi.sms.v20190711.models.SendSmsRequest req = new com.tencentcloudapi.sms.v20190711.models.SendSmsRequest(); List phones = new ArrayList<>(); request.getPhones().forEach(phone -> { if (phone.startsWith("+")) { phones.add(phone); } else { phones.add("+86" + phone); } }); req.setPhoneNumberSet(phones.toArray(new String[0])); req.setTemplateID(request.getTemplateId()); req.setSmsSdkAppid(properties.getAppId()); req.setTemplateParamSet(request.getParams().values().toArray(new String[0])); req.setSign("小忆智库"); return req; } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/utils/CodeGenerator.java ================================================ package com.huaan9527.mall.webapi.utils; /** * */ public class CodeGenerator { /** * 创建指定数量的随机字符串 * * @param numberFlag 是否是数字 * @param length * @return */ public static String random(boolean numberFlag, int length) { StringBuilder retStr; String strTable = numberFlag ? "1234567890" : "1234567890abcdefghijkmnpqrstuvwxyz"; int len = strTable.length(); boolean bDone = true; do { retStr = new StringBuilder(); int count = 0; for (int i = 0; i < length; i++) { double dblR = Math.random() * len; int intR = (int) Math.floor(dblR); char c = strTable.charAt(intR); if (('0' <= c) && (c <= '9')) { count++; } retStr.append(strTable.charAt(intR)); } if (count >= 2) { bDone = false; } } while (bDone); return retStr.toString(); } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/utils/Constants.java ================================================ package com.huaan9527.mall.webapi.utils; public class Constants { public static final int LOGIN_FAILURE_CODE = 7001; public static final int BIZ_ERROR_CODE = 5001; public static final int UNLOGIN_CODE = 7002; public static final String DA_TAO_KE_API_VERSION = "v2.1.2"; public static final String EMAIL_CODE_CACHE_KEY = "email_code_"; public static final String RECOMMEND_GOODS_REDIS_KEY = "recommend_goods"; } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/utils/DateUtils.java ================================================ package com.huaan9527.mall.webapi.utils; import java.util.Calendar; import java.util.Date; public class DateUtils { /** * 获取今天开始时间 */ public static Date getStartTime() { Calendar todayStart = Calendar.getInstance(); todayStart.set(Calendar.HOUR, 0); todayStart.set(Calendar.MINUTE, 0); todayStart.set(Calendar.SECOND, 0); todayStart.set(Calendar.MILLISECOND, 0); return todayStart.getTime(); } /** * 获取今天结束时间 */ public static Date getEndTime() { Calendar todayEnd = Calendar.getInstance(); todayEnd.set(Calendar.HOUR, 23); todayEnd.set(Calendar.MINUTE, 59); todayEnd.set(Calendar.SECOND, 59); todayEnd.set(Calendar.MILLISECOND, 999); return todayEnd.getTime(); } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/utils/DxyzmUtils.java ================================================ package com.huaan9527.mall.webapi.utils; import java.security.SecureRandom; import java.util.Random; public class DxyzmUtils { private static final String SYMBOLS = "0123456789"; // 数字 // 字符串 // private static final String SYMBOLS = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"; private static final Random RANDOM = new SecureRandom(); /** * 获取长度为 6 的随机数字 * @return 随机数字 */ public static String getNonceStr() { // 如果需要4位,那 new char[4] 即可,其他位数同理可得 char[] nonceChars = new char[6]; for (int index = 0; index < nonceChars.length; ++index) { nonceChars[index] = SYMBOLS.charAt(RANDOM.nextInt(SYMBOLS.length())); } return new String(nonceChars); } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/utils/HttpsClientUtil.java ================================================ package com.huaan9527.mall.webapi.utils; import org.apache.http.HttpEntity; import org.apache.http.client.config.RequestConfig; import org.apache.http.client.methods.CloseableHttpResponse; import org.apache.http.client.methods.HttpPost; import org.apache.http.conn.ssl.SSLConnectionSocketFactory; import org.apache.http.entity.StringEntity; import org.apache.http.impl.client.CloseableHttpClient; import org.apache.http.impl.client.HttpClientBuilder; import org.apache.http.ssl.SSLContextBuilder; import org.apache.http.util.EntityUtils; import javax.net.ssl.SSLContext; public class HttpsClientUtil { private static CloseableHttpClient httpClient; static { try { SSLContext sslContext = SSLContextBuilder.create().useProtocol(SSLConnectionSocketFactory.SSL).loadTrustMaterial((x, y) -> true).build(); RequestConfig config = RequestConfig.custom().setConnectTimeout(5000).setSocketTimeout(5000).build(); httpClient = HttpClientBuilder.create().setDefaultRequestConfig(config).setSSLContext(sslContext).setSSLHostnameVerifier((x, y) -> true).build(); } catch (Exception e) { e.printStackTrace(); } } public static String doPost(String url, String jsonString) { try { HttpPost httpPost = new HttpPost(url); StringEntity stringEntity = new StringEntity(jsonString, "utf-8"); stringEntity.setContentType("application/json"); httpPost.setEntity(stringEntity); CloseableHttpResponse response = httpClient.execute(httpPost); int statusCode = response.getStatusLine().getStatusCode(); if (statusCode != 200) { httpPost.abort(); throw new RuntimeException("HttpClient,error status code :" + statusCode); } HttpEntity entity = response.getEntity(); String result = null; if (entity != null) { result = EntityUtils.toString(entity, "utf-8"); } EntityUtils.consume(entity); response.close(); return result; } catch (Exception e) { e.printStackTrace(); } return null; } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/utils/MD5Util.java ================================================ package com.huaan9527.mall.webapi.utils; import org.springframework.util.DigestUtils; public class MD5Util { /** * 生成md5 * @return */ public static String getMD5(String str) { return DigestUtils.md5DigestAsHex(str.getBytes()); } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/utils/PageResponse.java ================================================ package com.huaan9527.mall.webapi.utils; import lombok.AllArgsConstructor; import lombok.Getter; import lombok.Setter; import java.util.List; @Getter @Setter @AllArgsConstructor public class PageResponse { private int page; private int size; private long total; private List content; public int getTotalPages() { return this.getSize() == 0 ? 1 : (int) Math.ceil((double) this.total / (double) this.getSize()); } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/utils/ResponseEntity.java ================================================ package com.huaan9527.mall.webapi.utils; import org.springframework.http.HttpStatus; import org.springframework.validation.BindingResult; import org.springframework.validation.FieldError; import java.util.HashMap; import java.util.List; /** * Created by silentwu on 2015/7/3. */ public class ResponseEntity extends HashMap { public static final String SUCCESSFUL_KEY = "success"; public static final String RESPONSE_CODE_KEY = "responseCode"; public static final String MESSAGE_KEY = "message"; public static final String DEFAULT_DATA_KEY = "data"; private static String dataKey = DEFAULT_DATA_KEY; public ResponseEntity() { } public ResponseEntity(String dataKey) { this.dataKey = dataKey; } public Object getData() { return this.get(this.dataKey); } @SuppressWarnings("unchecked") public T setData(Object data) { this.put(this.dataKey, data); return (T) this; } public static ResponseEntity success(String message) { ResponseEntity responseEntity = new ResponseEntity(); responseEntity.put(SUCCESSFUL_KEY, true); responseEntity.put(RESPONSE_CODE_KEY, HttpStatus.OK.value()); responseEntity.put(MESSAGE_KEY, message); return responseEntity; } public static ResponseEntity success() { ResponseEntity responseEntity = new ResponseEntity(); responseEntity.put(SUCCESSFUL_KEY, true); responseEntity.put(RESPONSE_CODE_KEY, HttpStatus.OK.value()); responseEntity.put(MESSAGE_KEY, "操作成功"); return responseEntity; } public static ResponseEntity success(Object data) { ResponseEntity responseEntity = new ResponseEntity(); responseEntity.put(SUCCESSFUL_KEY, true); responseEntity.put(RESPONSE_CODE_KEY, HttpStatus.OK.value()); responseEntity.put(MESSAGE_KEY, "操作成功"); responseEntity.put(dataKey, data); return responseEntity; } public static ResponseEntity success(String message, Object data) { ResponseEntity responseEntity = new ResponseEntity(); responseEntity.put(SUCCESSFUL_KEY, true); responseEntity.put(RESPONSE_CODE_KEY, HttpStatus.OK.value()); responseEntity.put(MESSAGE_KEY, message); responseEntity.put(dataKey, data); return responseEntity; } public static ResponseEntity success(int responseCode, String message) { ResponseEntity responseEntity = new ResponseEntity(); responseEntity.put(SUCCESSFUL_KEY, true); responseEntity.put(RESPONSE_CODE_KEY, responseCode); responseEntity.put(MESSAGE_KEY, message); return responseEntity; } public static ResponseEntity success(int responseCode, String message, Object data) { ResponseEntity responseEntity = new ResponseEntity(); responseEntity.put(SUCCESSFUL_KEY, true); responseEntity.put(RESPONSE_CODE_KEY, responseCode); responseEntity.put(MESSAGE_KEY, message); responseEntity.put(dataKey, data); return responseEntity; } public static ResponseEntity failure(String message) { ResponseEntity responseEntity = new ResponseEntity(); responseEntity.put(SUCCESSFUL_KEY, false); responseEntity.put(RESPONSE_CODE_KEY, HttpStatus.SERVICE_UNAVAILABLE.value()); responseEntity.put(MESSAGE_KEY, message); return responseEntity; } public static ResponseEntity failure(int responseCode, String message) { ResponseEntity responseEntity = new ResponseEntity(); responseEntity.put(SUCCESSFUL_KEY, false); responseEntity.put(RESPONSE_CODE_KEY, responseCode); responseEntity.put(MESSAGE_KEY, message); return responseEntity; } public static ResponseEntity failure(BindingResult result) { ResponseEntity responseEntity = new ResponseEntity(); StringBuilder message = new StringBuilder(); final List fieldErrors = result.getFieldErrors(); for (FieldError fieldError : fieldErrors) { final String defaultMessage = fieldError.getDefaultMessage(); message.append(defaultMessage).append(";"); } if (message.length() > 0) { message.deleteCharAt(message.length() - 1); } responseEntity.put(SUCCESSFUL_KEY, false); responseEntity.put(RESPONSE_CODE_KEY, HttpStatus.SERVICE_UNAVAILABLE.value()); responseEntity.put(MESSAGE_KEY, message); return responseEntity; } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/utils/URLUtil.java ================================================ package com.huaan9527.mall.webapi.utils; import java.util.HashMap; import java.util.Map; public class URLUtil { public static class UrlEntity { /** * 基础url */ public String baseUrl; /** * url参数 */ public Map params; } /** * 解析url * * @param url * @return */ public static UrlEntity parse(String url) { UrlEntity entity = new UrlEntity(); if (url == null) { return entity; } url = url.trim(); if (url.equals("")) { return entity; } String[] urlParts = url.split("\\?"); entity.baseUrl = urlParts[0]; //没有参数 if (urlParts.length == 1) { return entity; } //有参数 String[] params = urlParts[1].split("&"); entity.params = new HashMap<>(); for (String param : params) { String[] keyValue = param.split("="); entity.params.put(keyValue[0], keyValue[1]); } return entity; } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/utils/WebUtils.java ================================================ package com.huaan9527.mall.webapi.utils; import com.alibaba.fastjson.JSON; import org.apache.commons.lang3.StringUtils; import javax.servlet.ServletResponse; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import java.io.IOException; import java.io.PrintWriter; import java.io.UnsupportedEncodingException; import java.net.URLEncoder; public abstract class WebUtils { private WebUtils() { } /** *

转为unicode 编码

* * @param string * @return unicodeString */ public static String encode(String str) { String prifix = "\\u"; StringBuffer unicode = new StringBuffer(); for (int i = 0; i < str.length(); i++) { char c = str.charAt(i); String code = prifix + format(Integer.toHexString(c)); unicode.append(code); } return unicode.toString(); } /** *

unicode 解码

* * @param unicode * @return originalString */ public static String decode(String unicode) { StringBuffer str = new StringBuffer(); String[] hex = unicode.split("\\\\u"); for (int i = 1; i < hex.length; i++) { int data = Integer.parseInt(hex[i], 16); str.append((char) data); } return str.length() > 0 ? str.toString() : unicode; } /** * 为长度不足4位的unicode 值补零 * * @param str * @return */ private static String format(String str) { for (int i = 0, l = 4 - str.length(); i < l; i++) str = "0" + str; return str; } public static String clientIp(HttpServletRequest request) { if (request == null) { return "unknown"; } else { String ip = request.getHeader("x-forwarded-for"); if (ip == null || ip.length() == 0 || "unknown".equalsIgnoreCase(ip)) { ip = request.getHeader("Proxy-Client-IP"); } if (ip == null || ip.length() == 0 || "unknown".equalsIgnoreCase(ip)) { ip = request.getHeader("X-Forwarded-For"); } if (ip == null || ip.length() == 0 || "unknown".equalsIgnoreCase(ip)) { ip = request.getHeader("WL-Proxy-Client-IP"); } if (ip == null || ip.length() == 0 || "unknown".equalsIgnoreCase(ip)) { ip = request.getHeader("X-Real-IP"); } if (ip == null || ip.length() == 0 || "unknown".equalsIgnoreCase(ip)) { ip = request.getRemoteAddr(); } return ip; } } public static boolean isMobileBrowser(HttpServletRequest request) { String userAgent = request.getHeader("user-agent"); if (!StringUtils.isNotEmpty(userAgent)) { return false; } else { String lowerAgent = userAgent.toLowerCase(); return lowerAgent.contains("mobile") || lowerAgent.contains("android") || lowerAgent.contains("ios"); } } public static String encodeChineseDownloadFileName(HttpServletRequest request, String pFileName) { String agent = request.getHeader("USER-AGENT"); try { if (null != agent && agent.contains("MSIE")) { pFileName = URLEncoder.encode(pFileName, "utf-8"); } else { pFileName = new String(pFileName.getBytes("utf-8"), "iso8859-1"); } } catch (UnsupportedEncodingException var4) { var4.printStackTrace(); } return pFileName; } public static boolean isAjaxRequest(HttpServletRequest request) { return "XMLHttpRequest".equalsIgnoreCase(request.getHeader("X-Requested-With")); } public static void writeJSON(ServletResponse response, Object data) { HttpServletResponse resp = (HttpServletResponse) response; resp.setCharacterEncoding("UTF-8"); resp.setContentType("application/json; charset=utf-8"); PrintWriter pw = null; try { pw = resp.getWriter(); pw.write(JSON.toJSONString(data)); pw.close(); } catch (IOException var5) { var5.printStackTrace(); } } public static String getServletBasePath(HttpServletRequest req) { StringBuilder baseUrl = new StringBuilder(); String scheme = req.getScheme(); int port = req.getServerPort(); baseUrl.append(scheme); baseUrl.append("://"); baseUrl.append(req.getServerName()); if (scheme.equals("http") && port != 80 || scheme.equals("https") && port != 443) { baseUrl.append(':'); baseUrl.append(req.getServerPort()); baseUrl.append(req.getContextPath()); } return baseUrl.toString(); } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/vos/CarouselVo.java ================================================ package com.huaan9527.mall.webapi.vos; import lombok.Getter; import lombok.NoArgsConstructor; import lombok.Setter; import java.io.Serializable; @Getter @Setter @NoArgsConstructor public class CarouselVo implements Serializable { private Long id; private String title; private String image; private String backgroundColor; private String url; private String urlType; private int top; } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/vos/CollectionVo.java ================================================ package com.huaan9527.mall.webapi.vos; import com.huaan9527.mall.webapi.domain.Collection; import com.huaan9527.mall.webapi.domain.enums.DataType; import lombok.Getter; import lombok.NoArgsConstructor; import lombok.Setter; import org.springframework.beans.BeanUtils; import java.io.Serializable; @Getter @Setter @NoArgsConstructor public class CollectionVo implements Serializable { private Long collectionId; private Long dataId; //淘宝商品id 或者 穿搭id private String dataType = DataType.Product.name(); private Object data; public CollectionVo(Collection collection) { BeanUtils.copyProperties(collection, this); this.collectionId = collection.getId(); } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/vos/CollocationDetailVo.java ================================================ package com.huaan9527.mall.webapi.vos; import lombok.AllArgsConstructor; import lombok.Builder; import lombok.Data; import lombok.NoArgsConstructor; import org.ocpsoft.prettytime.PrettyTime; import org.springframework.util.StringUtils; import java.io.Serializable; import java.util.ArrayList; import java.util.Arrays; import java.util.Date; import java.util.List; import java.util.Locale; import java.util.Objects; @Data @Builder @AllArgsConstructor @NoArgsConstructor public class CollocationDetailVo implements Serializable { private Long collocationId; private Date createdDate; private String description; private String mainImage; //封面图片 private String images; //多个用分号分隔 private Long viewCount; //浏览次数 private Long appreciateCount; //点赞数 private List products; private List tags; public List getImagePaths() { if (StringUtils.isEmpty(images)) { return new ArrayList<>(); } return Arrays.asList(images.split(";")); } public String getFormatCreatedDate() { if (Objects.isNull(this.createdDate)) { return null; } Locale.setDefault(Locale.CHINESE); PrettyTime prettyTime = new PrettyTime(new Date()); return prettyTime.format(this.createdDate); } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/vos/CollocationProductVo.java ================================================ package com.huaan9527.mall.webapi.vos; import lombok.AllArgsConstructor; import lombok.Builder; import lombok.Data; import lombok.NoArgsConstructor; import java.io.Serializable; @Data @Builder @NoArgsConstructor @AllArgsConstructor public class CollocationProductVo implements Serializable { private Long productId; private String goodsId; //淘宝商品id private String mainPic; private String marketingMainPic; private String title; private String actualPrice; private String couponPrice; } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/vos/CollocationVo.java ================================================ package com.huaan9527.mall.webapi.vos; import lombok.AllArgsConstructor; import lombok.Builder; import lombok.Getter; import lombok.NoArgsConstructor; import lombok.Setter; import org.ocpsoft.prettytime.PrettyTime; import java.io.Serializable; import java.util.ArrayList; import java.util.Arrays; import java.util.Date; import java.util.List; import java.util.Locale; import java.util.Objects; @Getter @Setter @Builder @NoArgsConstructor @AllArgsConstructor public class CollocationVo implements Serializable { private Long collocationId; private String description; private Date createdDate; private String mainImage; //封面图片 private String images; //多个用分号分隔 private Long viewCount; //浏览次数 private Long appreciateCount; //点赞数 private List tags; private boolean appreciate; //登录用户是否已点赞 public List getImagePaths() { if (org.springframework.util.StringUtils.isEmpty(images)) { return new ArrayList<>(); } return Arrays.asList(images.split(";")); } public String getFormatCreatedDate() { if (Objects.isNull(this.createdDate)) { return null; } Locale.setDefault(Locale.CHINESE); PrettyTime prettyTime = new PrettyTime(new Date()); return prettyTime.format(this.createdDate); } } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/vos/ConfirmSMSCodeVo.java ================================================ package com.huaan9527.mall.webapi.vos; import lombok.Builder; import lombok.Data; @Data @Builder public class ConfirmSMSCodeVo { private String appkey; private String phone; private String zone; private String code; } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/vos/EventVo.java ================================================ package com.huaan9527.mall.webapi.vos; import lombok.AllArgsConstructor; import lombok.Builder; import lombok.Data; import lombok.NoArgsConstructor; import lombok.ToString; import java.io.Serializable; import java.util.Map; @Data @Builder @ToString @AllArgsConstructor @NoArgsConstructor public class EventVo implements Serializable { private String code; private Map data; } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/vos/MenuVo.java ================================================ package com.huaan9527.mall.webapi.vos; import lombok.Getter; import lombok.NoArgsConstructor; import lombok.Setter; import java.io.Serializable; @Getter @Setter @NoArgsConstructor public class MenuVo implements Serializable { private Long id; private String label; private String icon; private String url; private int status; //0 禁用 1启用 private String title; private int top; private String urlType; } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/vos/ProductVo.java ================================================ package com.huaan9527.mall.webapi.vos; import lombok.AllArgsConstructor; import lombok.Builder; import lombok.Getter; import lombok.NoArgsConstructor; import lombok.Setter; import java.io.Serializable; @Getter @Setter @Builder @AllArgsConstructor @NoArgsConstructor public class ProductVo implements Serializable { private Long id; private String title; private double actualPrice; private double originalPrice; private int monthSales; private int dailySales; private int shopType; private int couponReceiveNum; private double couponPrice; private String couponStartTime; private String couponEndTime; private String desc; private String shopName; private double descScore; private double serviceScore; private double shipScore; private String mainPic; private String goodsId; private boolean favorite; private String imgs; private String marketingMainPic; private String brandName; } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/vos/RegisterVo.java ================================================ package com.huaan9527.mall.webapi.vos; import lombok.Getter; import lombok.NoArgsConstructor; import lombok.Setter; import org.hibernate.validator.constraints.Length; import javax.validation.constraints.NotNull; import java.io.Serializable; @Getter @Setter @NoArgsConstructor public class RegisterVo implements Serializable { @NotNull(message = "手机号不能为空") private String mobile; @NotNull(message = "邮箱不能为空") private String email; @NotNull @Length(min = 6, max = 18, message = "6-18位不含特殊字符的数字、字母组合") private String password; } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/vos/RegisterVo2.java ================================================ package com.huaan9527.mall.webapi.vos; import lombok.Getter; import lombok.NoArgsConstructor; import lombok.Setter; import javax.validation.constraints.NotNull; import java.io.Serializable; @Getter @Setter @NoArgsConstructor public class RegisterVo2 implements Serializable { @NotNull(message = "手机号不能为空") private String mobile; private String inviteCode; @NotNull(message = "验证码不能为空") private String verifyCode; @NotNull(message = "签名不能为空") private String sign; } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/vos/SendEmailCodeVo.java ================================================ package com.huaan9527.mall.webapi.vos; import lombok.Getter; import lombok.NoArgsConstructor; import lombok.Setter; import javax.validation.constraints.NotNull; import java.io.Serializable; @Getter @Setter @NoArgsConstructor public class SendEmailCodeVo implements Serializable { @NotNull private String mobile; @NotNull private String email; } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/vos/TagVo.java ================================================ package com.huaan9527.mall.webapi.vos; import lombok.Data; import java.io.Serializable; @Data public class TagVo implements Serializable { private Long tagId; private String name; } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/vos/UpdatePasswordVo.java ================================================ package com.huaan9527.mall.webapi.vos; import lombok.Getter; import lombok.NoArgsConstructor; import lombok.Setter; import org.hibernate.validator.constraints.Length; import javax.validation.constraints.NotNull; import java.io.Serializable; @Getter @Setter @NoArgsConstructor public class UpdatePasswordVo implements Serializable { @NotNull private String mobile; @NotNull private String email; @NotNull private String code; @NotNull @Length(min = 6, max = 18, message = "6-18位不含特殊字符的数字、字母组合") private String newPassword; } ================================================ FILE: server/src/main/java/com/huaan9527/mall/webapi/vos/UserVo.java ================================================ package com.huaan9527.mall.webapi.vos; import lombok.Getter; import lombok.NoArgsConstructor; import lombok.Setter; import java.io.Serializable; @Getter @Setter @NoArgsConstructor public class UserVo implements Serializable { private Long userId; private String nick; private String mobile; private String email; private String status; private String userType; private String avatarUrl; private String city; private String country; private String province; private int sex; } ================================================ FILE: server/src/main/resources/application-dev.properties ================================================ spring.application.name=mall-counpons-server server.port=9090 server.tomcat.uri-encoding=UTF-8 server.tomcat.remote-ip-header=x-forwarded-for server.tomcat.protocol_header=x-forwarded-proto server.tomcat.port-header=X-Forwarded-Port mybatis.mapper-locations=classpath*:/mapper/**/**Mapper.xml dataoke.appKey= dataoke.appSecret= spring.social.qq.app-id= spring.social.qq.app-secret= spring.social.qq.access-token-api-url=https://api.q.qq.com/sns/jscode2session spring.social.qq.provider-type=QQMiniProgram spring.social.wechat.app-id= spring.social.wechat.app-secret= spring.social.wechat.access-token-api-url=https://api.weixin.qq.com/sns/jscode2session spring.social.wechat.provider-type=MiniProgram spring.mail.host= spring.mail.username= spring.mail.password= spring.mail.port=465 spring.mail.default-encoding=UTF-8 spring.mail.properties.mail.smtp.socketFactory.class=javax.net.ssl.SSLSocketFactory spring.mail.properties.mail.debug=true spring.datasource.continue-on-error=true spring.datasource.type=com.alibaba.druid.pool.DruidDataSource spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver spring.datasource.url= spring.datasource.username= spring.datasource.password= spring.datasource.initialSize=5 spring.datasource.minIdle=5 spring.datasource.maxActive=20 spring.datasource.maxWait=60000 spring.datasource.timeBetweenEvictionRunsMillis=60000 spring.datasource.minEvictableIdleTimeMillis=300000 spring.datasource.validationQuery=SELECT 1 spring.datasource.testWhileIdle=true spring.datasource.testOnBorrow=false spring.datasource.testOnReturn=false spring.datasource.poolPreparedStatements=true spring.datasource.maxPoolPreparedStatementPerConnectionSize=20 spring.datasource.filters=stat,wall,log4j spring.datasource.connectionProperties=druid.stat.mergeSql=true;druid.stat.slowSqlMillis=5000 spring.mvc.static-path-pattern=/st/** spring.http.encoding.charset=UTF-8 spring.http.encoding.enabled=true spring.http.encoding.force=true spring.jackson.serialization.write-dates-as-timestamps=true logging.path=logs logging.level.root=INFO logging.level.com.huaan9527.mall.webapi.repository=debug spring.redis.host= spring.redis.password= spring.redis.port= spring.redis.database=0 mob.service.appkey= ================================================ FILE: server/src/main/resources/application-prod.properties ================================================ spring.application.name=mall-counpons-server server.port=9090 server.tomcat.uri-encoding=UTF-8 server.tomcat.remote-ip-header=x-forwarded-for server.tomcat.protocol_header=x-forwarded-proto server.tomcat.port-header=X-Forwarded-Port mybatis.mapper-locations=classpath*:/mapper/**/**Mapper.xml dataoke.appKey= dataoke.appSecret= spring.social.qq.app-id= spring.social.qq.app-secret= spring.social.qq.access-token-api-url=https://api.q.qq.com/sns/jscode2session spring.social.qq.provider-type=QQMiniProgram spring.social.wechat.app-id= spring.social.wechat.app-secret= spring.social.wechat.access-token-api-url=https://api.weixin.qq.com/sns/jscode2session spring.social.wechat.provider-type=MiniProgram spring.mail.host= spring.mail.username= spring.mail.password= spring.mail.port=465 spring.mail.default-encoding=UTF-8 spring.mail.properties.mail.smtp.socketFactory.class=javax.net.ssl.SSLSocketFactory spring.mail.properties.mail.debug=true spring.datasource.continue-on-error=true spring.datasource.type=com.alibaba.druid.pool.DruidDataSource spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver spring.datasource.url= spring.datasource.username= spring.datasource.password= spring.datasource.initialSize=5 spring.datasource.minIdle=5 spring.datasource.maxActive=20 spring.datasource.maxWait=60000 spring.datasource.timeBetweenEvictionRunsMillis=60000 spring.datasource.minEvictableIdleTimeMillis=300000 spring.datasource.validationQuery=SELECT 1 spring.datasource.testWhileIdle=true spring.datasource.testOnBorrow=false spring.datasource.testOnReturn=false spring.datasource.poolPreparedStatements=true spring.datasource.maxPoolPreparedStatementPerConnectionSize=20 spring.datasource.filters=stat,wall,log4j spring.datasource.connectionProperties=druid.stat.mergeSql=true;druid.stat.slowSqlMillis=5000 spring.mvc.static-path-pattern=/st/** spring.http.encoding.charset=UTF-8 spring.http.encoding.enabled=true spring.http.encoding.force=true spring.jackson.serialization.write-dates-as-timestamps=true logging.path=logs logging.level.root=INFO logging.level.com.huaan9527.mall.webapi.repository=debug spring.redis.host= spring.redis.password= spring.redis.port= spring.redis.database=0 mob.service.appkey= ================================================ FILE: server/src/main/resources/application-test.properties ================================================ spring.application.name=mall-counpons-server server.port=9090 server.tomcat.uri-encoding=UTF-8 server.tomcat.remote-ip-header=x-forwarded-for server.tomcat.protocol_header=x-forwarded-proto server.tomcat.port-header=X-Forwarded-Port mybatis.mapper-locations=classpath*:/mapper/**/**Mapper.xml dataoke.appKey= dataoke.appSecret= spring.social.qq.app-id= spring.social.qq.app-secret= spring.social.qq.access-token-api-url=https://api.q.qq.com/sns/jscode2session spring.social.qq.provider-type=QQMiniProgram spring.social.wechat.app-id= spring.social.wechat.app-secret= spring.social.wechat.access-token-api-url=https://api.weixin.qq.com/sns/jscode2session spring.social.wechat.provider-type=MiniProgram spring.mail.host= spring.mail.username= spring.mail.password= spring.mail.port=465 spring.mail.default-encoding=UTF-8 spring.mail.properties.mail.smtp.socketFactory.class=javax.net.ssl.SSLSocketFactory spring.mail.properties.mail.debug=true spring.datasource.continue-on-error=true spring.datasource.type=com.alibaba.druid.pool.DruidDataSource spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver spring.datasource.url= spring.datasource.username= spring.datasource.password= spring.datasource.initialSize=5 spring.datasource.minIdle=5 spring.datasource.maxActive=20 spring.datasource.maxWait=60000 spring.datasource.timeBetweenEvictionRunsMillis=60000 spring.datasource.minEvictableIdleTimeMillis=300000 spring.datasource.validationQuery=SELECT 1 spring.datasource.testWhileIdle=true spring.datasource.testOnBorrow=false spring.datasource.testOnReturn=false spring.datasource.poolPreparedStatements=true spring.datasource.maxPoolPreparedStatementPerConnectionSize=20 spring.datasource.filters=stat,wall,log4j spring.datasource.connectionProperties=druid.stat.mergeSql=true;druid.stat.slowSqlMillis=5000 spring.mvc.static-path-pattern=/st/** spring.http.encoding.charset=UTF-8 spring.http.encoding.enabled=true spring.http.encoding.force=true spring.jackson.serialization.write-dates-as-timestamps=true logging.path=logs logging.level.root=INFO logging.level.com.huaan9527.mall.webapi.repository=debug spring.redis.host= spring.redis.password= spring.redis.port= spring.redis.database=0 mob.service.appkey= ================================================ FILE: server/src/main/resources/mapper/CollocationMapper.xml ================================================ UPDATE collocation SET appreciate_count = appreciate_count + #{amount} WHERE id = #{collocationId} ================================================ FILE: server/src/test/java/com/huaan9527/mall/webapi/BaseTest.java ================================================ package com.huaan9527.mall.webapi; import org.junit.runner.RunWith; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.ActiveProfiles; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; @RunWith(SpringJUnit4ClassRunner.class) @SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.MOCK, classes = MallWebapiApplication.class) @ActiveProfiles("dev") public class BaseTest { } ================================================ FILE: server/src/test/java/com/huaan9527/mall/webapi/MallWebapiApplicationTests.java ================================================ package com.huaan9527.mall.webapi; import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONObject; import com.huaan9527.mall.webapi.client.MobServiceClient; import com.huaan9527.mall.webapi.service.GoodsService; import com.huaan9527.mall.webapi.service.UserService; import com.huaan9527.mall.webapi.utils.CodeGenerator; import com.huaan9527.mall.webapi.vos.SendEmailCodeVo; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.mail.MailSender; import org.springframework.mail.SimpleMailMessage; import org.springframework.test.context.ActiveProfiles; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; @RunWith(SpringJUnit4ClassRunner.class) @SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.MOCK, classes = MallWebapiApplication.class) @ActiveProfiles("dev") public class MallWebapiApplicationTests { @Autowired private GoodsService goodsService; @Autowired private MailSender mailSender; @Autowired private UserService userService; @Autowired private MobServiceClient mobServiceClient; @Test public void recommendGoods() { JSONObject jsonObject = goodsService.recommendGoods(1, 50); System.out.println(JSON.toJSONString(jsonObject)); } @Test public void test() { SimpleMailMessage message = new SimpleMailMessage(); message.setFrom("380303318@qq.com"); message.setTo("18380483688@139.com"); message.setSubject("烂尾楼发完了"); message.setText("违法违规"); mailSender.send(message); } @Test public void test1() { System.out.println(CodeGenerator.random(true, 6)); } @Test public void test2() { SendEmailCodeVo vo = new SendEmailCodeVo(); vo.setEmail("18380483688@139.com"); vo.setMobile("18380483688"); userService.sendEmailCode(vo); } @Test public void test3() { Boolean aBoolean = mobServiceClient.confirmSMSCode("18380483688", "7275"); System.out.println(aBoolean); } } ================================================ FILE: server/src/test/java/com/huaan9527/mall/webapi/service/CollocationServiceTest.java ================================================ package com.huaan9527.mall.webapi.service; import com.huaan9527.mall.webapi.BaseTest; import com.huaan9527.mall.webapi.utils.PageResponse; import com.huaan9527.mall.webapi.vos.CollocationDetailVo; import com.huaan9527.mall.webapi.vos.CollocationVo; import org.junit.Test; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.data.domain.PageRequest; import org.springframework.data.domain.Sort; public class CollocationServiceTest extends BaseTest { @Autowired private CollocationService collocationService; @Test public void list() { PageResponse list = collocationService.list(PageRequest.of(0, 1, Sort.Direction.DESC, "created_date")); System.out.println(list); } @Test public void detail() { CollocationDetailVo detail = collocationService.detail(1L); System.out.println(detail); } } ================================================ FILE: server/src/test/java/com/huaan9527/mall/webapi/service/CustomerInfoService.java ================================================ package com.huaan9527.mall.webapi.service; public class CustomerInfoService implements RemoteLoader { public String load() { this.delay(); return "基本信息"; } } ================================================ FILE: server/src/test/java/com/huaan9527/mall/webapi/service/GoodsServiceTest.java ================================================ package com.huaan9527.mall.webapi.service; import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONObject; import com.huaan9527.mall.webapi.utils.URLUtil; import org.junit.Test; import org.springframework.beans.factory.annotation.Autowired; import static org.junit.Assert.*; public class GoodsServiceTest { @Autowired private GoodsService goodsService; @Test public void recommendGoods() { URLUtil.UrlEntity entity = URLUtil.parse("https:\\/\\/item.taobao.com\\/item.htm?spm=a1z0d.6639537.1997196601.663.8a597484bti3H4&id=623949649561\""); System.out.println(entity.params); } } ================================================ FILE: server/src/test/java/com/huaan9527/mall/webapi/service/LabelService.java ================================================ package com.huaan9527.mall.webapi.service; public class LabelService implements RemoteLoader { @Override public String load() { this.delay(); return "标签信息"; } } ================================================ FILE: server/src/test/java/com/huaan9527/mall/webapi/service/LearnRecordService.java ================================================ package com.huaan9527.mall.webapi.service; public class LearnRecordService implements RemoteLoader { public String load() { this.delay(); return "学习信息"; } } ================================================ FILE: server/src/test/java/com/huaan9527/mall/webapi/service/OrderService.java ================================================ package com.huaan9527.mall.webapi.service; public class OrderService implements RemoteLoader { @Override public String load() { this.delay(); return "订单信息"; } } ================================================ FILE: server/src/test/java/com/huaan9527/mall/webapi/service/RemoteLoader.java ================================================ package com.huaan9527.mall.webapi.service; public interface RemoteLoader { String load(); default void delay() { try { Thread.sleep(1000L); } catch (InterruptedException e) { e.printStackTrace(); } } } ================================================ FILE: server/src/test/java/com/huaan9527/mall/webapi/service/UserDetailService.java ================================================ package com.huaan9527.mall.webapi.service; import org.junit.Test; import java.util.Arrays; import java.util.List; import java.util.Objects; import java.util.concurrent.CompletableFuture; import java.util.concurrent.ExecutionException; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; import java.util.concurrent.Future; import static java.util.stream.Collectors.toList; public class UserDetailService { @Test public void testSync() { long start = System.currentTimeMillis(); List remoteLoaders = Arrays.asList(new CustomerInfoService(), new LearnRecordService()); List customerDetail = remoteLoaders.stream().map(RemoteLoader::load).collect(toList()); System.out.println(customerDetail); long end = System.currentTimeMillis(); System.out.println("总共花费时间:" + (end - start)); } @Test public void testFuture() { long start = System.currentTimeMillis(); ExecutorService executorService = Executors.newFixedThreadPool(2); List remoteLoaders = Arrays.asList(new CustomerInfoService(), new LearnRecordService()); List> futures = remoteLoaders.stream() .map(remoteLoader -> executorService.submit(remoteLoader::load)) .collect(toList()); List customerDetail = futures.stream() .map(future -> { try { return future.get(); } catch (InterruptedException | ExecutionException e) { e.printStackTrace(); } return null; }) .filter(Objects::nonNull) .collect(toList()); System.out.println(customerDetail); long end = System.currentTimeMillis(); System.out.println("总共花费时间:" + (end - start)); } @Test public void testParallelStream() { long start = System.currentTimeMillis(); List remoteLoaders = Arrays.asList(new CustomerInfoService(), new LearnRecordService()); List customerDetail = remoteLoaders.parallelStream().map(RemoteLoader::load).collect(toList()); System.out.println(customerDetail); long end = System.currentTimeMillis(); System.out.println("总共花费时间:" + (end - start)); } @Test public void testParallelStream2() { long start = System.currentTimeMillis(); List remoteLoaders = Arrays.asList( new CustomerInfoService(), new LearnRecordService(), new LabelService(), new OrderService(), new WatchRecordService()); List customerDetail = remoteLoaders.parallelStream().map(RemoteLoader::load).collect(toList()); System.out.println(customerDetail); long end = System.currentTimeMillis(); System.out.println("总共花费时间:" + (end - start)); } @Test public void testCompletableFuture() throws ExecutionException, InterruptedException { CompletableFuture future = new CompletableFuture<>(); new Thread(() -> { try { doSomething(); future.complete("Finish"); } catch (Exception e) { future.completeExceptionally(e); } }).start(); System.out.println(future.get()); } private void doSomething() { System.out.println("doSomething..."); throw new RuntimeException("Test Exception"); } @Test public void testCompletableFuture2() throws ExecutionException, InterruptedException { CompletableFuture future = CompletableFuture .supplyAsync(() -> { doSomething(); return "Finish"; }) .exceptionally(throwable -> "Throwable exception message:" + throwable.getMessage()); System.out.println(future.get()); } @Test public void testCompletableFuture3() throws ExecutionException, InterruptedException { long start = System.currentTimeMillis(); List remoteLoaders = Arrays.asList( new CustomerInfoService(), new LearnRecordService(), new LabelService(), new OrderService(), new WatchRecordService()); List> completableFutures = remoteLoaders .stream() .map(loader -> CompletableFuture.supplyAsync(loader::load)) .collect(toList()); List customerDetail = completableFutures .stream() .map(CompletableFuture::join) .collect(toList()); System.out.println(customerDetail); long end = System.currentTimeMillis(); System.out.println("总共花费时间:" + (end - start)); } @Test public void testCompletableFuture4() throws ExecutionException, InterruptedException { long start = System.currentTimeMillis(); List remoteLoaders = Arrays.asList( new CustomerInfoService(), new LearnRecordService(), new LabelService(), new OrderService(), new WatchRecordService()); ExecutorService executorService = Executors.newFixedThreadPool(Math.min(remoteLoaders.size(), 50)); List> completableFutures = remoteLoaders .stream() .map(loader -> CompletableFuture.supplyAsync(loader::load, executorService)) .collect(toList()); List customerDetail = completableFutures .stream() .map(CompletableFuture::join) .collect(toList()); System.out.println(customerDetail); long end = System.currentTimeMillis(); System.out.println("总共花费时间:" + (end - start)); } } ================================================ FILE: server/src/test/java/com/huaan9527/mall/webapi/service/WatchRecordService.java ================================================ package com.huaan9527.mall.webapi.service; public class WatchRecordService implements RemoteLoader { @Override public String load() { this.delay(); return "观看记录"; } } ================================================ FILE: server/static/download/css/index.css ================================================ body, html { /* font: 17px/1.5rem "Simsun"; */ background: #fff; height: 100%; font-size: 12px; padding: 0; margin: 0; } .app-main { position: initial; } .down-main { /*background: url(../image/gradient.png) #fff center bottom no-repeat ; background-size: 100% auto;*/ position: absolute; width: 100%; margin: auto; height: 100%; overflow: hidden; left: 0; top: 0; min-height: 570px; } .app-info { position: relative; background: url(../image/icons.png) center 3rem no-repeat; background-size: 60% auto; width: 100%; text-align: center; padding-bottom: 2rem; background-position: 48% 10%; } .app-top { /*background: white url(../../image/app-top.png) bottom center no-repeat;*/ position: relative; top: 0; width: 100%; background-size: 100%; padding-top: 15%; } .sp-screen .mobile-bg { position: absolute; bottom: 20%; } .mobile-bg { /*background: #ffe6ea;*/ position: relative; bottom: 0; width: 100%; background-size: 100%; text-align: center; } .mobile-bg img { width: 90%; vertical-align: bottom; } .app-icon { display: block; margin: 0 auto; width: 80px; height: 80px; overflow: hidden; padding-top: .14rem; } .app-icon img { border-radius: 1rem; width: 100% } .app-name { display: block; color: #666; font-size: .18rem; margin: 0; line-height: .2rem; padding: .07rem 0; font-weight: bold; } .app-ver { display: block; /* font-size: .6rem; */ color: #999; overflow: hidden; margin-bottom: 1em; } .app-down-info { display: block; text-align: center; position: absolute; bottom: 5%; left: 0; width: 100%; } .down-btn { padding: .8rem 0; } .down-btn a { color: #fff; border-radius: 5rem; text-decoration: none; padding: .6rem 0; width: 33%; display: block; margin: auto; background: #FB305A; box-shadow: 0 0 0px 4px rgba(255, 255, 255, .23); position: relative; z-index: 0; } .down-btn a p { position: absolute; left: 0; top: 0; height: 100%; width: 100%; z-index: 50; height: 100%; margin: 0; } .down-btn.ios-disabled a { background: #cccccc; } .down-btn a.down-copy { box-shadow: none; background: #00a729; } .down-msg { margin-top: .5rem; } .down-msg p { padding: 0; margin: 0; color: #fff; font-size: .8rem; margin: 0 15px; min-height: 34px; } .down-msg p.op7 { opacity: .7; } .weixin-tip { position: fixed; /*display: none;*/ left: 0; top: 0; width: 100%; height: 100%; z-index: 1000000; background: rgba(0, 0, 0, 0.5); } .wechat-line { position: absolute; top: 0; right: 22px; z-index: 1000003; width: 68px; height: 68px; background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAj0AAAZACAYAAACSYvMNAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTM4IDc5LjE1OTgyNCwgMjAxNi8wOS8xNC0wMTowOTowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpmMWE0N2E1YS1kZTRlLTRkNGItOTQ3Zi03M2Q4ZGYxMGM5ZjciIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QUM5NjM2RUY5NDQ2MTFFNzg2ODhBRDRENkU2NTBFMUIiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QUM5NjM2RUU5NDQ2MTFFNzg2ODhBRDRENkU2NTBFMUIiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTcgKFdpbmRvd3MpIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6ZTJjZWRlYWItY2RjNi1lMDRmLWFhZDctMGZiN2VkMzYzMzYxIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOmYxYTQ3YTVhLWRlNGUtNGQ0Yi05NDdmLTczZDhkZjEwYzlmNyIv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) -131px -149px no-repeat; background-size: 287px 800px; } .wechat-brow { z-index: 1000002; top: 70px; width: 215px; margin: 0 auto; position: relative; background: url(../image/cms-img.png) 0 -650px no-repeat #ec7a30; background-size: 287px 800px; height: 80px; border-radius: 2px; padding: 10px 0; } .wechat-brow p { text-align: center; color: #fff; margin: 0; padding: 0; font-size: 1rem; line-height: 1.7rem; opacity: 0; } .wechat-brow.androidChat { background-position: 0 -647px; } .tkl-layer { width: 250px; height: 210px; position: relative; z-index: 1; background: url(../image/cms-img.png) 0 -234px no-repeat; background-size: 287px 800px; margin: 0 auto; text-align: center; padding-top: 90px; color: #5e4102; } .tkl-layer .app-icon { margin: 0 auto; } .tkl-layer .app-ver { margin: 0; } .tkl-layer .app-down-info { margin-top: .6rem } @media only screen and (min-width: 470px) { body .down-main { width: 980px; height: 1659px; } /*.app-info{background:url(../../image/icons.png) 45% -3rem no-repeat;background-size: 70% auto;*/ /*}*/ .app-top { padding-top: 15rem; } .app-icon { width: 200px; height: 200px; } .app-icon img { border-radius: 3rem; } .app-name { font-size: 7rem; line-height: 13rem; } .app-ver { font-size: 2rem; } .down-btn2 { padding: 2.8rem; height: 85px; overflow: hidden; } .down-msg p.op7 { opacity: .7; font-size: 3rem; height: 95px; } .sp-screen .mobile-bg { margin-bottom: 90px; } .app-down-info { margin-bottom: 18%; } } .down-btn2 a { padding: 0; font-size: 0; box-shadow: none; background: none; font-size: initial; } /*ios*/ .app-main .app-jhm { color: #aaa; font-size: 1.1em; font-family: Arial, "Microsoft YaHei", "Helvetica Neue", Helvetica, sans-serif; } .app-main .app-jhm .cont { display: inline-block; color: #FF256E; padding: 5px 10px; background-color: #eee; font-size: 1.2em; min-width: 12%; min-height: 5px; } .app-down-info .down-btn a { font-size: 1.2em; } .app-ios-qr { width: 90px; height: 90px; background-color: #fff; position: absolute; right: 5%; bottom: 18%; margin-top: 35%; z-index: 99; } .app-ios-qr img { width: 86%; height: 86%; position: absolute; left: 7%; top: 10%; } .app-ios-font { position: absolute; right: 5%; bottom: 13%; font-size: 0.8em; color: #fff; font-family: 'microsoft yahei'; } @media screen and (max-width: 321px) { .app-ios-qr { width: 80px; height: 80px; } .app-ios-font { font-size: 0.7em; } } @media screen and (min-width: 413px) { .app-ios-qr { width: 100px; height: 100px; } .app-ios-font { font-size: 1.1em; } } @media screen and (min-width: 470px) { .app-ios-qr { width: 200px; height: 200px; bottom: 22%; } .app-ios-font { font-size: 22px; right: 53px; bottom: 18%; } .app-ios-qr img { top: 8%; } .down-btn a { width: 30%; padding: 1rem 0; } .app-down-info .down-btn a { font-size: 40px; } .app-main .app-jhm { font-size: 27px; } .app-main .app-jhm .cont { min-height: 15px; } } /*ios down*/ .ios-down .app-info { height: 70%; width: 100%; position: absolute; background-image: url("../image/bg_up.jpg"); background-size: 100% 100%; padding-bottom: 0; } .ios-down .app-info .app-icon { width: 65px; height: 65px; overflow: visible; } .ios-down .app-info .app-icon img { box-shadow: 3px 3px 2px #ccc; } .ios-down .app-info .app-name { font-size: 3.5rem; color: #A10B20; margin-top: 2.5rem; letter-spacing: 2px; text-shadow: 3px 3px 2px #eed9db; font-family: "microsoft yahei"; } .ios-down .app-down-info { height: 30%; width: 100%; position: absolute; bottom: 0; background-image: url("../image/bg_down.jpg"); background-size: cover; } .ios-down .app-main { margin-top: 1.5rem; letter-spacing: 10px; margin-left: 2%; color: #A10B20; font-family: "microsoft yahei"; } .ios-down .mobile-bg { bottom: auto; top: 42%; } .ios-down .mobile-bg.bd { top: 39%; } .ios-down .mobile-bg img { width: 48%; } .ios-down .app-jhm { position: absolute; top: 26%; left: 5%; font-size: 1.2rem; color: #FF3864; font-family: 'microsoft yahei', SourceHanSansCN-Regular; } .ios-down .app-jhm span { margin-left: 2rem; color: #f1f1f1; } .ios-down .font_bg { position: absolute; bottom: 10%; left: 10%; width: 80%; background-repeat: no-repeat; height: 39px; background-image: url("../../image/font_bg.png"); background-size: 100% 100%; } .ios-down .jhm-num { background-color: #ff6688; width: 30%; height: 20px; line-height: 20px; position: absolute; left: 50%; margin-left: -15%; top: 9px; color: #fff; font-size: 14px; font-family: 'microsoft yahei'; } .ios-down .app-down-info .download { position: absolute; top: 26%; right: 5%; color: #FF3864; text-decoration: none; font-family: 'microsoft yahei', SourceHanSansCN-Regular; } @media screen and (max-width: 321px) { .ios-down .mobile-bg { top: 43%; } .ios-down .app-jhm { top: 26%; left: 5%; font-size: 1.1rem; } .ios-down .app-jhm span { margin-left: 1.7rem; } .ios-down .app-down-info .download { top: 26%; right: 3%; font-size: 1.1rem; } .ios-down .jhm-num { top: 9px; width: 28%; margin-left: -14%; } } @media screen and (min-width: 413px) { .ios-down .app-jhm { top: 26%; left: 5%; font-size: 1.3rem; } .ios-down .jhm-num { top: 11px; } .ios-down .app-down-info .download { top: 26%; right: 3%; font-size: 1.3rem; } } @media screen and (min-width: 470px) { .ios-down .app-info .app-name { font-size: 10rem; } .ios-down .app-main { font-size: 3.5rem; } .ios-down .app-info .app-icon { width: 150px; height: 150px; } .ios-down .app-icon img { border-radius: 2rem; width: 150px; height: 150px; } .ios-down .app-jhm { top: 14px; left: 45px; font-size: 40px; } .ios-down .app-jhm span { margin-left: 60px; position: relative; top: 3px; } .ios-down .app-down-info .download { top: 14px; right: 30px; font-size: 40px; } .ios-down .font_bg { height: 82px; } .ios-down .jhm-num { top: 21px; height: 42px; line-height: 42px; font-size: 30px; } .ios-down .font_bg .download.bd { background-image: url("../../image/gtdown.png"); width: 200px; height: 55px; background-repeat: no-repeat; } } .pop_up { position: fixed; width: 100%; height: 100%; display: none; z-index: 50; } .pop_up i { position: absolute; width: 100%; height: 100%; background-color: #000; opacity: 0.7; } .pop_up .pop_block { position: absolute; color: #fff; border: 1px solid #666; right: 2%; top: 5%; padding: 2% 5% 3% 7%; border-radius: 6px; letter-spacing: 2px; } .pop_up .pop_block .ck span { font-size: 30px; position: relative; top: 6px; } .pop_up .pop_block i { background-color: #000; opacity: 0.3; position: absolute; left: 0; top: 0; border-radius: 4px; } .pop_up .pop_block:before { content: ''; border-bottom: 9px solid #333; border-left: 9px solid transparent; border-right: 9px solid transparent; position: absolute; top: -9px; right: 15px; z-index: 99; } .pop_up .pop_block:after { content: ''; border-bottom: 10px solid #666; border-left: 10px solid transparent; border-right: 10px solid transparent; position: absolute; top: -10px; right: 14px; } .pop_up .pop_block div { position: relative; z-index: 999; top: 2px; } .pop_up .pop_block .ck { font-size: 1.3em; margin-top: -10%; } /*20180801 新下周页*/ html, body { overflow: hidden; width: 100%; height: 100%; position: relative; min-height: 72vh; } .download_layout { transition: all .8s cubic-bezier(0.42, 0, 0, 1.32) .6s; -webkit-transition: all .8s cubic-bezier(0.42, 0, 0, 1.32) .6s; background: linear-gradient(122.9deg, rgba(254, 159, 105, 1), rgba(251, 133, 247, 1)); overflow: hidden; height: 100%; } .download_top_ion, .download_phone { position: absolute; left: 0; top: 0; z-index: 1; width: 100%; height: 100%; overflow: hidden; text-align: center; } .download_top_ion img { width: 80%; margin: auto; position: relative; top: 0%; } .download_top_ion { top: -10%; transition: all .8s cubic-bezier(0.42, 0, 0, 1.32) .6s; -webkit-transition: all .8s cubic-bezier(0.42, 0, 0, 1.32) .6s; -webkit-transform: translateY(150px) translateX(0); transform: translateY(150px) translateX(0); } .download_info { text-align: center; padding-top: 5%; position: relative; z-index: 100; transition: all .9s cubic-bezier(0.42, 0, 0, 1.32) .6s; -webkit-transition: all .9s cubic-bezier(0.42, 0, 0, 1.32) .6s; -webkit-transform: translateY(150px) translateX(0); transform: translateY(150px) translateX(0); } .download_info img { border-radius: .8rem; width: 20%; } .download_info h1 { font-size: 1.5rem; color: #fff; font-weight: 400; margin: 0; padding: .5rem 0 0 0; } .download_info p { font-size: 1rem; color: #fff; letter-spacing: 2rem; padding-left: 2rem; margin: .5rem 0; } .download_btn .down-msg { text-align: center; color: #999; font-size: 1.5rem; line-height: 3rem; } .download_btn .bd-download { width: 18rem; height: auto; } .download_phone { top: auto; bottom: 0%; } @media screen and (max-width: 321px) { .download_phone { top: 2rem; } } .download_phone img { position: absolute; left: 50%; left: 20%; width: 60%; top: 30%; transition: all .8s cubic-bezier(0.42, 0, 0, 1.32) .6s; -webkit-transition: all .8s cubic-bezier(0.42, 0, 0, 1.32) .6s; transform-origin: center; -webkit-transform-origin: center bottom; transform-origin: center bottom; opacity: 0; } .download_phone .phone1 { z-index: 10; -webkit-transform: translateY(50px) translateX(0); transform: translateY(50px) translateX(0); } .download_phone .phone2 { z-index: 5; } .download_phone .phone3 { z-index: 2; } .download_btn { position: absolute; z-index: 30; left: 0; top: 100%; margin-top: -38%; text-align: center; width: 100%; transition: all .8s cubic-bezier(0.42, 0, 0, 1.32) .3s; -webkit-transition: all .8s cubic-bezier(0.42, 0, 0, 1.32) .3s; -webkit-transform: translateY(20%) translateX(0); transform: translateY(20%) translateX(0); opacity: 0; } .download_btn .code { font-size: 1.6rem; color: #F9235F; padding-top: .5rem; margin: 5% 0 0rem 0; } .download_btn .code span { background: #F5F5F5; border-radius: .2rem; padding: 0 .5rem; font-family: "Arial"; } .download_btn .text { color: #999; font-size: 1rem; margin: .5rem 0; } .download_btn .download { background: rgba(249, 35, 95, 1); border-radius: 5rem; border: 5px solid rgba(255, 217, 227, 1); width: 50%; text-align: center; height: 2.5rem; line-height: 2.5rem; color: #fff; text-decoration: none; display: block; margin: auto; font-size: 1.2rem; font-family: "Arial"; } .download_bg { width: 200%; border-radius: 999999px; height: 2000px; background: #fff; position: absolute; top: 100%; margin-top: -37%; left: -50%; z-index: 25; transition: all .8s cubic-bezier(0.42, 0, 0.39, 1.39) .2s; -webkit-transition: all .8s cubic-bezier(0.42, 0, 0.39, 1.39) .2s; -webkit-transform: translateY(20%) translateX(0); transform: translateY(20%) translateX(0); opacity: 0; } .download_load { background: url(../image/load.gif) center center no-repeat #fff; position: fixed; left: 0; top: 0; height: 100%; width: 100%; z-index: 300; transition: all .4s ease-out .2s; -webkit-transition: all .4s ease-out .2s; } .download_layout.active .download_phone .phone1 { opacity: 1; -webkit-transform: translateY(0) translateX(0); transform: translateY(0) translateX(0); } .download_layout.active .download_phone .phone2 { opacity: 1; -webkit-transform: rotate(-20deg); transform: rotate(-20deg); } .download_layout.active .download_phone .phone3 { opacity: 1; -webkit-transform: rotate(20deg); transform: rotate(20deg); } .download_layout.active .download_btn, .download_layout.active .download_bg, .download_layout.active .download_info, .download_layout.active .download_top_ion { -webkit-transform: translateY(0) translateX(0); transform: translateY(0) translateX(0); opacity: 1; } .download_layout.active { background: #fff; } .download_layout.active .download_load { opacity: 0; z-index: -5; } @media screen and (min-width: 470px) { html { font-size: 18px; } } @media screen and (min-width: 970px) { html { font-size: 26px; } } .new-down-header { margin: 0.19rem auto 0.25rem; width: 100vw; } .new-down-header > div { display: flex; justify-content: center; } .new-down-header > div > div { display: flex; flex-direction: column; } .new-down-header > div > div h4 { height: 0.28rem; font-size: 0.21rem; font-weight: 500; color: rgba(87, 87, 87, 1); line-height: 0.29rem; margin: 0; text-align: center; } .new-down-header > div > div span { height: .17rem; font-size: .12rem; font-weight: 400; color: rgba(136, 136, 136, 1); line-height: .17rem; text-align: center; } .new-down-icon { width: 0.45rem; height: 0.45rem; box-shadow: 0rem 0.03rem 0.08rem 0rem rgba(0, 0, 0, 0.15); border-radius: 0.1rem; margin-right: 0.1rem; } .new-down-wenan { width: 3.21rem; height: 0.34rem; margin: auto; overflow: hidden; margin-bottom: .17rem; } .new-down-wenan img { display: block; width: 100%; height: 100%; } .new-down-main { height: 4.22rem; position: relative; } .new-down-main .bg { position: absolute; /*left: .08rem;*/ left: 50%; margin-left: -130px; top: .27rem; z-index: 1; background: url(../image/bg.png) no-repeat center; background-size: 3.32rem 3.32rem; width: 3.32rem; height: 3.32rem; } .new-down-main .decoration { position: absolute; /*left: .13rem;*/ left: 50%; margin-left: -120px; top: 2.16rem; z-index: 2; background: url(../image/decoration.png) no-repeat center; background-size: 2.77rem 1.22rem; width: 2.77rem; height: 1.22rem; } .new-down-main .banner { position: absolute; left: 0.16rem; top: 1.63rem; z-index: 4; } .new-down-main .banner1 { width: 2.77rem; height: .87rem; background: url(../image/banner1.png) no-repeat center; background-size: 2.77rem .87rem; } .new-down-main .banner2 { /*left: .23rem;*/ left: 50%; margin-left: -110px; top: 1.02rem; width: 2.6rem; height: 1.06rem; background: url(../image/banner2.png) no-repeat center; background-size: 2.6rem 1.06rem; } .new-down-main .banner3 { left: .32rem; top: .86rem; width: 2.43rem; height: 1.23rem; background: url(../image/banner3.png) no-repeat center; background-size: 2.43rem 1.23rem; } .new-down-main .phone { position: absolute; /*left: .42rem;*/ left: 50%; margin-left: -95px; top: 0; z-index: 3; width: 2.24rem; height: 4.22rem; } .new-down-main .phone1 { background: url(../image/phone1.png) no-repeat center; background-size: 2.24rem 4.22rem; } .new-down-main .phone2 { background: url(../image/phone2.png) no-repeat center; background-size: 2.24rem 4.22rem; } .new-down-main .phone3 { background: url(../image/phone3.png) no-repeat center; background-size: 2.24rem 4.22rem; } .new-down-main .top { background: url(../image/san1.png) no-repeat center; background-size: .13rem .1rem; position: absolute; left: 0; right: 0; margin: auto; width: .13rem; height: .1rem; top: 0.52rem; display: none; } .new-down-main .top1 { display: block; } .new-down-main .btn1 { position: absolute; top: .24rem; /*left: 2.34rem;*/ margin-left: 60px; left: 50%; background: url(../image/btn1.png) no-repeat center; background-size: .83rem .83rem; width: .83rem; height: .83rem; border-radius: 50%; z-index: 99; cursor: pointer; } .new-down-main .btn2 { position: absolute; top: 1.32rem; /*left: 2.95rem;*/ margin-left: 120px; left: 50%; background: url(../image/btn2.png) no-repeat center; background-size: .73rem .73rem; width: .73rem; height: .73rem; border-radius: 50%; z-index: 99; cursor: pointer; } .new-down-main .btn2 .top { top: 0.49rem; } .new-down-main .btn3 { position: absolute; top: 2.43rem; /*left: 2.92rem;*/ left: 50%; margin-left: 110px; background: url(../image/btn3.png) no-repeat center; background-size: .61rem .61rem; width: .61rem; height: .61rem; border-radius: 50%; z-index: 99; cursor: pointer; } .new-down-main .btn3 .top { top: .41rem; background: url(../image/san2.png) no-repeat center; background-size: .1rem .07rem; } .new-down-footer .down { width: 2.8rem; height: 0.42rem; border-radius: 0.28rem; font-size: 0.16rem; font-weight: 500; color: #fff; line-height: 0.42rem; display: block; margin: auto; background: linear-gradient(270deg, rgba(254, 60, 53, 1) 0%, rgba(255, 31, 76, 1) 100%); text-align: center; text-decoration: none; display: flex; align-items: center; justify-content: center; } .new-down-footer .down .down-icon { background: url('../image/down.png') no-repeat center; background-size: .13rem .14rem; width: .13rem; height: .14rem; display: inline-block; margin-right: .05rem; } .new-down-footer p { height: 0.22rem; font-size: 0.16rem; font-weight: 500; color: rgba(254, 55, 56, 1); line-height: 0.22rem; text-align: center; margin-top: 0.08rem; margin-bottom: 0.04rem; } .new-down-footer > span { height: 0.14rem; font-size: 0.1rem; font-weight: 400; color: rgba(136, 136, 136, 1); line-height: 0.14rem; text-align: center; display: block; } .download_layout { overflow-y: auto !important; } ================================================ FILE: server/static/download/index.html ================================================ FASHION

请点击右上角 ···
选择“在浏览器中打开”

FASHION

我不塑造时尚,我就是时尚
================================================ FILE: server/static/invite/css/common.css ================================================ html, body, form, fieldset, p, div, h1, h2, h3, h4, h5, h6 { -webkit-text-size-adjust: none } html { font-size: 62.5% } @media screen and (min-width:375px) { html { font-size: 73.24% } } @media screen and (min-width:414px) { html { font-size: 73.24% } } @media screen and (min-width:481px) { html { font-size: 94% } } @media screen and (min-width:561px) { html { font-size: 109% } } @media screen and (min-width:641px) { html { font-size: 125% } } body { margin: 0 auto; min-width: 320px; max-width: 750px; !important font-family: "Microsoft YaHei", Arial, "Helvetica"; color: #f24650; font-size: 1.2rem; width: 100%; height: 100%; background-size: 100% 100%; background-attachment: fixed; } * { margin: 0; padding: 0; border: 0; outline: 0; font: inherit; vertical-align: baseline; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } .wapper { width: 100%; background-color: #f24650; position: relative; padding-bottom: 9rem; } .wapper .banner img { width: 100%; height: 21.3rem; display: block; } .wapper .logo { top: 1.5rem; right: 1.5rem; } .wapper .logo img { width: 8.95rem; height: 2.9rem; } .wapper .avatar, .wapper .icon1, .wapper .icon2, .wapper .icon3, .wapper .logo, .wapper .mask { position: absolute; } .wapper .avatar { width: 4rem; height: 4rem; border-radius: 50%; background-color: #ffad11; border: .1rem solid #ffad11; } .wapper .avatar img { width: 100%; height: 100%; border-radius: 50%; } .logo_img { width: 4rem; height: 4rem; border-radius: 50%; } .wapper .uname { margin-top: 2.7rem; display: flex; align-items: center; justify-content: center; } .wapper .cont span, .wapper .uname span { color: #fff; /* display: inline-block; */ text-align: left; } .wapper .uname span { font-size: 1.5rem; line-height: 2.5rem; padding-left: 1rem; margin-left: 1rem; border-left: 2px solid #fff; } .wapper .cont { width: 25rem; margin: 1.3rem auto 2rem; } .wapper .form { width: 20rem; margin: 0 auto; } .wapper .form input { width: 80%; display: block; height: 1.5rem; line-height: 2rem; padding: 1rem 2rem; color: #999; font-size: 1.2rem; /* border: 1px solid #666; */ border-radius: 35px; background-size: 1.5rem 1.9rem; margin-bottom: 1rem; } .inviteBtn { display: block; width: 70%; height: 3rem; line-height: 3rem; color: #999; font-size: 1.8rem; /* border: 1px solid #666; */ border-radius: 35px; text-align: center; background: url(../image/reg_btn.jpg) no-repeat center; background-size: 100% 100%; margin: 1.5rem 3.5rem; } .downBtn { display: block; width: 70%; height: 3rem; line-height: 3rem; color: #999; font-size: 1.8rem; /* border: 1px solid #666; */ border-radius: 35px; text-align: center; background: url(../image/down_btn.jpg) no-repeat center; background-size: 100% 100%; margin: 1.5rem 3.5rem; } .verifyCode { position: absolute; font-size: 1rem; right: 1.5rem; top: .7rem; z-index: 999; height: 1.8rem; line-height: 1.8rem; color: #fff; background: #f94646; padding: 0.1rem .5rem; border-radius: .2rem; } .hide { display: none; } .text-999 { color: #999; } .regText { text-align: center; margin-top: 0rem; } .regText img { width: 8rem; height: auto; } ================================================ FILE: server/static/invite/css/layer.css ================================================ .layui-layer-imgbar,.layui-layer-imgtit a,.layui-layer-tab .layui-layer-title span,.layui-layer-title{text-overflow:ellipsis;white-space:nowrap}*html{background-image:url(about:blank);background-attachment:fixed}html #layuicss-skinlayercss{display:none;position:absolute;width:1989px}.layui-layer,.layui-layer-shade{position:fixed;_position:absolute;pointer-events:auto}.layui-layer-shade{top:0;left:0;width:100%;height:100%;_height:expression(document.body.offsetHeight+"px")}.layui-layer{-webkit-overflow-scrolling:touch;top:150px;left:0;margin:0;padding:0;background-color:#fff;-webkit-background-clip:content;box-shadow:1px 1px 50px rgba(0,0,0,.3)}.layui-layer-close{position:absolute}.layui-layer-content{position:relative}.layui-layer-border{border:1px solid #B2B2B2;border:1px solid rgba(0,0,0,.1);box-shadow:1px 1px 5px rgba(0,0,0,.2)}.layui-layer-load{background:url(loading-1.gif) center center no-repeat #eee}.layui-layer-ico{background:url(icon.png) no-repeat}.layui-layer-btn a,.layui-layer-dialog .layui-layer-ico,.layui-layer-setwin a{display:inline-block;*display:inline;*zoom:1;vertical-align:top}.layui-layer-move{display:none;position:fixed;*position:absolute;left:0;top:0;width:100%;height:100%;cursor:move;opacity:0;filter:alpha(opacity=0);background-color:#fff;z-index:2147483647}.layui-layer-resize{position:absolute;width:15px;height:15px;right:0;bottom:0;cursor:se-resize}.layui-layer{border-radius:2px;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-duration:.3s;animation-duration:.3s}@-webkit-keyframes layer-bounceIn{0%{opacity:0;-webkit-transform:scale(.5);transform:scale(.5)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes layer-bounceIn{0%{opacity:0;-webkit-transform:scale(.5);-ms-transform:scale(.5);transform:scale(.5)}100%{opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}}.layer-anim{-webkit-animation-name:layer-bounceIn;animation-name:layer-bounceIn}@-webkit-keyframes layer-zoomInDown{0%{opacity:0;-webkit-transform:scale(.1) translateY(-2000px);transform:scale(.1) translateY(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}60%{opacity:1;-webkit-transform:scale(.475) translateY(60px);transform:scale(.475) translateY(60px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}@keyframes layer-zoomInDown{0%{opacity:0;-webkit-transform:scale(.1) translateY(-2000px);-ms-transform:scale(.1) translateY(-2000px);transform:scale(.1) translateY(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}60%{opacity:1;-webkit-transform:scale(.475) translateY(60px);-ms-transform:scale(.475) translateY(60px);transform:scale(.475) translateY(60px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}.layer-anim-01{-webkit-animation-name:layer-zoomInDown;animation-name:layer-zoomInDown}@-webkit-keyframes layer-fadeInUpBig{0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes layer-fadeInUpBig{0%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}.layer-anim-02{-webkit-animation-name:layer-fadeInUpBig;animation-name:layer-fadeInUpBig}@-webkit-keyframes layer-zoomInLeft{0%{opacity:0;-webkit-transform:scale(.1) translateX(-2000px);transform:scale(.1) translateX(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}60%{opacity:1;-webkit-transform:scale(.475) translateX(48px);transform:scale(.475) translateX(48px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}@keyframes layer-zoomInLeft{0%{opacity:0;-webkit-transform:scale(.1) translateX(-2000px);-ms-transform:scale(.1) translateX(-2000px);transform:scale(.1) translateX(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}60%{opacity:1;-webkit-transform:scale(.475) translateX(48px);-ms-transform:scale(.475) translateX(48px);transform:scale(.475) translateX(48px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}.layer-anim-03{-webkit-animation-name:layer-zoomInLeft;animation-name:layer-zoomInLeft}@-webkit-keyframes layer-rollIn{0%{opacity:0;-webkit-transform:translateX(-100%) rotate(-120deg);transform:translateX(-100%) rotate(-120deg)}100%{opacity:1;-webkit-transform:translateX(0) rotate(0);transform:translateX(0) rotate(0)}}@keyframes layer-rollIn{0%{opacity:0;-webkit-transform:translateX(-100%) rotate(-120deg);-ms-transform:translateX(-100%) rotate(-120deg);transform:translateX(-100%) rotate(-120deg)}100%{opacity:1;-webkit-transform:translateX(0) rotate(0);-ms-transform:translateX(0) rotate(0);transform:translateX(0) rotate(0)}}.layer-anim-04{-webkit-animation-name:layer-rollIn;animation-name:layer-rollIn}@keyframes layer-fadeIn{0%{opacity:0}100%{opacity:1}}.layer-anim-05{-webkit-animation-name:layer-fadeIn;animation-name:layer-fadeIn}@-webkit-keyframes layer-shake{0%,100%{-webkit-transform:translateX(0);transform:translateX(0)}10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}20%,40%,60%,80%{-webkit-transform:translateX(10px);transform:translateX(10px)}}@keyframes layer-shake{0%,100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);-ms-transform:translateX(-10px);transform:translateX(-10px)}20%,40%,60%,80%{-webkit-transform:translateX(10px);-ms-transform:translateX(10px);transform:translateX(10px)}}.layer-anim-06{-webkit-animation-name:layer-shake;animation-name:layer-shake}@-webkit-keyframes fadeIn{0%{opacity:0}100%{opacity:1}}.layui-layer-title{padding:0 80px 0 20px;height:42px;line-height:42px;border-bottom:1px solid #eee;font-size:14px;color:#333;overflow:hidden;background-color:#F8F8F8;border-radius:2px 2px 0 0}.layui-layer-setwin{position:absolute;right:15px;*right:0;top:15px;font-size:0;line-height:initial}.layui-layer-setwin a{position:relative;width:16px;height:16px;margin-left:10px;font-size:12px;_overflow:hidden}.layui-layer-setwin .layui-layer-min cite{position:absolute;width:14px;height:2px;left:0;top:50%;margin-top:-1px;background-color:#2E2D3C;cursor:pointer;_overflow:hidden}.layui-layer-setwin .layui-layer-min:hover cite{background-color:#2D93CA}.layui-layer-setwin .layui-layer-max{background-position:-32px -40px}.layui-layer-setwin .layui-layer-max:hover{background-position:-16px -40px}.layui-layer-setwin .layui-layer-maxmin{background-position:-65px -40px}.layui-layer-setwin .layui-layer-maxmin:hover{background-position:-49px -40px}.layui-layer-setwin .layui-layer-close1{background-position:1px -40px;cursor:pointer}.layui-layer-setwin .layui-layer-close1:hover{opacity:.7}.layui-layer-setwin .layui-layer-close2 {background-image: url(close.png);position: absolute;right: -28px;top: -28px;width: 30px;height: 30px;margin-left: 0; transition: All 0.4s ease-in-out;*right:-18px;_display: none}.layui-layer-setwin .layui-layer-close2:hover{background-image: url(close_hover.png);transform: rotate(180deg)}.layui-layer-btn{text-align:right;padding:0 10px 12px;pointer-events:auto;user-select:none;-webkit-user-select:none}.layui-layer-btn a{height:28px;line-height:28px;margin:6px 6px 0;padding:0 15px;border:1px solid #dedede;background-color:#f1f1f1;color:#333;border-radius:2px;font-weight:400;cursor:pointer;text-decoration:none}.layui-layer-btn a:hover{opacity:.9;text-decoration:none}.layui-layer-btn a:active{opacity:.8}.layui-layer-btn .layui-layer-btn0{border-color:#4898d5;background-color:#2e8ded;color:#fff}.layui-layer-btn-l{text-align:left}.layui-layer-btn-c{text-align:center}.layui-layer-dialog{min-width:260px}.layui-layer-dialog .layui-layer-content{position:relative;padding:20px;line-height:24px;word-break:break-all;overflow:hidden;font-size:14px;overflow-x:hidden;overflow-y:auto}.layui-layer-dialog .layui-layer-content .layui-layer-ico{position:absolute;top:16px;left:15px;_left:-40px;width:30px;height:30px}.layui-layer-ico1{background-position:-30px 0}.layui-layer-ico2{background-position:-60px 0}.layui-layer-ico3{background-position:-90px 0}.layui-layer-ico4{background-position:-120px 0}.layui-layer-ico5{background-position:-150px 0}.layui-layer-ico6{background-position:-180px 0}.layui-layer-rim{border:6px solid #8D8D8D;border:6px solid rgba(0,0,0,.3);border-radius:5px;box-shadow:none}.layui-layer-msg{min-width:180px;border:1px solid #D3D4D3;box-shadow:none}.layui-layer-hui{min-width:100px;background-color:#000;filter:alpha(opacity=60);background-color:rgba(0,0,0,.6);color:#fff;border:none}.layui-layer-hui .layui-layer-content{padding:12px 25px;text-align:center}.layui-layer-dialog .layui-layer-padding{padding:20px 20px 20px 55px;text-align:left}.layui-layer-page .layui-layer-content{position:relative;overflow:auto}.layui-layer-iframe .layui-layer-btn,.layui-layer-page .layui-layer-btn{padding-top:10px}.layui-layer-nobg{background:0 0}.layui-layer-iframe iframe{display:block;width:100%}.layui-layer-loading{border-radius:100%;background:0 0;box-shadow:none;border:none}.layui-layer-loading .layui-layer-content{width:60px;height:24px;background:url(loading-0.gif) no-repeat}.layui-layer-loading .layui-layer-loading1{width:37px;height:37px;background:url(loading-1.gif) no-repeat}.layui-layer-ico16,.layui-layer-loading .layui-layer-loading2{width:32px;height:32px;background:url(loading-2.gif) no-repeat}.layui-layer-tips{background:0 0;box-shadow:none;border:none}.layui-layer-tips .layui-layer-content{position:relative;line-height:22px;min-width:12px;padding:5px 10px;font-size:12px;_float:left;border-radius:2px;box-shadow:1px 1px 3px rgba(0,0,0,.2);background-color:#000;color:#fff}.layui-layer-tips .layui-layer-close{right:-2px;top:-1px}.layui-layer-tips i.layui-layer-TipsG{position:absolute;width:0;height:0;border-width:8px;border-color:transparent;border-style:dashed;*overflow:hidden}.layui-layer-tips i.layui-layer-TipsB,.layui-layer-tips i.layui-layer-TipsT{left:5px;border-right-style:solid;border-right-color:#000}.layui-layer-tips i.layui-layer-TipsT{bottom:-8px}.layui-layer-tips i.layui-layer-TipsB{top:-8px}.layui-layer-tips i.layui-layer-TipsL,.layui-layer-tips i.layui-layer-TipsR{top:1px;border-bottom-style:solid;border-bottom-color:#000}.layui-layer-tips i.layui-layer-TipsR{left:-8px}.layui-layer-tips i.layui-layer-TipsL{right:-8px}.layui-layer-lan[type=dialog]{min-width:280px}.layui-layer-lan .layui-layer-title{background:#4476A7;color:#fff;border:none}.layui-layer-lan .layui-layer-btn{padding:5px 10px 10px;text-align:right;border-top:1px solid #E9E7E7}.layui-layer-lan .layui-layer-btn a{background:#BBB5B5;border:none}.layui-layer-lan .layui-layer-btn .layui-layer-btn1{background:#C9C5C5}.layui-layer-molv .layui-layer-title{background:#009f95;color:#fff;border:none}.layui-layer-molv .layui-layer-btn a{background:#009f95}.layui-layer-molv .layui-layer-btn .layui-layer-btn1{background:#92B8B1}.layui-layer-iconext{background:url(icon-ext.png) no-repeat}.layui-layer-prompt .layui-layer-input{display:block;width:220px;height:30px;margin:0 auto;line-height:30px;padding:0 5px;border:1px solid #ccc;box-shadow:1px 1px 5px rgba(0,0,0,.1) inset;color:#333}.layui-layer-prompt textarea.layui-layer-input{width:300px;height:100px;line-height:20px}.layui-layer-prompt .layui-layer-content{padding:20px}.layui-layer-prompt .layui-layer-btn{padding-top:0}.layui-layer-tab{box-shadow:1px 1px 50px rgba(0,0,0,.4)}.layui-layer-tab .layui-layer-title{padding-left:0;border-bottom:1px solid #ccc;background-color:#eee;overflow:visible}.layui-layer-tab .layui-layer-title span{position:relative;float:left;min-width:80px;max-width:260px;padding:0 20px;text-align:center;cursor:default;overflow:hidden}.layui-layer-tab .layui-layer-title span.layui-layer-tabnow{height:43px;border-left:1px solid #ccc;border-right:1px solid #ccc;background-color:#fff;z-index:10}.layui-layer-tab .layui-layer-title span:first-child{border-left:none}.layui-layer-tabmain{line-height:24px;clear:both}.layui-layer-tabmain .layui-layer-tabli{display:none}.layui-layer-tabmain .layui-layer-tabli.xubox_tab_layer{display:block}.xubox_tabclose{position:absolute;right:10px;top:5px;cursor:pointer}.layui-layer-photos{-webkit-animation-duration:.8s;animation-duration:.8s}.layui-layer-photos .layui-layer-content{overflow:hidden;text-align:center}.layui-layer-photos .layui-layer-phimg img{position:relative;width:100%;display:inline-block;*display:inline;*zoom:1;vertical-align:top}.layui-layer-imgbar,.layui-layer-imguide{display:none}.layui-layer-imgnext,.layui-layer-imgprev{position:absolute;top:50%;width:27px;_width:44px;height:44px;margin-top:-22px;outline:0;blr:expression(this.onFocus=this.blur())}.layui-layer-imgprev{left:10px;background-position:-5px -5px;_background-position:-70px -5px}.layui-layer-imgprev:hover{background-position:-33px -5px;_background-position:-120px -5px}.layui-layer-imgnext{right:10px;_right:8px;background-position:-5px -50px;_background-position:-70px -50px}.layui-layer-imgnext:hover{background-position:-33px -50px;_background-position:-120px -50px}.layui-layer-imgbar{position:absolute;left:0;bottom:0;width:100%;height:32px;line-height:32px;background-color:rgba(0,0,0,.8);background-color:#000\9;filter:Alpha(opacity=80);color:#fff;overflow:hidden;font-size:0}.layui-layer-imgtit *{display:inline-block;*display:inline;*zoom:1;vertical-align:top;font-size:12px}.layui-layer-imgtit a{max-width:65%;overflow:hidden;color:#fff}.layui-layer-imgtit a:hover{color:#fff;text-decoration:underline}.layui-layer-imgtit em{padding-left:10px;font-style:normal}@-webkit-keyframes layer-bounceOut{100%{opacity:0;-webkit-transform:scale(.7);transform:scale(.7)}30%{-webkit-transform:scale(1.05);transform:scale(1.05)}0%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes layer-bounceOut{100%{opacity:0;-webkit-transform:scale(.7);-ms-transform:scale(.7);transform:scale(.7)}30%{-webkit-transform:scale(1.05);-ms-transform:scale(1.05);transform:scale(1.05)}0%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}}.layer-anim-close{-webkit-animation-name:layer-bounceOut;animation-name:layer-bounceOut;-webkit-animation-duration:.2s;animation-duration:.2s}@media screen and (max-width:1100px){.layui-layer-iframe{overflow-y:auto;-webkit-overflow-scrolling:touch}} ================================================ FILE: server/static/invite/index.html ================================================
邀请码:C0SR7P

1、手机号码验证下载「FASHION搭配助手」;
2、打开 APP,即刻开始领券赚钱之旅吧!
获取验证码
================================================ FILE: server/static/invite/script/common.js ================================================ var waitTime = 60; function setTime(self) { var html; if (waitTime === 0) { $('.verifyCode').removeClass('text-999'); html = '重新获取'; waitTime = 60; $('.verifyCode').html(html); $('.verifyCode').attr('onclick', 'getCode()'); return; } else { waitTime--; $('.verifyCode').addClass('text-999'); html = "重新获取(" + waitTime + "s)"; } $('.verifyCode').html(html); setTimeout(function () { setTime() }, 1000) } //获取验证码 function getCode() { var mobile = document.getElementById("mobile"); if (mobile.value.length !== 11) { layer.msg('手机号码错误'); return false; } var url = "http://api.szjx.top/mi/send_mobile_code"; var sign = md5(Base64.encode("mobile=" + mobile.value + "&type=register")); var parameter = { mobile: mobile.value, type: 'register', sign: sign }; $.getJSON(url, parameter, function (result) { if (result.code === 1) { //设置倒计时 $('.verifyCode').attr('onclick', ''); setTime(this); } // if (result.code == 3) { // var androidUrl = result.androidUrl; // var iosUrl = result.androidUrl; // $('.register').addClass('hide'); // $('.down').removeClass('hide'); // $('#downBtn').attr('data-android-url',androidUrl); // $('#downBtn').attr('data-ios-url',iosUrl); // } layer.msg(result.msg); }); } function register() { var inviteCode = getQueryVariable("inviteCode"); var mobile = $('#mobile').val(); var verifyCode = $('#verifyCode').val(); var password = $('#password').val(); if (mobile.length !== 11) { layer.msg('手机号码错误'); return false; } if (verifyCode.length === '') { layer.msg('验证码为空'); return false; } if (password.length === '') { layer.msg('密码为空'); return false; } if (password.length < 6) { layer.msg('密码长度小于6位'); return false; } var url = "/index.php/api/wechat_bind_get_request/register.html"; var sign = md5(Base64.encode("mobile=" + mobile.value + "&code=" + code + "&verifyCode=" + verifyCode)); var parameter = { mobile: mobile, inviteCode: inviteCode, verifyCode: verifyCode, sign: sign }; $.post(url, parameter, function (result) { if (result.code === 1) { $('.register').addClass('hide'); $('.down').removeClass('hide'); } layer.msg(result.msg); }); } $('#downBtn').click(function () { var androidUrl = $('#downBtn').attr('data-android-url'); var iosUrl = $('#downBtn').attr('data-ios-url'); var u = navigator.userAgent, app = navigator.appVersion; var isAndroid = u.indexOf('Android') > -1 || u.indexOf('Linux') > -1; var isIOS = !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/); //这个是ios操作系统 if (isIOS && iosUrl) { window.location = iosUrl; } else { //这个是安卓操作系统 window.location = androidUrl; } }) function getQueryVariable(variable) { var query = window.location.search.substring(1); var vars = query.split("&"); for (var i = 0; i < vars.length; i++) { var pair = vars[i].split("="); if (pair[0] == variable) { return pair[1]; } } return (false); } ================================================ FILE: server/static/invite/script/layer.js ================================================ /*! layer-v3.0.3 Web弹层组件 MIT License http://layer.layui.com/ By 贤心 */ ;!function(e,t){"use strict";var i,n,a=e.layui&&layui.define,o={getPath:function(){var e=document.scripts,t=e[e.length-1],i=t.src;if(!t.getAttribute("merge"))return i.substring(0,i.lastIndexOf("/")+1)}(),config:{},end:{},minIndex:0,minLeft:[],btn:["确定","取消"],type:["dialog","page","iframe","loading","tips"]},r={v:"3.0.3",ie:function(){var t=navigator.userAgent.toLowerCase();return!!(e.ActiveXObject||"ActiveXObject"in e)&&((t.match(/msie\s(\d+)/)||[])[1]||"11")}(),index:e.layer&&e.layer.v?1e5:0,path:o.getPath,config:function(e,t){return e=e||{},r.cache=o.config=i.extend({},o.config,e),r.path=o.config.path||r.path,"string"==typeof e.extend&&(e.extend=[e.extend]),o.config.path&&r.ready(),e.extend?(a?layui.addcss("modules/layer/"+e.extend):r.link("skin/"+e.extend),this):this},link:function(t,n,a){if(r.path){var o=i("head")[0],s=document.createElement("link");"string"==typeof n&&(a=n);var l=(a||t).replace(/\.|\//g,""),f="layuicss-"+l,c=0;s.rel="stylesheet",s.href=r.path+t,s.id=f,i("#"+f)[0]||o.appendChild(s),"function"==typeof n&&!function u(){return++c>80?e.console&&console.error("layer.css: Invalid"):void(1989===parseInt(i("#"+f).css("width"))?n():setTimeout(u,100))}()}},ready:function(e){var t="skinlayercss",i="303";return a?layui.addcss("modules/layer/default/layer.css?v="+r.v+i,e,t):r.link("skin/default/layer.css?v="+r.v+i,e,t),this},alert:function(e,t,n){var a="function"==typeof t;return a&&(n=t),r.open(i.extend({content:e,yes:n},a?{}:t))},confirm:function(e,t,n,a){var s="function"==typeof t;return s&&(a=n,n=t),r.open(i.extend({content:e,btn:o.btn,yes:n,btn2:a},s?{}:t))},msg:function(e,n,a){var s="function"==typeof n,f=o.config.skin,c=(f?f+" "+f+"-msg":"")||"layui-layer-msg",u=l.anim.length-1;return s&&(a=n),r.open(i.extend({content:e,time:3e3,shade:!1,skin:c,title:!1,closeBtn:!1,btn:!1,resize:!1,end:a},s&&!o.config.skin?{skin:c+" layui-layer-hui",anim:u}:function(){return n=n||{},(n.icon===-1||n.icon===t&&!o.config.skin)&&(n.skin=c+" "+(n.skin||"layui-layer-hui")),n}()))},load:function(e,t){return r.open(i.extend({type:3,icon:e||0,resize:!1,shade:.01},t))},tips:function(e,t,n){return r.open(i.extend({type:4,content:[e,t],closeBtn:!1,time:3e3,shade:!1,resize:!1,fixed:!1,maxWidth:210},n))}},s=function(e){var t=this;t.index=++r.index,t.config=i.extend({},t.config,o.config,e),document.body?t.creat():setTimeout(function(){t.creat()},30)};s.pt=s.prototype;var l=["layui-layer",".layui-layer-title",".layui-layer-main",".layui-layer-dialog","layui-layer-iframe","layui-layer-content","layui-layer-btn","layui-layer-close"];l.anim=["layer-anim","layer-anim-01","layer-anim-02","layer-anim-03","layer-anim-04","layer-anim-05","layer-anim-06"],s.pt.config={type:0,shade:.3,fixed:!0,move:l[1],title:"信息",offset:"auto",area:"auto",closeBtn:1,time:0,zIndex:19891014,maxWidth:360,anim:0,isOutAnim:!0,icon:-1,moveType:1,resize:!0,scrollbar:!0,tips:2},s.pt.vessel=function(e,t){var n=this,a=n.index,r=n.config,s=r.zIndex+a,f="object"==typeof r.title,c=r.maxmin&&(1===r.type||2===r.type),u=r.title?'
'+(f?r.title[0]:r.title)+"
":"";return r.zIndex=s,t([r.shade?'
':"",'
'+(e&&2!=r.type?"":u)+'
'+(0==r.type&&r.icon!==-1?'':"")+(1==r.type&&e?"":r.content||"")+'
'+function(){var e=c?'':"";return r.closeBtn&&(e+=''),e}()+""+(r.btn?function(){var e="";"string"==typeof r.btn&&(r.btn=[r.btn]);for(var t=0,i=r.btn.length;t'+r.btn[t]+"";return'
'+e+"
"}():"")+(r.resize?'':"")+"
"],u,i('
')),n},s.pt.creat=function(){var e=this,t=e.config,a=e.index,s=t.content,f="object"==typeof s,c=i("body");if(!t.id||!i("#"+t.id)[0]){switch("string"==typeof t.area&&(t.area="auto"===t.area?["",""]:[t.area,""]),t.shift&&(t.anim=t.shift),6==r.ie&&(t.fixed=!1),t.type){case 0:t.btn="btn"in t?t.btn:o.btn[0],r.closeAll("dialog");break;case 2:var s=t.content=f?t.content:[t.content,"auto"];t.content='';break;case 3:delete t.title,delete t.closeBtn,t.icon===-1&&0===t.icon,r.closeAll("loading");break;case 4:f||(t.content=[t.content,"body"]),t.follow=t.content[1],t.content=t.content[0]+'',delete t.title,t.tips="object"==typeof t.tips?t.tips:[t.tips,!0],t.tipsMore||r.closeAll("tips")}e.vessel(f,function(n,r,u){c.append(n[0]),f?function(){2==t.type||4==t.type?function(){i("body").append(n[1])}():function(){s.parents("."+l[0])[0]||(s.data("display",s.css("display")).show().addClass("layui-layer-wrap").wrap(n[1]),i("#"+l[0]+a).find("."+l[5]).before(r))}()}():c.append(n[1]),i(".layui-layer-move")[0]||c.append(o.moveElem=u),e.layero=i("#"+l[0]+a),t.scrollbar||l.html.css("overflow","hidden").attr("layer-full",a)}).auto(a),2==t.type&&6==r.ie&&e.layero.find("iframe").attr("src",s[0]),4==t.type?e.tips():e.offset(),t.fixed&&n.on("resize",function(){e.offset(),(/^\d+%$/.test(t.area[0])||/^\d+%$/.test(t.area[1]))&&e.auto(a),4==t.type&&e.tips()}),t.time<=0||setTimeout(function(){r.close(e.index)},t.time),e.move().callback(),l.anim[t.anim]&&e.layero.addClass(l.anim[t.anim]),t.isOutAnim&&e.layero.data("isOutAnim",!0)}},s.pt.auto=function(e){function t(e){e=s.find(e),e.height(f[1]-c-u-2*(0|parseFloat(e.css("padding-top"))))}var a=this,o=a.config,s=i("#"+l[0]+e);""===o.area[0]&&o.maxWidth>0&&(r.ie&&r.ie<8&&o.btn&&s.width(s.innerWidth()),s.outerWidth()>o.maxWidth&&s.width(o.maxWidth));var f=[s.innerWidth(),s.innerHeight()],c=s.find(l[1]).outerHeight()||0,u=s.find("."+l[6]).outerHeight()||0;switch(o.type){case 2:t("iframe");break;default:""===o.area[1]?o.fixed&&f[1]>=n.height()&&(f[1]=n.height(),t("."+l[5])):t("."+l[5])}return a},s.pt.offset=function(){var e=this,t=e.config,i=e.layero,a=[i.outerWidth(),i.outerHeight()],o="object"==typeof t.offset;e.offsetTop=(n.height()-a[1])/2,e.offsetLeft=(n.width()-a[0])/2,o?(e.offsetTop=t.offset[0],e.offsetLeft=t.offset[1]||e.offsetLeft):"auto"!==t.offset&&("t"===t.offset?e.offsetTop=0:"r"===t.offset?e.offsetLeft=n.width()-a[0]:"b"===t.offset?e.offsetTop=n.height()-a[1]:"l"===t.offset?e.offsetLeft=0:"lt"===t.offset?(e.offsetTop=0,e.offsetLeft=0):"lb"===t.offset?(e.offsetTop=n.height()-a[1],e.offsetLeft=0):"rt"===t.offset?(e.offsetTop=0,e.offsetLeft=n.width()-a[0]):"rb"===t.offset?(e.offsetTop=n.height()-a[1],e.offsetLeft=n.width()-a[0]):e.offsetTop=t.offset),t.fixed||(e.offsetTop=/%$/.test(e.offsetTop)?n.height()*parseFloat(e.offsetTop)/100:parseFloat(e.offsetTop),e.offsetLeft=/%$/.test(e.offsetLeft)?n.width()*parseFloat(e.offsetLeft)/100:parseFloat(e.offsetLeft),e.offsetTop+=n.scrollTop(),e.offsetLeft+=n.scrollLeft()),i.attr("minLeft")&&(e.offsetTop=n.height()-(i.find(l[1]).outerHeight()||0),e.offsetLeft=i.css("left")),i.css({top:e.offsetTop,left:e.offsetLeft})},s.pt.tips=function(){var e=this,t=e.config,a=e.layero,o=[a.outerWidth(),a.outerHeight()],r=i(t.follow);r[0]||(r=i("body"));var s={width:r.outerWidth(),height:r.outerHeight(),top:r.offset().top,left:r.offset().left},f=a.find(".layui-layer-TipsG"),c=t.tips[0];t.tips[1]||f.remove(),s.autoLeft=function(){s.left+o[0]-n.width()>0?(s.tipLeft=s.left+s.width-o[0],f.css({right:12,left:"auto"})):s.tipLeft=s.left},s.where=[function(){s.autoLeft(),s.tipTop=s.top-o[1]-10,f.removeClass("layui-layer-TipsB").addClass("layui-layer-TipsT").css("border-right-color",t.tips[1])},function(){s.tipLeft=s.left+s.width+10,s.tipTop=s.top,f.removeClass("layui-layer-TipsL").addClass("layui-layer-TipsR").css("border-bottom-color",t.tips[1])},function(){s.autoLeft(),s.tipTop=s.top+s.height+10,f.removeClass("layui-layer-TipsT").addClass("layui-layer-TipsB").css("border-right-color",t.tips[1])},function(){s.tipLeft=s.left-o[0]-10,s.tipTop=s.top,f.removeClass("layui-layer-TipsR").addClass("layui-layer-TipsL").css("border-bottom-color",t.tips[1])}],s.where[c-1](),1===c?s.top-(n.scrollTop()+o[1]+16)<0&&s.where[2]():2===c?n.width()-(s.left+s.width+o[0]+16)>0||s.where[3]():3===c?s.top-n.scrollTop()+s.height+o[1]+16-n.height()>0&&s.where[0]():4===c&&o[0]+16-s.left>0&&s.where[1](),a.find("."+l[5]).css({"background-color":t.tips[1],"padding-right":t.closeBtn?"30px":""}),a.css({left:s.tipLeft-(t.fixed?n.scrollLeft():0),top:s.tipTop-(t.fixed?n.scrollTop():0)})},s.pt.move=function(){var e=this,t=e.config,a=i(document),s=e.layero,l=s.find(t.move),f=s.find(".layui-layer-resize"),c={};return t.move&&l.css("cursor","move"),l.on("mousedown",function(e){e.preventDefault(),t.move&&(c.moveStart=!0,c.offset=[e.clientX-parseFloat(s.css("left")),e.clientY-parseFloat(s.css("top"))],o.moveElem.css("cursor","move").show())}),f.on("mousedown",function(e){e.preventDefault(),c.resizeStart=!0,c.offset=[e.clientX,e.clientY],c.area=[s.outerWidth(),s.outerHeight()],o.moveElem.css("cursor","se-resize").show()}),a.on("mousemove",function(i){if(c.moveStart){var a=i.clientX-c.offset[0],o=i.clientY-c.offset[1],l="fixed"===s.css("position");if(i.preventDefault(),c.stX=l?0:n.scrollLeft(),c.stY=l?0:n.scrollTop(),!t.moveOut){var f=n.width()-s.outerWidth()+c.stX,u=n.height()-s.outerHeight()+c.stY;af&&(a=f),ou&&(o=u)}s.css({left:a,top:o})}if(t.resize&&c.resizeStart){var a=i.clientX-c.offset[0],o=i.clientY-c.offset[1];i.preventDefault(),r.style(e.index,{width:c.area[0]+a,height:c.area[1]+o}),c.isResize=!0,t.resizing&&t.resizing(s)}}).on("mouseup",function(e){c.moveStart&&(delete c.moveStart,o.moveElem.hide(),t.moveEnd&&t.moveEnd(s)),c.resizeStart&&(delete c.resizeStart,o.moveElem.hide())}),e},s.pt.callback=function(){function e(){var e=a.cancel&&a.cancel(t.index,n);e===!1||r.close(t.index)}var t=this,n=t.layero,a=t.config;t.openLayer(),a.success&&(2==a.type?n.find("iframe").on("load",function(){a.success(n,t.index)}):a.success(n,t.index)),6==r.ie&&t.IE6(n),n.find("."+l[6]).children("a").on("click",function(){var e=i(this).index();if(0===e)a.yes?a.yes(t.index,n):a.btn1?a.btn1(t.index,n):r.close(t.index);else{var o=a["btn"+(e+1)]&&a["btn"+(e+1)](t.index,n);o===!1||r.close(t.index)}}),n.find("."+l[7]).on("click",e),a.shadeClose&&i("#layui-layer-shade"+t.index).on("click",function(){r.close(t.index)}),n.find(".layui-layer-min").on("click",function(){var e=a.min&&a.min(n);e===!1||r.min(t.index,a)}),n.find(".layui-layer-max").on("click",function(){i(this).hasClass("layui-layer-maxmin")?(r.restore(t.index),a.restore&&a.restore(n)):(r.full(t.index,a),setTimeout(function(){a.full&&a.full(n)},100))}),a.end&&(o.end[t.index]=a.end)},o.reselect=function(){i.each(i("select"),function(e,t){var n=i(this);n.parents("."+l[0])[0]||1==n.attr("layer")&&i("."+l[0]).length<1&&n.removeAttr("layer").show(),n=null})},s.pt.IE6=function(e){i("select").each(function(e,t){var n=i(this);n.parents("."+l[0])[0]||"none"===n.css("display")||n.attr({layer:"1"}).hide(),n=null})},s.pt.openLayer=function(){var e=this;r.zIndex=e.config.zIndex,r.setTop=function(e){var t=function(){r.zIndex++,e.css("z-index",r.zIndex+1)};return r.zIndex=parseInt(e[0].style.zIndex),e.on("mousedown",t),r.zIndex}},o.record=function(e){var t=[e.width(),e.height(),e.position().top,e.position().left+parseFloat(e.css("margin-left"))];e.find(".layui-layer-max").addClass("layui-layer-maxmin"),e.attr({area:t})},o.rescollbar=function(e){l.html.attr("layer-full")==e&&(l.html[0].style.removeProperty?l.html[0].style.removeProperty("overflow"):l.html[0].style.removeAttribute("overflow"),l.html.removeAttr("layer-full"))},e.layer=r,r.getChildFrame=function(e,t){return t=t||i("."+l[4]).attr("times"),i("#"+l[0]+t).find("iframe").contents().find(e)},r.getFrameIndex=function(e){return i("#"+e).parents("."+l[4]).attr("times")},r.iframeAuto=function(e){if(e){var t=r.getChildFrame("html",e).outerHeight(),n=i("#"+l[0]+e),a=n.find(l[1]).outerHeight()||0,o=n.find("."+l[6]).outerHeight()||0;n.css({height:t+a+o}),n.find("iframe").css({height:t})}},r.iframeSrc=function(e,t){i("#"+l[0]+e).find("iframe").attr("src",t)},r.style=function(e,t,n){var a=i("#"+l[0]+e),r=a.find(".layui-layer-content"),s=a.attr("type"),f=a.find(l[1]).outerHeight()||0,c=a.find("."+l[6]).outerHeight()||0;a.attr("minLeft");s!==o.type[3]&&s!==o.type[4]&&(n||(parseFloat(t.width)<=260&&(t.width=260),parseFloat(t.height)-f-c<=64&&(t.height=64+f+c)),a.css(t),c=a.find("."+l[6]).outerHeight(),s===o.type[2]?a.find("iframe").css({height:parseFloat(t.height)-f-c}):r.css({height:parseFloat(t.height)-f-c-parseFloat(r.css("padding-top"))-parseFloat(r.css("padding-bottom"))}))},r.min=function(e,t){var a=i("#"+l[0]+e),s=a.find(l[1]).outerHeight()||0,f=a.attr("minLeft")||181*o.minIndex+"px",c=a.css("position");o.record(a),o.minLeft[0]&&(f=o.minLeft[0],o.minLeft.shift()),a.attr("position",c),r.style(e,{width:180,height:s,left:f,top:n.height()-s,position:"fixed",overflow:"hidden"},!0),a.find(".layui-layer-min").hide(),"page"===a.attr("type")&&a.find(l[4]).hide(),o.rescollbar(e),a.attr("minLeft")||o.minIndex++,a.attr("minLeft",f)},r.restore=function(e){var t=i("#"+l[0]+e),n=t.attr("area").split(",");t.attr("type");r.style(e,{width:parseFloat(n[0]),height:parseFloat(n[1]),top:parseFloat(n[2]),left:parseFloat(n[3]),position:t.attr("position"),overflow:"visible"},!0),t.find(".layui-layer-max").removeClass("layui-layer-maxmin"),t.find(".layui-layer-min").show(),"page"===t.attr("type")&&t.find(l[4]).show(),o.rescollbar(e)},r.full=function(e){var t,a=i("#"+l[0]+e);o.record(a),l.html.attr("layer-full")||l.html.css("overflow","hidden").attr("layer-full",e),clearTimeout(t),t=setTimeout(function(){var t="fixed"===a.css("position");r.style(e,{top:t?0:n.scrollTop(),left:t?0:n.scrollLeft(),width:n.width(),height:n.height()},!0),a.find(".layui-layer-min").hide()},100)},r.title=function(e,t){var n=i("#"+l[0]+(t||r.index)).find(l[1]);n.html(e)},r.close=function(e){var t=i("#"+l[0]+e),n=t.attr("type"),a="layer-anim-close";if(t[0]){var s="layui-layer-wrap",f=function(){if(n===o.type[1]&&"object"===t.attr("conType")){t.children(":not(."+l[5]+")").remove();for(var a=t.find("."+s),r=0;r<2;r++)a.unwrap();a.css("display",a.data("display")).removeClass(s)}else{if(n===o.type[2])try{var f=i("#"+l[4]+e)[0];f.contentWindow.document.write(""),f.contentWindow.close(),t.find("."+l[5])[0].removeChild(f)}catch(c){}t[0].innerHTML="",t.remove()}"function"==typeof o.end[e]&&o.end[e](),delete o.end[e]};t.data("isOutAnim")&&t.addClass(a),i("#layui-layer-moves, #layui-layer-shade"+e).remove(),6==r.ie&&o.reselect(),o.rescollbar(e),t.attr("minLeft")&&(o.minIndex--,o.minLeft.push(t.attr("minLeft"))),r.ie&&r.ie<10||!t.data("isOutAnim")?f():setTimeout(function(){f()},200)}},r.closeAll=function(e){i.each(i("."+l[0]),function(){var t=i(this),n=e?t.attr("type")===e:1;n&&r.close(t.attr("times")),n=null})};var f=r.cache||{},c=function(e){return f.skin?" "+f.skin+" "+f.skin+"-"+e:""};r.prompt=function(e,t){var a="";if(e=e||{},"function"==typeof e&&(t=e),e.area){var o=e.area;a='style="width: '+o[0]+"; height: "+o[1]+';"',delete e.area}var s,l=2==e.formType?'":function(){return''}(),f=e.success;return delete e.success,r.open(i.extend({type:1,btn:["确定","取消"],content:l,skin:"layui-layer-prompt"+c("prompt"),maxWidth:n.width(),success:function(e){s=e.find(".layui-layer-input"),s.focus(),"function"==typeof f&&f(e)},resize:!1,yes:function(i){var n=s.val();""===n?s.focus():n.length>(e.maxlength||500)?r.tips("最多输入"+(e.maxlength||500)+"个字数",s,{tips:1}):t&&t(n,i,s)}},e))},r.tab=function(e){e=e||{};var t=e.tab||{},n=e.success;return delete e.success,r.open(i.extend({type:1,skin:"layui-layer-tab"+c("tab"),resize:!1,title:function(){var e=t.length,i=1,n="";if(e>0)for(n=''+t[0].title+"";i"+t[i].title+"";return n}(),content:'
    '+function(){var e=t.length,i=1,n="";if(e>0)for(n='
  • '+(t[0].content||"no content")+"
  • ";i'+(t[i].content||"no content")+"";return n}()+"
",success:function(t){var a=t.find(".layui-layer-title").children(),o=t.find(".layui-layer-tabmain").children();a.on("mousedown",function(t){t.stopPropagation?t.stopPropagation():t.cancelBubble=!0;var n=i(this),a=n.index();n.addClass("layui-layer-tabnow").siblings().removeClass("layui-layer-tabnow"),o.eq(a).show().siblings().hide(),"function"==typeof e.change&&e.change(a)}),"function"==typeof n&&n(t)}},e))},r.photos=function(t,n,a){function o(e,t,i){var n=new Image;return n.src=e,n.complete?t(n):(n.onload=function(){n.onload=null,t(n)},void(n.onerror=function(e){n.onerror=null,i(e)}))}var s={};if(t=t||{},t.photos){var l=t.photos.constructor===Object,f=l?t.photos:{},u=f.data||[],d=f.start||0;s.imgIndex=(0|d)+1,t.img=t.img||"img";var y=t.success;if(delete t.success,l){if(0===u.length)return r.msg("没有图片")}else{var p=i(t.photos),h=function(){u=[],p.find(t.img).each(function(e){var t=i(this);t.attr("layer-index",e),u.push({alt:t.attr("alt"),pid:t.attr("layer-pid"),src:t.attr("layer-src")||t.attr("src"),thumb:t.attr("src")})})};if(h(),0===u.length)return;if(n||p.on("click",t.img,function(){var e=i(this),n=e.attr("layer-index");r.photos(i.extend(t,{photos:{start:n,data:u,tab:t.tab},full:t.full}),!0),h()}),!n)return}s.imgprev=function(e){s.imgIndex--,s.imgIndex<1&&(s.imgIndex=u.length),s.tabimg(e)},s.imgnext=function(e,t){s.imgIndex++,s.imgIndex>u.length&&(s.imgIndex=1,t)||s.tabimg(e)},s.keyup=function(e){if(!s.end){var t=e.keyCode;e.preventDefault(),37===t?s.imgprev(!0):39===t?s.imgnext(!0):27===t&&r.close(s.index)}},s.tabimg=function(e){if(!(u.length<=1))return f.start=s.imgIndex-1,r.close(s.index),r.photos(t,!0,e)},s.event=function(){s.bigimg.hover(function(){s.imgsee.show()},function(){s.imgsee.hide()}),s.bigimg.find(".layui-layer-imgprev").on("click",function(e){e.preventDefault(),s.imgprev()}),s.bigimg.find(".layui-layer-imgnext").on("click",function(e){e.preventDefault(),s.imgnext()}),i(document).on("keyup",s.keyup)},s.loadi=r.load(1,{shade:!("shade"in t)&&.9,scrollbar:!1}),o(u[d].src,function(n){r.close(s.loadi),s.index=r.open(i.extend({type:1,id:"layui-layer-photos",area:function(){var a=[n.width,n.height],o=[i(e).width()-100,i(e).height()-100];if(!t.full&&(a[0]>o[0]||a[1]>o[1])){var r=[a[0]/o[0],a[1]/o[1]];r[0]>r[1]?(a[0]=a[0]/r[0],a[1]=a[1]/r[0]):r[0]'+(u[d].alt||
'+(u.length>1?'':"")+'
'+(u[d].alt||"")+""+s.imgIndex+"/"+u.length+"
",success:function(e,i){s.bigimg=e.find(".layui-layer-phimg"),s.imgsee=e.find(".layui-layer-imguide,.layui-layer-imgbar"),s.event(e),t.tab&&t.tab(u[d],e),"function"==typeof y&&y(e)},end:function(){s.end=!0,i(document).off("keyup",s.keyup)}},t))},function(){r.close(s.loadi),r.msg("当前图片地址异常
是否继续查看下一张?",{time:3e4,btn:["下一张","不看了"],yes:function(){u.length>1&&s.imgnext(!0,!0)}})})}},o.run=function(t){i=t,n=i(e),l.html=i("html"),r.open=function(e){var t=new s(e);return t.index}},e.layui&&layui.define?(r.ready(),layui.define("jquery",function(t){r.path=layui.cache.dir,o.run(layui.jquery),e.layer=r,t("layer",r)})):"function"==typeof define&&define.amd?define(["jquery"],function(){return o.run(e.jQuery),r}):function(){o.run(e.jQuery),r.ready()}()}(window); ================================================ FILE: server/static/user/agreement.html ================================================ Fashion用户服务协议
Fashion用户服务协议
一、服务条款的确认和修改
1.本协议服务条款(以下简称“服务条款”)是由用户(您)与Fashion订立,并适用于Fashion提供的所有网络服务。
2.用户在使用Fashion提供的网络服务前有义务仔细阅读本协议。用户在登录程序过程中“我已阅读服务条款”即表示用户完全接受本协议项下的全部条款。本协议即构成对Fashion和用户双方之间均具有法律约束力的正式文件。
3.用户在此不可撤销地承诺,若其使用Fashion提供的网络服务,将视为用户同意并接受本协议全部条款的约束,此后用户无权以未阅读本协议或对本协议有任何误解为由,主张本协议无效或要求撤销本协议。
4.服务条款可由Fashion随时更新,且无须另行通知。服务条款一旦发生变更,Fashion将在Fashion网站上公布修改内容。修改后的服务条款一旦在Fashion网站上公布即有效代替原来的服务条款。您可随时打开网站查阅最新版服务条款。用户如果不同意修改后的本协议的任何条款,可以放弃访问Fashion相关网页或主动卸载Fashion客户端;如果用户选择继续接受Fashion提供的服务,则视为用户已经完全接受本协议及其修改。
二、用户行为规范
在使用Fashion服务过程中,您承诺遵守下列使用规范:
1.用户不得利用Fashion的服务制作、复制、发布、传播以下信息:
1)对宪法确定的基本原则的;
2)危害国家统一、主权和领土完整的;
3)泄露国家秘密、危害国家安全或者损害国家荣誉和利益的;
4)煽动民族仇恨、民族歧视,破坏民族团结,或者侵害民族风俗、习惯的;
5)宣扬邪教、迷信的;
6)扰乱社会秩序,破坏社会稳定的;
7)诱导未成年人违法犯罪和渲染暴力、色情、赌博、恐怖活动的;
8)侮辱或者诽谤他人,侵害公民个人隐私等他人合法权益的;
9)危害社会公德,损害民族优秀文化传统的;
10)有关法律、行政法规和国家规定禁止的其他内容。
2.基于网络服务的特性及重要性,会员同意:
1)提供详尽、准确的个人资料。
2)不断更新注册资料,符合及时、详尽、准确的要求。
3)自行配备上网的所需设备,包括个人电脑、调制解调器或其他必备上网装置。
4)自行负担个人上网所支付的与此服务有关的电话费用、网络费用。
3.用户不应将其帐号、密码转让或出借予他人使用。如用户发现其帐号遭他人非法使用,应立即通知Fashion。因黑客行为或用户的保管疏忽导致帐号、密码遭他人非法使用,Fashion不承担任何责任。
4.用户同意Fashion有权在提供网络服务过程中以各种方式投放各种商业性广告或其他任何类型的商业信息(包括但不限于在Fashion产品的任何页面上投放广告),并且,用户同意接受Fashion通过短信、电子邮件或其他方式向用户发送产品促销或其他相关商业信息。
5.用户同意授权Fashion提供用户淘宝收藏夹和购物车功能。
6.对于用户通过Fashion网络服务(包括但不限于论坛、BBS、评论、个人微博)上传到Fashion上可公开获取区域的任何内容,用户同意Fashion在全世界范围内具有免费的、永久性的、不可撤销的、非独家的和完全再许可的权利和许可,以使用、复制、修改、改编、出版、翻译、据以创作衍生作品、传播、表演和展示此等内容(整体或部分),和/或将此等内容编入当前已知的或以后开发的其他任何形式的作品、媒体或技术中。
7.用户在使用Fashion网络服务过程中或者通过Fashion服务所传送的任何内容并不反映Fashion的观点或政策,Fashion对此不承担任何责任。
8.因用户支付宝异常导致返利无法到帐,用户须在该订单确认收货后90天内主动联系Fashion客服处理,逾期不予处理。
9.用户不得利用Fashion进行任何不利于Fashion的行为。当Fashion系统检测到用户有异常行为,或者接到关于用户恶意套取返利的举报,Fashion有权延长发放时间(最迟180天)或冻结返利。用户异常行为包括但不局限于恶意刷单、刷返利补贴、套取返利、违规操作等Fashion风控部门认定的异常操作和异常返利行为。
10.Fashion有权对用户使用Fashion服务的情况进行审查和监督(包括但不限于对用户存储在Fashion的内容进行审核),如用户在使用Fashion网络服务时违反任何上述规定,Fashion有权要求用户改正或直接采取一切必要的措施取消会员账户应该享有的会员福利(返利、红包、积分、玛瑙币、活动奖励等Fashion提供给用户的福利)(包括但不限于更改或删除用户张贴的内容等、冻结返利或终止用户使用Fashion网络服务的权利)以减轻用户不当行为造成的影响。
三、隐私权政策
1.Fashion对希望成为会员的用户没有任何限制,但18岁以下的用户使用Fashion服务必须取得监护人的同意;
2.一个帐号仅限一个会员使用,会员必须向Fashion提供真实确实的信息,对于由于资料提供不正确导致汇款无法收到等后果,Fashion不承担责任;
3.会员资料修改后必须及时通知Fashion做出相应变更;
4.Fashion及其关联公司承诺不向其它第三方机构透露会员涉及隐私的信息;
5.会员必须遵守Fashion(及合作组织)的使用条款及隐私政策。
四、协议终止
1.您同意,Fashion有权依据本协议决定中止、终止向您提供部分或全部Fashion平台服务,暂时冻结或永久冻结(注销)您的账户,且无须为此向您或任何第三方承担任何责任,但本协议或法律法规另有明确要求的除外。
2.出现以下情况时,Fashion有权直接以注销账户的方式终止本协议:
1)会员超过两年无登陆记录;
2)Fashion终止向您提供服务后,您涉嫌再一次直接或间接或以他人名义注册为Fashion用户的;
3)您提供的电子邮箱不存在或无法接收电子邮件,且没有其他方式可以与您进行联系,或Fashion以其它联系方式通知您更改电子邮件信息,而您在Fashion通知后七个工作日内仍未更改为有效的电子邮箱的;
4)您注册信息中的主要内容不真实或不准确或不及时或不完整;
5)Fashion系统检测您的账户有恶意刷单、刷返利补贴、套取返利、违规操作,且无法向Fashion提供合理解释说明的;
6)本协议(含规则)变更时,您明示并通知Fashion不愿接受新的服务协议的;
7)其它Fashion认为应当终止服务的情况。
3.您有权向Fashion要求注销您的账户,经Fashion审核同意的,Fashion注销(永久冻结)您的账户,届时,您与Fashion基于本协议的合同关系即终止。您的账户被注销(永久冻结)后,Fashion没有义务为您保留或向您披露您账户中的任何信息,也没有义务向您或第三方转发任何您未曾阅读或发送过的信息。
4.您同意,您与Fashion的合同关系终止后,Fashion及其关联公司或者其合作组织仍享有下列权利:
1)继续保存并使用您的注册、登记信息、数据及您使用Fashion服务期间的所有交易数据。
2)您在使用Fashion服务期间存在违法行为或违反本协议和/或规则的行为的,Fashion仍可依据本协议向您主张权利。
5.Fashion中止或终止向您提供服务后,对于您在服务中止或终止之前的交易行为依下列原则处理,您应独力处理并完全承担进行以下处理所产生的任何争议、损失或增加的任何费用,并应确保Fashion免于因此产生任何损失或承担任何费用:
1)您在服务中止或终止之前已经上传至Fashion的物品尚未交易的,Fashion有权在中止或终止服务的同时删除此项物品的相关信息;
2)您在服务中止或终止之前已经与其他会员达成买卖合同,但合同尚未实际履行的,Fashion有权删除该买卖合同及其交易物品的相关信息;
3)您在服务中止或终止之前已经与其他会员达成买卖合同且已部分履行的,Fashion可以不删除该项交易,但Fashion有权在中止或终止服务的同时将相关情形通知您的交易对方。
4)您在服务中止或终止之前通过Fashion进行恶意刷单、刷返利补贴、套取返利、违规操作等给Fashion带来经济损失的,Fashion有权向用户追回利益损失。
五、法律适用、管辖与争议解决
1、本协议之效力、解释、变更、执行与争议解决均适用中华人民共和国法律,如无相关法律规定的,则应参照通用国际商业惯例和(或)行业惯例。
2、因本协议产生之争议,应依照中华人民共和国法律予以处理。
六、其他规定
1.本协议构成双方对本协议之约定事项及其他有关事宜的完整协议,除本协议规定的之外,未赋予本协议各方其他权利。
2.如本协议中的任何条款无论因何种原因完全或部分无效或不具有执行力,本协议的其余条款仍应有效并且有约束力。
3.本协议中的标题仅为方便而设,在解释本协议时应被忽略。