Full Code of silently9527/coupons for AI

master 757b028bd690 cached
203 files
724.6 KB
258.1k tokens
410 symbols
1 requests
Download .txt
Showing preview only (808K chars total). Download the full file or copy to clipboard to get everything.
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. <http://fsf.org/>
 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.

    <one line to give the program's name and a brief idea of what it does.>
    Copyright (C) <year>  <name of author>

    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 <http://www.gnu.org/licenses/>.

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:

    <program>  Copyright (C) <2021>  <Silently9527>
    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
<http://www.gnu.org/licenses/>.

  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
<http://www.gnu.org/philosophy/why-not-lgpl.html>.

================================================
FILE: README.md
================================================

<p align="center">
    <a href="https://t.zsxq.com/h2EIR" target="_blank"><img alt="" src="https://img.shields.io/badge/知识星球-Herman's Notes-red&logoColor=FC5531" /></a>
  <a href="#微信公众号"><img src="https://img.shields.io/badge/公众号-贝塔学JAVA-blue.svg" alt="公众号"></a>
  <a href="https://juejin.cn/user/2779199782521693"><img src="https://img.shields.io/badge/juejin-掘金-yellow.svg" alt="掘金"></a>
  <a href="https://blog.csdn.net/asdewq380303318"><img src="https://img.shields.io/badge/csdn-CSDN-red.svg" alt="CSDN"></a>
  <a href="https://my.oschina.net/u/3230120"><img src="https://img.shields.io/badge/oschina-开源中国-green" alt="开源中国"></a>
  <a href="https://www.zhihu.com/people/huaan9527-57/posts"><img src="https://img.shields.io/badge/zhihu-知乎-purple" alt="知乎"></a>
</p>


# 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] 用户新手教程

## 在线体验地址
<table>
    <tbody>
        <tr>
            <td align="center">App下载地址</td>
            <td align="center">QQ小程序</td>
            <td align="center">微信小程序</td>
            <td align="center">Web站点</td>
        </tr>
        <tr style="background-color: white;">
            <td align="center"><img width="200" src="https://tva1.sinaimg.cn/large/008eGmZEgy1gn4esj3uutj30b40b4jsx.jpg"></td>
            <td align="center"><img width="200" src="https://tva1.sinaimg.cn/large/008eGmZEgy1gn4et70ft2j30g40g4gm6.jpg"></td>
            <td align="center"><img width="200" src="https://tva1.sinaimg.cn/large/008eGmZEgy1gn4etut7d1j3076076aa2.jpg"></td>
            <td align="center"><img width="200" src="https://tva1.sinaimg.cn/large/008eGmZEgy1gn4euhcqonj30b40b43yt.jpg"></td>
        </tr>
    </tbody>
</table>

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)

## 效果预览
<table>
    <tbody>
        <tr style="background-color: white;">
            <td align="center"><img width="200" src="https://tva1.sinaimg.cn/large/008eGmZEly1gn4hfiqyqoj30ku11240m.jpg"></td>
            <td align="center"><img width="200" src="https://tva1.sinaimg.cn/large/008eGmZEly1gn4hggo8thj30ku112aba.jpg"></td>
            <td align="center"><img width="200" src="https://tva1.sinaimg.cn/large/008eGmZEly1gn4hge5bwuj30ku112my9.jpg"></td>
            <td align="center"><img width="200" src="https://tva1.sinaimg.cn/large/008eGmZEly1gn4hgbc1e2j30ku112dhz.jpg"></td>
        </tr>
        <tr style="background-color: white;">
            <td align="center"><img width="200" src="https://tva1.sinaimg.cn/large/008eGmZEly1gn4hg8p7uhj30ku112acg.jpg"></td>
            <td align="center"><img width="200" src="https://tva1.sinaimg.cn/large/008eGmZEly1gn4hg5kj8lj30ku112tc6.jpg"></td>
            <td align="center"><img width="200" src="https://tva1.sinaimg.cn/large/008eGmZEly1gn4hg10sibj30ku112acs.jpg"></td>
            <td align="center"><img width="200" src="https://tva1.sinaimg.cn/large/008eGmZEly1gn4hft8rzcj30ku1123yt.jpg"></td>
        </tr>
    </tbody>
</table>


## 组织结构

```
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

<img src="https://cdn.silently9527.cn/weixhao_gongzonghao_1629032267170.jpg?imageView2/1/w/600/h/350" alt="公众号">

## 其他项目推荐
* [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
================================================
<script>
  /**
   * vuex管理登陆状态,具体可以参考官方登陆模板示例
   */
  import app from 'app.js'
  import {mapMutations} from 'vuex'

  export default {
    onLaunch: function () {
      app.initTitleNav();
      app.initShareMenu();

      this.$api.backend.getLoginUser().then(resp => {
        if (resp.responseCode === 7002) {
          this.logout();
        } else {
          this.storeUser(resp.data)
        }
      })

    },
    onShow: function (res) {
      if (res.shareTicket) {
        this.storeShareTicket(res.shareTicket)
      }
    },
    onHide: function () {
    },
    methods: {
      ...mapMutations(['storeUser', 'logout', 'storeShareTicket'])
    }
  }
</script>

<style lang="scss">
  @import "colorui/icon.css";
  @import "colorui/main.css";
  @import "style/app.scss";

  .container {
    background: $page-color-base;
  }
</style>


================================================
FILE: client/LICENSE
================================================
                    GNU GENERAL PUBLIC LICENSE
                       Version 3, 29 June 2007

 Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
 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.

    <one line to give the program's name and a brief idea of what it does.>
    Copyright (C) <year>  <name of author>

    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 <http://www.gnu.org/licenses/>.

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:

    <program>  Copyright (C) <2021>  <Silently9527>
    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
<http://www.gnu.org/licenses/>.

  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
<http://www.gnu.org/philosophy/why-not-lgpl.html>.


================================================
FILE: client/README.md
================================================
# Mall-Coupons

<p align="center">
  <a href="#微信公众号"><img src="https://img.shields.io/badge/公众号-贝塔学JAVA-blue.svg" alt="公众号"></a>
  <a href="https://juejin.cn/user/2779199782521693"><img src="https://img.shields.io/badge/juejin-掘金-yellow.svg" alt="掘金"></a>
  <a href="https://blog.csdn.net/asdewq380303318"><img src="https://img.shields.io/badge/csdn-CSDN-red.svg" alt="CSDN"></a>
  <a href="https://my.oschina.net/u/3230120"><img src="https://img.shields.io/badge/oschina-开源中国-green" alt="开源中国"></a>
  <a href="https://www.zhihu.com/people/huaan9527-57/posts"><img src="https://img.shields.io/badge/zhihu-知乎-purple" alt="知乎"></a>
</p>

# 文档完善中...

## 项目介绍
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] 用户新手教程

## 在线体验地址
<table>
    <tbody>
        <tr>
            <td align="center">App下载地址</td>
            <td align="center">QQ小程序</td>
            <td align="center">微信小程序</td>
            <td align="center">Web站点</td>
        </tr>
        <tr style="background-color: white;">
            <td align="center"><img width="200" src="https://tva1.sinaimg.cn/large/008eGmZEgy1gn4esj3uutj30b40b4jsx.jpg"></td>
            <td align="center"><img width="200" src="https://tva1.sinaimg.cn/large/008eGmZEgy1gn4et70ft2j30g40g4gm6.jpg"></td>
            <td align="center"><img width="200" src="https://tva1.sinaimg.cn/large/008eGmZEgy1gn4etut7d1j3076076aa2.jpg"></td>
            <td align="center"><img width="200" src="https://tva1.sinaimg.cn/large/008eGmZEgy1gn4euhcqonj30b40b43yt.jpg"></td>
        </tr>
    </tbody>
</table>

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)

## 效果预览
<table>
    <tbody>
        <tr style="background-color: white;">
            <td align="center"><img width="200" src="https://tva1.sinaimg.cn/large/008eGmZEly1gn4hfiqyqoj30ku11240m.jpg"></td>
            <td align="center"><img width="200" src="https://tva1.sinaimg.cn/large/008eGmZEly1gn4hggo8thj30ku112aba.jpg"></td>
            <td align="center"><img width="200" src="https://tva1.sinaimg.cn/large/008eGmZEly1gn4hge5bwuj30ku112my9.jpg"></td>
            <td align="center"><img width="200" src="https://tva1.sinaimg.cn/large/008eGmZEly1gn4hgbc1e2j30ku112dhz.jpg"></td>
        </tr>
        <tr style="background-color: white;">
            <td align="center"><img width="200" src="https://tva1.sinaimg.cn/large/008eGmZEly1gn4hg8p7uhj30ku112acg.jpg"></td>
            <td align="center"><img width="200" src="https://tva1.sinaimg.cn/large/008eGmZEly1gn4hg5kj8lj30ku112tc6.jpg"></td>
            <td align="center"><img width="200" src="https://tva1.sinaimg.cn/large/008eGmZEly1gn4hg10sibj30ku112acs.jpg"></td>
            <td align="center"><img width="200" src="https://tva1.sinaimg.cn/large/008eGmZEly1gn4hft8rzcj30ku1123yt.jpg"></td>
        </tr>
    </tbody>
</table>


## 技术选型

#### 后端技术
|  技术   | 备注  | 地址  |
|  ----  | ----  |----  |
| 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` ;回复`文档`获取部署文档

**有任何部署疑问,欢迎给我留言**

## 微信公众号
<img width="200" src="https://raw.githubusercontent.com/silently9527/JavaCore/master/imgs/gonzhonghao.png" alt="公众号">

## 我的技术博客
[https://silently9527.cn/](https://silently9527.cn/)

## 捐赠研发
如果您认为此项目帮到了您的开发工作,使您赚到钱了,您可以捐赠我一杯可乐(相信这比打赏主播更有意义)。

<img width="200" src="https://tva1.sinaimg.cn/large/008eGmZEgy1gn63yahvn4j30ia0igjsw.jpg">


================================================
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
================================================
<template>
    <view>
        <view class="cu-custom" :style="[{height:CustomBar + 'px'}]">
            <view class="cu-bar fixed" :style="style" :class="[bgImage!==''?'none-bg text-white bg-img':'',bgColor]">
                <slot name="left"></slot>
                <view class="action padding-top-xs padding-bottom-xs padding-right-xs" @tap="BackPage" v-if="isBack">
                    <text class="icon icon-back"></text>
                    <slot name="backText"></slot>
                </view>
                <view class="content" :style="[{top:StatusBar + 'px'}]">
                    <slot name="content"></slot>
                </view>
                <slot name="right"></slot>
                <slot name="custom"></slot>
            </view>
        </view>
    </view>
</template>

<script>
    export default {
        data() {
            return {
                StatusBar: this.StatusBar,
                CustomBar: this.CustomBar
            };
        },
        name: 'cu-custom',
        computed: {
            style() {
                var StatusBar = this.StatusBar;
                var CustomBar = this.CustomBar;
                var bgImage = this.bgImage;
                var style = `height:${CustomBar}px;padding-top:${StatusBar}px;`;
                if (this.bgImage) {
                    style = `${style}background-image:url(${bgImage});`;
                }
                return style
            }
        },
        props: {
            bgColor: {
                type: String,
                default: ''
            },
            url: {
                type: String,
                default: ''
            },
            tab: {
                type: Boolean,
                default: false
            },
            isBack: {
                type: [Boolean, String],
                default: false
            },
            bgImage: {
                type: String,
                default: ''
            }
        },
        methods: {
            BackPage() {
                if (this.url) {
                    if (this.tab) {
                        return uni.switchTab({
                            url: this.url
                        });
                    } else {
                        return uni.redirectTo({
                            url: this.url
                        })
                    }
                }
                if (getCurrentPages().length < 2) {
                    let url = '/pages/collocation/index'
                    return uni.switchTab({
                        url
                    })
                }
                uni.navigateBack({
                    delta: 1
                });
            }
        }
    }
</script>

<style>

</style>


================================================
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
================================================
<template>
	<view>
		<view v-if="popMenu && (leftBottom||rightBottom||leftTop||rightTop)" :class="{
        'uni-fab--leftBottom': leftBottom,
        'uni-fab--rightBottom': rightBottom,
        'uni-fab--leftTop': leftTop,
        'uni-fab--rightTop': rightTop
      }"
		 class="uni-fab">
			<view :class="{
          'uni-fab__content--left': horizontal === 'left',
          'uni-fab__content--right': horizontal === 'right',
          'uni-fab__content--flexDirection': direction === 'vertical',
          'uni-fab__content--flexDirectionStart': flexDirectionStart,
          'uni-fab__content--flexDirectionEnd': flexDirectionEnd,
		  'uni-fab__content--other-platform': !isAndroidNvue
        }"
			 :style="{ width: boxWidth, height: boxHeight, backgroundColor: styles.backgroundColor }" class="uni-fab__content"
			 elevation="5">
				<view v-if="flexDirectionStart || horizontalLeft" class="uni-fab__item uni-fab__item--first" />
				<view v-for="(item, index) in content" :key="index" :class="{ 'uni-fab__item--active': isShow }" class="uni-fab__item"
				 @click="_onItemClick(index, item)">
					<image :src="item.active ? item.selectedIconPath : item.iconPath" class="uni-fab__item-image" mode="widthFix" />
					<text class="uni-fab__item-text" :style="{ color: item.active ? styles.selectedColor : styles.color }">{{ item.text }}</text>
				</view>
				<view v-if="flexDirectionEnd || horizontalRight" class="uni-fab__item uni-fab__item--first" />
			</view>
		</view>
		<view :class="{
		  'uni-fab__circle--leftBottom': leftBottom,
		  'uni-fab__circle--rightBottom': rightBottom,
		  'uni-fab__circle--leftTop': leftTop,
		  'uni-fab__circle--rightTop': rightTop,
		  'uni-fab__content--other-platform': !isAndroidNvue
		}"
		 class="uni-fab__circle uni-fab__plus" :style="{ 'background-color': styles.buttonColor }" @click="_onClick">
			<view class="fab-circle-v" :class="{'uni-fab__plus--active': isShow}"></view>
			<view class="fab-circle-h" :class="{'uni-fab__plus--active': isShow}"></view>
		</view>
	</view>
</template>

<script>
	let platform = 'other'
	// #ifdef APP-NVUE
	platform = uni.getSystemInfoSync().platform
	// #endif

	/**
	 * Fab 悬浮按钮
	 * @description 点击可展开一个图形按钮菜单
	 * @tutorial https://ext.dcloud.net.cn/plugin?id=144
	 * @property {Object} pattern 可选样式配置项
	 * @property {Object} horizontal = [left | right] 水平对齐方式
	 * 	@value left 左对齐
	 * 	@value right 右对齐
	 * @property {Object} vertical = [bottom | top] 垂直对齐方式
	 * 	@value bottom 下对齐
	 * 	@value top 上对齐
	 * @property {Object} direction = [horizontal | vertical] 展开菜单显示方式
	 * 	@value horizontal 水平显示
	 * 	@value vertical 垂直显示
	 * @property {Array} content 展开菜单内容配置项
	 * @property {Boolean} popMenu 是否使用弹出菜单
	 * @event {Function} trigger 展开菜单点击事件,返回点击信息
	 * @event {Function} fabClick 悬浮按钮点击事件
	 */
	export default {
		name: 'UniFab',
		props: {
			pattern: {
				type: Object,
				default () {
					return {}
				}
			},
			horizontal: {
				type: String,
				default: 'left'
			},
			vertical: {
				type: String,
				default: 'bottom'
			},
			direction: {
				type: String,
				default: 'horizontal'
			},
			content: {
				type: Array,
				default () {
					return []
				}
			},
			show: {
				type: Boolean,
				default: false
			},
			popMenu: {
				type: Boolean,
				default: true
			}
		},
		data() {
			return {
				fabShow: false,
				isShow: false,
				isAndroidNvue: platform === 'android',
				styles: {
					color: '#3c3e49',
					selectedColor: '#007AFF',
					backgroundColor: '#fff',
					buttonColor: '#3c3e49'
				}
			}
		},
		computed: {
			contentWidth(e) {
				return (this.content.length + 1) * 55 + 10 + 'px'
			},
			contentWidthMin() {
				return 55 + 'px'
			},
			// 动态计算宽度
			boxWidth() {
				return this.getPosition(3, 'horizontal')
			},
			// 动态计算高度
			boxHeight() {
				return this.getPosition(3, 'vertical')
			},
			// 计算左下位置
			leftBottom() {
				return this.getPosition(0, 'left', 'bottom')
			},
			// 计算右下位置
			rightBottom() {
				return this.getPosition(0, 'right', 'bottom')
			},
			// 计算左上位置
			leftTop() {
				return this.getPosition(0, 'left', 'top')
			},
			rightTop() {
				return this.getPosition(0, 'right', 'top')
			},
			flexDirectionStart() {
				return this.getPosition(1, 'vertical', 'top')
			},
			flexDirectionEnd() {
				return this.getPosition(1, 'vertical', 'bottom')
			},
			horizontalLeft() {
				return this.getPosition(2, 'horizontal', 'left')
			},
			horizontalRight() {
				return this.getPosition(2, 'horizontal', 'right')
			}
		},
		watch: {
			pattern(newValue, oldValue) {
				//console.log(JSON.stringify(newValue))
				this.styles = Object.assign({}, this.styles, newValue)
			}
		},
		created() {
			this.isShow = this.show
			if (this.top === 0) {
				this.fabShow = true
			}
			// 初始化样式
			this.styles = Object.assign({}, this.styles, this.pattern)
		},
		methods: {
			_onClick() {
				this.$emit('fabClick')
				if (!this.popMenu) {
					return
				}
				this.isShow = !this.isShow
			},
			open() {
				this.isShow = true
			},
			close() {
				this.isShow = false
			},
			/**
			 * 按钮点击事件
			 */
			_onItemClick(index, item) {
				this.$emit('trigger', {
					index,
					item
				})
			},
			/**
			 * 获取 位置信息
			 */
			getPosition(types, paramA, paramB) {
				if (types === 0) {
					return this.horizontal === paramA && this.vertical === paramB
				} else if (types === 1) {
					return this.direction === paramA && this.vertical === paramB
				} else if (types === 2) {
					return this.direction === paramA && this.horizontal === paramB
				} else {
					return this.isShow && this.direction === paramA ? this.contentWidth : this.contentWidthMin
				}
			}
		}
	}
</script>

<style lang="scss" scoped>
	.uni-fab {
		position: fixed;
		/* #ifndef APP-NVUE */
		display: flex;
		/* #endif */
		justify-content: center;
		align-items: center;
		z-index: 10;
	}

	.uni-fab--active {
		opacity: 1;
	}

	.uni-fab--leftBottom {
		left: 5px;
		bottom: 20px;
		/* #ifdef H5 */
		bottom: calc(20px + var(--window-bottom));
		/* #endif */
		padding: 10px;
	}

	.uni-fab--leftTop {
		left: 5px;
		top: 30px;
		/* #ifdef H5 */
		top: calc(30px + var(--window-top));
		/* #endif */
		padding: 10px;
	}

	.uni-fab--rightBottom {
		right: 5px;
		bottom: 20px;
		/* #ifdef H5 */
		bottom: calc(20px + var(--window-bottom));
		/* #endif */
		padding: 10px;
	}

	.uni-fab--rightTop {
		right: 5px;
		top: 30px;
		/* #ifdef H5 */
		top: calc(30px + var(--window-top));
		/* #endif */
		padding: 10px;
	}

	.uni-fab__circle {
		position: fixed;
		/* #ifndef APP-NVUE */
		display: flex;
		/* #endif */
		justify-content: center;
		align-items: center;
		width: 55px;
		height: 55px;
		background-color: #3c3e49;
		border-radius: 55px;
		z-index: 11;
	}

	.uni-fab__circle--leftBottom {
		left: 15px;
		bottom: 30px;
		/* #ifdef H5 */
		bottom: calc(30px + var(--window-bottom));
		/* #endif */
	}

	.uni-fab__circle--leftTop {
		left: 15px;
		top: 40px;
		/* #ifdef H5 */
		top: calc(40px + var(--window-top));
		/* #endif */
	}

	.uni-fab__circle--rightBottom {
		right: 15px;
		bottom: 30px;
		/* #ifdef H5 */
		bottom: calc(30px + var(--window-bottom));
		/* #endif */
	}

	.uni-fab__circle--rightTop {
		right: 15px;
		top: 40px;
		/* #ifdef H5 */
		top: calc(40px + var(--window-top));
		/* #endif */
	}

	.uni-fab__circle--left {
		left: 0;
	}

	.uni-fab__circle--right {
		right: 0;
	}

	.uni-fab__circle--top {
		top: 0;
	}

	.uni-fab__circle--bottom {
		bottom: 0;
	}

	.uni-fab__plus {
		font-weight: bold;
	}

	.fab-circle-v {
		position: absolute;
		width: 3px;
		height: 31px;
		left: 26px;
		top: 12px;
		background-color: white;
		transform: rotate(0deg);
		transition: transform 0.3s;
	}

	.fab-circle-h {
		position: absolute;
		width: 31px;
		height: 3px;
		left: 12px;
		top: 26px;
		background-color: white;
		transform: rotate(0deg);
		transition: transform 0.3s;
	}

	.uni-fab__plus--active {
		transform: rotate(135deg);
	}

	.uni-fab__content {
		/* #ifndef APP-NVUE */
		box-sizing: border-box;
		display: flex;
		/* #endif */
		flex-direction: row;
		border-radius: 55px;
		overflow: hidden;
		transition-property: width, height;
		transition-duration: 0.2s;
		width: 55px;
		border-color: #DDDDDD;
		border-width: 1rpx;
		border-style: solid;
	}

	.uni-fab__content--other-platform {
		border-width: 0px;
		box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.2);
	}

	.uni-fab__content--left {
		justify-content: flex-start;
	}

	.uni-fab__content--right {
		justify-content: flex-end;
	}

	.uni-fab__content--flexDirection {
		flex-direction: column;
		justify-content: flex-end;
	}

	.uni-fab__content--flexDirectionStart {
		flex-direction: column;
		justify-content: flex-start;
	}

	.uni-fab__content--flexDirectionEnd {
		flex-direction: column;
		justify-content: flex-end;
	}

	.uni-fab__item {
		/* #ifndef APP-NVUE */
		display: flex;
		/* #endif */
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 55px;
		height: 55px;
		opacity: 0;
		transition: opacity 0.2s;
	}

	.uni-fab__item--active {
		opacity: 1;
	}

	.uni-fab__item-image {
		width: 25px;
		height: 25px;
		margin-bottom: 3px;
	}

	.uni-fab__item-text {
		color: #FFFFFF;
		font-size: 12px;
	}

	.uni-fab__item--first {
		width: 55px;
	}
</style>


================================================
FILE: client/components/ListCell/index.vue
================================================
<template>
	<view class="content">

		<view class="mix-list-cell" :class="border" @click="eventClick" hover-class="cell-hover"  :hover-stay-time="50">
			<text
				v-if="icon"
				class="icon"
				:style="[{
					color: iconColor,
				}]"
				:class="icon"
			></text>
			<text class="margin-left-xs cell-tit clamp">{{title}}</text>
			<text v-if="tips" class="cell-tip">{{tips}}</text>
			<text class="icon icon-right text-gray"
				:class="typeList[navigateType]"
			></text>
		</view>

	</view>
</template>

<script>
	/**
	 *  简单封装了下, 应用范围比较狭窄,可以在此基础上进行扩展使用
	 *  比如加入image, iconSize可控等
	 */
	export default {
		data() {
			return {
				typeList: {
					left: 'icon-zuo',
					right: 'icon-you',
					up: 'icon-shang',
					down: 'icon-xia'
				},
			}
		},
		props: {
			icon: {
				type: String,
				default: ''
			},
			title: {
				type: String,
				default: '标题'
			},
			tips: {
				type: String,
				default: ''
			},
			navigateType: {
				type: String,
				default: 'right'
			},
			border: {
				type: String,
				default: 'b-b'
			},
			hoverClass: {
				type: String,
				default: 'cell-hover'
			},
			iconColor: {
				type: String,
				default: '#333'
			}
		},
		methods: {
			eventClick(){
				this.$emit('eventClick');
			}
		},
	}
</script>

<style lang='scss' scoped>

	.icon .mix-list-cell.b-b:after{
		left: 90upx;
	}
	.mix-list-cell{
		display:flex;
		align-items:center;
		padding: 20upx $page-row-spacing;
		line-height:60upx;
		position:relative;

		&.cell-hover{
			background:#fafafa;
		}
		&.b-b:after{
			left: 30upx;
		}

		.cell-icon{
			align-self:center;
			width:56upx;
			max-height:60upx;
			font-size:38upx;
		}
		.cell-more{
			align-self: center;
			font-size:30upx;
			color:$font-color-base;
			margin-left:$uni-spacing-row-sm;
		}
		.cell-tit{
			flex: 1;
			font-size: $font-base;
			color: $font-color-dark;
			margin-right:10upx;
		}
		.cell-tip{
			font-size: $font-sm+2upx;
			color: $font-color-light;
		}
	}
</style>


================================================
FILE: client/components/LoadMore/index.vue
================================================
<template>
	<view class="uni-load-more">
		<view class="uni-load-more__img" v-show="status === 'loading' && showIcon">
			<view class="load1">
				<view :style="{background:color}"></view>
				<view :style="{background:color}"></view>
				<view :style="{background:color}"></view>
				<view :style="{background:color}"></view>
			</view>
			<view class="load2">
				<view :style="{background:color}"></view>
				<view :style="{background:color}"></view>
				<view :style="{background:color}"></view>
				<view :style="{background:color}"></view>
			</view>
			<view class="load3">
				<view :style="{background:color}"></view>
				<view :style="{background:color}"></view>
				<view :style="{background:color}"></view>
				<view :style="{background:color}"></view>
			</view>
		</view>
		<text class="uni-load-more__text" :style="{color:color}">{{status === 'more' ? contentText.contentdown : (status === 'loading' ? contentText.contentrefresh : contentText.contentnomore)}}</text>
	</view>
</template>

<script>
	export default {
		name: "load-more",
		props: {
			status: {
				//上拉的状态:more-loading前;loading-loading中;noMore-没有更多了
				type: String,
				default: 'more'
			},
			showIcon: {
				type: Boolean,
				default: true
			},
			color: {
				type: String,
				default: "#777777"
			},
			contentText: {
				type: Object,
				default () {
					return {
						contentdown: "",
						contentrefresh: "正在加载...",
						contentnomore: "没有更多数据了"
					};
				}
			}
		},
		data() {
			return {}
		}
	}
</script>

<style scoped>
	@charset "UTF-8";

	.uni-load-more {
		/*background-color: #f1f1f1;*/
		display: flex;
		flex-direction: row;
		height: 80upx;
		align-items: center;
		justify-content: center
	}

	.uni-load-more__text {
		font-size: 28upx;
		color: #999
	}

	.uni-load-more__img {
		height: 24px;
		width: 24px;
		margin-right: 10px
	}

	.uni-load-more__img>view {
		position: absolute
	}

	.uni-load-more__img>view view {
		width: 6px;
		height: 2px;
		border-top-left-radius: 1px;
		border-bottom-left-radius: 1px;
		background: #f1f1f1;
		position: absolute;
		opacity: .2;
		transform-origin: 50%;
		animation: load 1.56s ease infinite
	}

	.uni-load-more__img>view view:nth-child(1) {
		transform: rotate(90deg);
		top: 2px;
		left: 9px
	}

	.uni-load-more__img>view view:nth-child(2) {
		transform: rotate(180deg);
		top: 11px;
		right: 0
	}

	.uni-load-more__img>view view:nth-child(3) {
		transform: rotate(270deg);
		bottom: 2px;
		left: 9px
	}

	.uni-load-more__img>view view:nth-child(4) {
		top: 11px;
		left: 0
	}

	.load1,
	.load2,
	.load3 {
		height: 24px;
		width: 24px
	}

	.load2 {
		transform: rotate(30deg)
	}

	.load3 {
		transform: rotate(60deg)
	}

	.load1 view:nth-child(1) {
		animation-delay: 0s
	}

	.load2 view:nth-child(1) {
		animation-delay: .13s
	}

	.load3 view:nth-child(1) {
		animation-delay: .26s
	}

	.load1 view:nth-child(2) {
		animation-delay: .39s
	}

	.load2 view:nth-child(2) {
		animation-delay: .52s
	}

	.load3 view:nth-child(2) {
		animation-delay: .65s
	}

	.load1 view:nth-child(3) {
		animation-delay: .78s
	}

	.load2 view:nth-child(3) {
		animation-delay: .91s
	}

	.load3 view:nth-child(3) {
		animation-delay: 1.04s
	}

	.load1 view:nth-child(4) {
		animation-delay: 1.17s
	}

	.load2 view:nth-child(4) {
		animation-delay: 1.3s
	}

	.load3 view:nth-child(4) {
		animation-delay: 1.43s
	}

	@-webkit-keyframes load {
		0% {
			opacity: 1
		}

		100% {
			opacity: .2
		}
	}
</style>


================================================
FILE: client/components/Loading/index.vue
================================================
<template>
    <view class="cu-load load-modal" v-if="show">
        <image src="/static/logo.png" mode="aspectFit"></image>
    </view>
</template>

<script>
    export default {
        name: "Loading",
        data() {
            return {
                show: true
            };
        }
    }
</script>

<style scoped>

</style>


================================================
FILE: client/components/ProductList/BoxLayout.vue
================================================
<template>
    <view class="good-list">
        <view v-for="(item, index) in list" :key="index" @click="navToDetailPage(item)" class="good-item">
            <view class="image-wrapper">
                <image :src="item.mainPic" lazy-load mode="aspectFill"></image>
            </view>
            <view class="product-title">
                <!--#ifndef MP-WEIXIN || MP-QQ-->
                <text :class="{'tm':item.shopType===1,'tb':item.shopType===0}"></text>
                <!-- #endif -->
                <text class="title-text clamp">{{item.title}}</text>
            </view>
            <view class="product-price">
                <text style="font-size: 20upx;">券后</text>
                <text style="font-size: 20upx;color:red">¥</text>
                <text class="price-text">{{item.actualPrice}}</text>
            </view>
            <view class="label-box">
                <text class="label" v-if="item.brand === 1">{{item.brandName}}</text>
                <!-- <text class="label" v-if="item.yunfeixian === 1">包运费</text> -->
                <text class="label" v-if="item.activityType === 2">淘抢购</text>
                <text class="label" v-if="item.activityType === 3">聚划算</text>
                <text class="juan" v-if="item.couponPrice>0"><text class="text">劵</text>{{item.couponPrice}}元</text>
            </view>
            <view class="salse">
                <view class="text">30天销量:{{item.monthSales}}</view>
                <view class="text" v-if="item.couponReceiveNum>0">领券量:{{item.couponReceiveNum}}</
Download .txt
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
Download .txt
SYMBOL INDEX (410 symbols across 131 files)

FILE: client/app.js
  method initTitleNav (line 4) | initTitleNav() {
  method initShareMenu (line 45) | initShareMenu() {

FILE: client/store/index.js
  method login (line 41) | login(state, param) {
  method storeShareTicket (line 74) | storeShareTicket(state, shareTicket) {
  method storeToken (line 77) | storeToken(state, token) {
  method storeUser (line 81) | storeUser(state, user) {
  method logout (line 87) | logout(state) {

FILE: client/utils/cache.js
  function put (line 28) | function put(k, v, t) {
  function get (line 46) | function get(k, def) {
  function remove (line 68) | function remove(k) {
  function clear (line 77) | function clear() {

FILE: doc/scheme.sql
  type `UserConnection` (line 1) | CREATE TABLE `UserConnection`
  type `user` (line 19) | CREATE TABLE `user`
  type `collection` (line 44) | CREATE TABLE `collection`
  type `carousel` (line 62) | CREATE TABLE `carousel`
  type `menu` (line 82) | CREATE TABLE `menu`
  type `collocation` (line 103) | CREATE TABLE `collocation`
  type `collocation_product` (line 124) | CREATE TABLE `collocation_product`
  type `tag` (line 141) | CREATE TABLE `tag`
  type `tag_relation` (line 156) | CREATE TABLE `tag_relation`
  type `appreciate_relation` (line 172) | CREATE TABLE `appreciate_relation`

FILE: server/src/main/java/com/huaan9527/mall/webapi/MallWebapiApplication.java
  class MallWebapiApplication (line 13) | @EnableSocial
    method main (line 20) | public static void main(String[] args) {

FILE: server/src/main/java/com/huaan9527/mall/webapi/client/MobServiceClient.java
  class MobServiceClient (line 13) | @Slf4j
    method confirmSMSCode (line 29) | public Boolean confirmSMSCode(String mobile, String code) {

FILE: server/src/main/java/com/huaan9527/mall/webapi/configuration/CommonConfiguration.java
  class CommonConfiguration (line 26) | @Configuration
    method auditorAware (line 32) | @Bean
    method restTemplate (line 37) | @Bean

FILE: server/src/main/java/com/huaan9527/mall/webapi/configuration/QQOAuth2Configuration.java
  class QQOAuth2Configuration (line 23) | @Configuration
    method addConnectionFactories (line 32) | @Override
    method getUserIdSource (line 42) | @Override
    method getUsersConnectionRepository (line 47) | @Override

FILE: server/src/main/java/com/huaan9527/mall/webapi/configuration/RedisConfiguration.java
  class RedisConfiguration (line 15) | @Configuration
    method redisTemplate (line 24) | @Bean

FILE: server/src/main/java/com/huaan9527/mall/webapi/configuration/SecurityConfiguration.java
  class SecurityConfiguration (line 13) | @EnableWebSecurity
    method configure (line 19) | @Override

FILE: server/src/main/java/com/huaan9527/mall/webapi/configuration/SessionConfiguration.java
  class SessionConfiguration (line 9) | @Configuration
    method httpSessionIdResolver (line 13) | @Bean

FILE: server/src/main/java/com/huaan9527/mall/webapi/configuration/SocialConfigurer.java
  class SocialConfigurer (line 19) | public class SocialConfigurer extends SpringSocialConfigurer {
    method configure (line 21) | @Override
    method getDependency (line 48) | private <T> T getDependency(ApplicationContext applicationContext, Cla...

FILE: server/src/main/java/com/huaan9527/mall/webapi/configuration/WebMvcConfiguration.java
  class WebMvcConfiguration (line 21) | @Configuration
    method addInterceptors (line 24) | @Override
    method viewResolver (line 29) | @Bean
    method mappingJackson2JsonView (line 38) | private MappingJackson2JsonView mappingJackson2JsonView() {

FILE: server/src/main/java/com/huaan9527/mall/webapi/configuration/WechatAutoConfiguration.java
  class WechatAutoConfiguration (line 23) | @Configuration
    method addConnectionFactories (line 32) | @Override
    method getUserIdSource (line 42) | @Override
    method getUsersConnectionRepository (line 47) | @Override

FILE: server/src/main/java/com/huaan9527/mall/webapi/configuration/properties/DaTaoKeProperties.java
  class DaTaoKeProperties (line 6) | @Data

FILE: server/src/main/java/com/huaan9527/mall/webapi/configuration/properties/TaoBaoKeProperties.java
  class TaoBaoKeProperties (line 6) | @Data

FILE: server/src/main/java/com/huaan9527/mall/webapi/configuration/properties/TencentSmsProperties.java
  class TencentSmsProperties (line 7) | @ConfigurationProperties(

FILE: server/src/main/java/com/huaan9527/mall/webapi/controller/CateController.java
  class CateController (line 10) | @RestController
    method loadCate (line 17) | @GetMapping("/load_cate")

FILE: server/src/main/java/com/huaan9527/mall/webapi/controller/CollectionController.java
  class CollectionController (line 14) | @RestController
    method addProductCollection (line 21) | @GetMapping("/product/add")
    method addCollocationCollection (line 27) | @GetMapping("/collocation/add")
    method removeProductCollection (line 33) | @GetMapping("/product/remove")
    method removeCollocationCollection (line 39) | @GetMapping("/collocation/remove")
    method listProductCollection (line 45) | @GetMapping("/product/list")
    method listCollocationCollection (line 51) | @GetMapping("/collocation/list")

FILE: server/src/main/java/com/huaan9527/mall/webapi/controller/CollocationController.java
  class CollocationController (line 19) | @RestController
    method recommendCollocations (line 25) | @GetMapping("/mi/collocation/load_recommend")
    method recommendCollocations2 (line 32) | @GetMapping("/mi/collocation/load_recommend2")
    method list (line 39) | @GetMapping("/mi/collocation/list")
    method addAppreciate (line 47) | @GetMapping("/collocation/add_appreciate")
    method cancelAppreciate (line 53) | @GetMapping("/collocation/cancel_appreciate")
    method detail (line 59) | @GetMapping("/mi/collocation/detail")
    method simpleDetail (line 65) | @GetMapping("/mi/collocation/simple_detail")
    method collocationProduct (line 71) | @GetMapping("/mi/collocation/product")

FILE: server/src/main/java/com/huaan9527/mall/webapi/controller/EventController.java
  class EventController (line 11) | @Slf4j
    method collectEvent (line 17) | @PostMapping("/collect")

FILE: server/src/main/java/com/huaan9527/mall/webapi/controller/GoodsController.java
  class GoodsController (line 14) | @RestController
    method recommendGoods (line 21) | @GetMapping("/load_recommend_goods")
    method nineGoods (line 26) | @GetMapping("/load_nine_goods")
    method rankGoods (line 31) | @GetMapping("/load_rank_goods")
    method loadGoodsByCate (line 36) | @GetMapping("/load_goods_by_cate")
    method goodsDetail (line 41) | @GetMapping("/goods_detail")
    method goodsDetail2 (line 46) | @GetMapping("/goods_detail2")
    method getPrivilegeLink (line 56) | @GetMapping("/get_privilege_link")
    method search (line 62) | @Deprecated
    method search2 (line 68) | @GetMapping("/search2")
    method getHotSearch (line 73) | @GetMapping("/get_hot_search")
    method getSimilarGoods (line 79) | @GetMapping("/get_similar_goods")

FILE: server/src/main/java/com/huaan9527/mall/webapi/controller/PublicController.java
  class PublicController (line 30) | @Slf4j
    method register (line 41) | @Deprecated
    method register2 (line 51) | @PostMapping("/register2")
    method updatePassword (line 69) | @Deprecated
    method sendEmailCode (line 79) | @Deprecated
    method sendMobileCode (line 97) | @PostMapping("/send_mobile_code")
    method listCarousel (line 136) | @PostMapping("/list_carousel")
    method listMenus (line 141) | @PostMapping("/list_menus")

FILE: server/src/main/java/com/huaan9527/mall/webapi/controller/UserController.java
  class UserController (line 12) | @RestController
    method getCurrentUser (line 18) | @GetMapping("/user/current_user")
    method initCurrentUser (line 24) | @PostMapping("/user/init_current_user")
    method update (line 30) | @PostMapping("/user/update")

FILE: server/src/main/java/com/huaan9527/mall/webapi/domain/AbstractDomain.java
  class AbstractDomain (line 25) | @Getter
    method getId (line 51) | @Override
    method isNew (line 62) | public boolean isNew() {
    method equals (line 72) | @Override
    method hashCode (line 97) | @Override
    method toString (line 107) | @Override

FILE: server/src/main/java/com/huaan9527/mall/webapi/domain/AppreciateRelation.java
  class AppreciateRelation (line 11) | @Getter

FILE: server/src/main/java/com/huaan9527/mall/webapi/domain/Carousel.java
  class Carousel (line 12) | @Getter

FILE: server/src/main/java/com/huaan9527/mall/webapi/domain/Collection.java
  class Collection (line 12) | @Getter

FILE: server/src/main/java/com/huaan9527/mall/webapi/domain/Collocation.java
  class Collocation (line 10) | @Getter

FILE: server/src/main/java/com/huaan9527/mall/webapi/domain/CollocationProduct.java
  class CollocationProduct (line 12) | @Getter

FILE: server/src/main/java/com/huaan9527/mall/webapi/domain/Menu.java
  class Menu (line 11) | @Getter

FILE: server/src/main/java/com/huaan9527/mall/webapi/domain/Tag.java
  class Tag (line 10) | @Getter

FILE: server/src/main/java/com/huaan9527/mall/webapi/domain/TagRelation.java
  class TagRelation (line 11) | @Getter

FILE: server/src/main/java/com/huaan9527/mall/webapi/domain/User.java
  class User (line 13) | @Getter
    method signUpFromConnection (line 39) | public void signUpFromConnection(Connection<?> connection) {

FILE: server/src/main/java/com/huaan9527/mall/webapi/domain/UserConnection.java
  class UserConnection (line 11) | @Getter

FILE: server/src/main/java/com/huaan9527/mall/webapi/domain/enums/DataType.java
  type DataType (line 3) | public enum DataType {
    method DataType (line 8) | DataType(String label) {
    method getLabel (line 12) | public String getLabel() {

FILE: server/src/main/java/com/huaan9527/mall/webapi/domain/enums/ProductStatus.java
  type ProductStatus (line 3) | public enum ProductStatus {
    method ProductStatus (line 7) | ProductStatus(String label) {
    method getLabel (line 11) | public String getLabel() {

FILE: server/src/main/java/com/huaan9527/mall/webapi/domain/enums/Urlype.java
  type Urlype (line 3) | public enum Urlype {

FILE: server/src/main/java/com/huaan9527/mall/webapi/domain/enums/UserStatus.java
  type UserStatus (line 3) | public enum UserStatus {

FILE: server/src/main/java/com/huaan9527/mall/webapi/domain/enums/UserType.java
  type UserType (line 3) | public enum UserType {

FILE: server/src/main/java/com/huaan9527/mall/webapi/exception/GlobalExceptionHandler.java
  class GlobalExceptionHandler (line 15) | @ControllerAdvice
    method exceptionHandler (line 19) | @ExceptionHandler(Exception.class)
    method appExceptionHandler (line 27) | @ExceptionHandler(MsException.class)

FILE: server/src/main/java/com/huaan9527/mall/webapi/exception/MsException.java
  class MsException (line 5) | @Getter
    method MsException (line 10) | public MsException(String module, String message) {
    method MsException (line 15) | public MsException(String module, String message, Throwable cause) {

FILE: server/src/main/java/com/huaan9527/mall/webapi/filter/CrossDomainFilter.java
  class CrossDomainFilter (line 19) | public class CrossDomainFilter implements Filter {
    method destroy (line 22) | @Override
    method doFilter (line 26) | @Override
    method init (line 44) | @Override
    method crossDomain (line 52) | private void crossDomain(HttpServletRequest request, HttpServletRespon...

FILE: server/src/main/java/com/huaan9527/mall/webapi/interceptor/ParameterInterceptor.java
  class ParameterInterceptor (line 13) | public class ParameterInterceptor extends HandlerInterceptorAdapter {
    method postHandle (line 16) | @Override

FILE: server/src/main/java/com/huaan9527/mall/webapi/repository/AppreciateRelationRepository.java
  type AppreciateRelationRepository (line 11) | public interface AppreciateRelationRepository extends MybatisRepository<...
    method deleteByDataTypeAndDataId (line 12) | @Modifying
    method findByUserIdAndDataType (line 16) | List<AppreciateRelation> findByUserIdAndDataType(Long userId, DataType...
    method findByUserIdAndDataIdAndDataType (line 18) | AppreciateRelation findByUserIdAndDataIdAndDataType(Long userId, Long ...

FILE: server/src/main/java/com/huaan9527/mall/webapi/repository/CarouselRepository.java
  type CarouselRepository (line 8) | public interface CarouselRepository extends MybatisRepository<Carousel, ...
    method findByStatusOrderByCreatedDateDesc (line 10) | List<Carousel> findByStatusOrderByCreatedDateDesc(int status);

FILE: server/src/main/java/com/huaan9527/mall/webapi/repository/CollectionRepository.java
  type CollectionRepository (line 10) | public interface CollectionRepository extends MybatisRepository<Collecti...
    method findByUserIdAndDataTypeOrderByCreatedDateDesc (line 11) | Page<Collection> findByUserIdAndDataTypeOrderByCreatedDateDesc(Long us...
    method countByUserId (line 13) | long countByUserId(Long currentUserId);
    method findByUserIdAndDataIdAndDataType (line 15) | Collection findByUserIdAndDataIdAndDataType(Long userId, String dataId...
    method removeCollection (line 17) | @Query("delete from collection where user_id=?1 and data_id=?2 and dat...

FILE: server/src/main/java/com/huaan9527/mall/webapi/repository/CollocationProductRepository.java
  type CollocationProductRepository (line 8) | public interface CollocationProductRepository extends MybatisRepository<...
    method findByCollocationIdAndProductStatus (line 9) | List<CollocationProduct> findByCollocationIdAndProductStatus(Long coll...

FILE: server/src/main/java/com/huaan9527/mall/webapi/repository/CollocationRepository.java
  type CollocationRepository (line 13) | public interface CollocationRepository extends MybatisRepository<Colloca...
    method findList (line 14) | @Query(statement = "findList")
    method findDetailById (line 17) | @Query(statement = "findDetailById")
    method updateAppreciateCount (line 20) | @Modifying
    method simpleDetail (line 24) | @Query(statement = "simpleDetail")
    method countBySourceTypeAndSourceId (line 27) | long countBySourceTypeAndSourceId(String sourceType, String sourceId);
    method increaseViewCount (line 29) | @Query("UPDATE collocation SET view_count = view_count + 1 WHERE id=?1")
    method findBySex (line 32) | Page<Collocation> findBySex(Integer sex, Pageable pageable);

FILE: server/src/main/java/com/huaan9527/mall/webapi/repository/MenuRepository.java
  type MenuRepository (line 8) | public interface MenuRepository extends MybatisRepository<Menu, Long> {
    method findByStatusOrderByCreatedDateDesc (line 9) | List<Menu> findByStatusOrderByCreatedDateDesc(int status);
    method findByStatusOrderBySortAsc (line 11) | List<Menu> findByStatusOrderBySortAsc(int status);

FILE: server/src/main/java/com/huaan9527/mall/webapi/repository/TagRelationRepository.java
  type TagRelationRepository (line 6) | public interface TagRelationRepository extends MybatisRepository<TagRela...

FILE: server/src/main/java/com/huaan9527/mall/webapi/repository/TagRepository.java
  type TagRepository (line 6) | public interface TagRepository extends MybatisRepository<Tag, Long> {
    method findByName (line 7) | Tag findByName(String tagName);

FILE: server/src/main/java/com/huaan9527/mall/webapi/repository/UserConnectionRepository.java
  type UserConnectionRepository (line 6) | public interface UserConnectionRepository extends MybatisRepository<User...
    method findByUserId (line 7) | UserConnection findByUserId(String userId);

FILE: server/src/main/java/com/huaan9527/mall/webapi/repository/UserRepository.java
  type UserRepository (line 6) | public interface UserRepository extends MybatisRepository<User, Long> {
    method findByMobile (line 7) | User findByMobile(String account);
    method countByMobile (line 9) | long countByMobile(String mobile);
    method countByEmail (line 11) | long countByEmail(String mobile);

FILE: server/src/main/java/com/huaan9527/mall/webapi/security/DefalutLogoutSuccessHandler.java
  class DefalutLogoutSuccessHandler (line 13) | public class DefalutLogoutSuccessHandler implements LogoutSuccessHandler {
    method onLogoutSuccess (line 14) | @Override

FILE: server/src/main/java/com/huaan9527/mall/webapi/security/DefaultConnectionSignUp.java
  class DefaultConnectionSignUp (line 10) | @Component
    method execute (line 15) | @Override

FILE: server/src/main/java/com/huaan9527/mall/webapi/security/DefaultSocialUserDetailsService.java
  class DefaultSocialUserDetailsService (line 14) | @Component
    method loadUserByUserId (line 19) | @Override

FILE: server/src/main/java/com/huaan9527/mall/webapi/security/MobileCodeAuthenticationProvider.java
  class MobileCodeAuthenticationProvider (line 23) | @Slf4j
    method supports (line 31) | @Override
    method authenticate (line 36) | @Override
    method validate (line 50) | private void validate(Authentication authentication) {
    method createSuccessAuthentication (line 71) | private Authentication createSuccessAuthentication(Object principal,

FILE: server/src/main/java/com/huaan9527/mall/webapi/security/MsAuthenticationEntryPoint.java
  class MsAuthenticationEntryPoint (line 15) | @Slf4j
    method MsAuthenticationEntryPoint (line 18) | public MsAuthenticationEntryPoint() {
    method commence (line 21) | @Override

FILE: server/src/main/java/com/huaan9527/mall/webapi/security/MsAuthenticationFailureHandler.java
  class MsAuthenticationFailureHandler (line 17) | @Slf4j
    method onAuthenticationFailure (line 19) | @Override

FILE: server/src/main/java/com/huaan9527/mall/webapi/security/MsAuthenticationSuccessHandler.java
  class MsAuthenticationSuccessHandler (line 15) | public class MsAuthenticationSuccessHandler implements AuthenticationSuc...
    method onAuthenticationSuccess (line 16) | @Override

FILE: server/src/main/java/com/huaan9527/mall/webapi/security/SecurityUtils.java
  class SecurityUtils (line 10) | public class SecurityUtils {
    method getCurrentUserId (line 14) | public static Long getCurrentUserId() {

FILE: server/src/main/java/com/huaan9527/mall/webapi/security/UserDetailsServiceImpl.java
  class UserDetailsServiceImpl (line 16) | @Slf4j
    method loadUserByUsername (line 23) | @Override

FILE: server/src/main/java/com/huaan9527/mall/webapi/service/AppreciateRelationService.java
  class AppreciateRelationService (line 15) | @Slf4j
    method addAppreciate (line 25) | @Transactional
    method cancelAppreciate (line 31) | @Transactional
    method buildAppreciateLog (line 37) | private AppreciateRelation buildAppreciateLog(DataType dataType, Long ...
    method findAppreciateCollocations (line 45) | public List<AppreciateRelation> findAppreciateCollocations() {
    method findAppreciateCollocation (line 54) | public AppreciateRelation findAppreciateCollocation(Long userId, Long ...

FILE: server/src/main/java/com/huaan9527/mall/webapi/service/CarouselService.java
  class CarouselService (line 14) | @Slf4j
    method list (line 22) | public List<CarouselVo> list() {

FILE: server/src/main/java/com/huaan9527/mall/webapi/service/CollectionService.java
  class CollectionService (line 22) | @Slf4j
    method addCollection (line 31) | @Transactional
    method removeCollection (line 46) | @Transactional
    method listProductCollection (line 52) | public PageResponse<CollectionVo> listProductCollection(Pageable pagea...
    method getProductCollection (line 62) | private Function<Collection, CollectionVo> getProductCollection() {
    method listCollocationCollection (line 71) | public PageResponse<CollectionVo> listCollocationCollection(Pageable p...
    method getCollocationCollection (line 81) | private Function<Collection, CollectionVo> getCollocationCollection() {

FILE: server/src/main/java/com/huaan9527/mall/webapi/service/CollocationService.java
  class CollocationService (line 33) | @Slf4j
    method list (line 47) | public PageResponse<CollocationVo> list(Pageable pageable) {
    method simpleList (line 68) | public PageResponse<CollocationVo> simpleList(Pageable pageable, Integ...
    method detail (line 87) | public CollocationDetailVo detail(Long collocationId) {
    method loadCollocationProduct (line 102) | public List<CollocationProductVo> loadCollocationProduct(Long collocat...
    method simpleDetail (line 123) | @Transactional
    method addAppreciate (line 135) | @Transactional
    method cancelAppreciate (line 141) | @Transactional

FILE: server/src/main/java/com/huaan9527/mall/webapi/service/GoodsService.java
  class GoodsService (line 39) | @Slf4j
    method loadCate (line 69) | public JSONArray loadCate() {
    method nineGoods (line 73) | public JSONObject nineGoods(Integer page, Integer size, String nineCid) {
    method rankGoods (line 77) | public JSONArray rankGoods(String cid) {
    method recommendGoods (line 81) | @SuppressWarnings("unchecked")
    method getRecommendGoodsKey (line 98) | private String getRecommendGoodsKey(Integer page) {
    method loadGoodsByCate (line 102) | public JSONObject loadGoodsByCate(String subcid, Integer page, Integer...
    method goodsDetail (line 111) | public ProductVo goodsDetail(String id, String goodsId, Boolean checkF...
    method buildProductVo (line 129) | private ProductVo buildProductVo(JSONObject goodsDetail) {
    method getPrivilegeLink (line 153) | public Map<String, String> getPrivilegeLink(String goodsId) {
    method getHotSearchTop10 (line 173) | public List getHotSearchTop10() {
    method search (line 177) | public JSONObject search(String keyword, Integer page, Integer sort) {
    method search2 (line 181) | public List<ProductVo> search2(String keyword, Integer page, String so...
    method similarGoods (line 209) | public JSONArray similarGoods(String daTaoKeGoodsId) {

FILE: server/src/main/java/com/huaan9527/mall/webapi/service/MenuService.java
  class MenuService (line 14) | @Slf4j
    method list (line 20) | public List<MenuVo> list() {

FILE: server/src/main/java/com/huaan9527/mall/webapi/service/TagService.java
  class TagService (line 14) | @Slf4j
    method addTag (line 22) | @Transactional

FILE: server/src/main/java/com/huaan9527/mall/webapi/service/UserService.java
  class UserService (line 31) | @Slf4j
    method signUp (line 48) | @Transactional
    method update (line 57) | @Transactional
    method getCurrentUser (line 67) | public UserVo getCurrentUser() {
    method initUser (line 76) | @Transactional
    method findByMobile (line 87) | public User findByMobile(String mobile) {
    method register (line 91) | @Transactional
    method register (line 113) | @Transactional
    method register2 (line 129) | @Transactional
    method sendEmailCode (line 139) | @SuppressWarnings("unchecked")
    method updatePassword (line 159) | @Transactional
    method sendMobileCode (line 180) | public void sendMobileCode(String mobile, String type) {

FILE: server/src/main/java/com/huaan9527/mall/webapi/service/operation/api/AbstractDaTaoKeApi.java
  class AbstractDaTaoKeApi (line 8) | public abstract class AbstractDaTaoKeApi {
    method AbstractDaTaoKeApi (line 11) | public AbstractDaTaoKeApi(DaTaoKeProperties daTaoKeProperties) {
    method createParams (line 15) | protected TreeMap<String, String> createParams() {

FILE: server/src/main/java/com/huaan9527/mall/webapi/service/operation/api/AlbumApi.java
  class AlbumApi (line 13) | @Slf4j
    method AlbumApi (line 18) | public AlbumApi(DaTaoKeProperties daTaoKeProperties) {
    method loadAlbum (line 22) | public JSONArray loadAlbum() {

FILE: server/src/main/java/com/huaan9527/mall/webapi/service/operation/api/AlbumGoodsApi.java
  class AlbumGoodsApi (line 13) | @Slf4j
    method AlbumGoodsApi (line 18) | public AlbumGoodsApi(DaTaoKeProperties daTaoKeProperties) {
    method loadAlbumGoods (line 22) | public JSONArray loadAlbumGoods(Integer page, Integer size, String top...

FILE: server/src/main/java/com/huaan9527/mall/webapi/service/operation/api/BrandApi.java
  class BrandApi (line 13) | @Slf4j
    method BrandApi (line 18) | public BrandApi(DaTaoKeProperties daTaoKeProperties) {
    method loadBrand (line 22) | public JSONArray loadBrand(Integer page, Integer size) {

FILE: server/src/main/java/com/huaan9527/mall/webapi/service/operation/api/CateApi.java
  class CateApi (line 13) | @Slf4j
    method CateApi (line 18) | public CateApi(DaTaoKeProperties daTaoKeProperties) {
    method loadCate (line 22) | public JSONArray loadCate() {

FILE: server/src/main/java/com/huaan9527/mall/webapi/service/operation/api/ExplosiveGoodsListApi.java
  class ExplosiveGoodsListApi (line 13) | @Slf4j
    method ExplosiveGoodsListApi (line 18) | public ExplosiveGoodsListApi(DaTaoKeProperties daTaoKeProperties) {
    method get (line 22) | public JSONObject get(Map<String, String> params) {

FILE: server/src/main/java/com/huaan9527/mall/webapi/service/operation/api/GoodsApi.java
  class GoodsApi (line 13) | @Slf4j
    method GoodsApi (line 18) | public GoodsApi(DaTaoKeProperties daTaoKeProperties) {
    method loadGoods (line 23) | public JSONObject loadGoods(Map<String,String> params) {

FILE: server/src/main/java/com/huaan9527/mall/webapi/service/operation/api/GoodsDetailApi.java
  class GoodsDetailApi (line 13) | @Slf4j
    method GoodsDetailApi (line 18) | public GoodsDetailApi(DaTaoKeProperties daTaoKeProperties) {
    method loadGoodsDetail (line 23) | public JSONObject loadGoodsDetail(String id, String tbGoodsId) {

FILE: server/src/main/java/com/huaan9527/mall/webapi/service/operation/api/HotSearchTop10Api.java
  class HotSearchTop10Api (line 14) | @Slf4j
    method HotSearchTop10Api (line 19) | public HotSearchTop10Api(DaTaoKeProperties daTaoKeProperties) {
    method loadHotSearch (line 23) | public List<Object> loadHotSearch() {

FILE: server/src/main/java/com/huaan9527/mall/webapi/service/operation/api/NineGoodsApi.java
  class NineGoodsApi (line 12) | @Slf4j
    method NineGoodsApi (line 17) | public NineGoodsApi(DaTaoKeProperties daTaoKeProperties) {
    method loadNineGoods (line 21) | public JSONObject loadNineGoods(Integer page, Integer size, String nin...

FILE: server/src/main/java/com/huaan9527/mall/webapi/service/operation/api/PrivilegeApi.java
  class PrivilegeApi (line 12) | @Slf4j
    method PrivilegeApi (line 17) | public PrivilegeApi(DaTaoKeProperties daTaoKeProperties) {
    method getPrivilegeLink (line 21) | public JSONObject getPrivilegeLink(String goodsId) {

FILE: server/src/main/java/com/huaan9527/mall/webapi/service/operation/api/RankGoodsApi.java
  class RankGoodsApi (line 13) | @Slf4j
    method RankGoodsApi (line 18) | public RankGoodsApi(DaTaoKeProperties daTaoKeProperties) {
    method loadRankGoods (line 23) | public JSONArray loadRankGoods(String cid) {

FILE: server/src/main/java/com/huaan9527/mall/webapi/service/operation/api/SearchApi.java
  class SearchApi (line 12) | @Slf4j
    method SearchApi (line 17) | public SearchApi(DaTaoKeProperties daTaoKeProperties) {
    method search (line 21) | public JSONObject search(String keyword, Integer page, Integer sort) {

FILE: server/src/main/java/com/huaan9527/mall/webapi/service/operation/api/SimilarGoodsApi.java
  class SimilarGoodsApi (line 13) | @Slf4j
    method SimilarGoodsApi (line 18) | public SimilarGoodsApi(DaTaoKeProperties daTaoKeProperties) {
    method loadSimilarGoods (line 22) | public JSONArray loadSimilarGoods(String daTaoKeGoodsId, Integer size) {

FILE: server/src/main/java/com/huaan9527/mall/webapi/service/operation/api/SupperSearchApi.java
  class SupperSearchApi (line 12) | @Slf4j
    method SupperSearchApi (line 17) | public SupperSearchApi(DaTaoKeProperties daTaoKeProperties) {
    method search (line 21) | public JSONObject search(String keyword, Integer page, Integer sort) {

FILE: server/src/main/java/com/huaan9527/mall/webapi/service/operation/api/TaobaoSearchApi.java
  class TaobaoSearchApi (line 13) | @Slf4j
    method TaobaoSearchApi (line 18) | public TaobaoSearchApi(DaTaoKeProperties daTaoKeProperties) {
    method search (line 22) | public JSONArray search(String keyword, Integer page, String sort, Str...

FILE: server/src/main/java/com/huaan9527/mall/webapi/sms/AbstractSmsProvider.java
  class AbstractSmsProvider (line 7) | public abstract class AbstractSmsProvider implements SmsProvider {
    method sendSms (line 9) | @Override
    method executeSendSms (line 15) | protected abstract SendSmsResponse executeSendSms(SendSmsRequest reque...
    method validateRequest (line 17) | private void validateRequest(SendSmsRequest request) {

FILE: server/src/main/java/com/huaan9527/mall/webapi/sms/SendSmsRequest.java
  class SendSmsRequest (line 9) | @Getter

FILE: server/src/main/java/com/huaan9527/mall/webapi/sms/SendSmsResponse.java
  class SendSmsResponse (line 6) | @Getter
    method SendSmsResponse (line 12) | public SendSmsResponse(int code, String message) {

FILE: server/src/main/java/com/huaan9527/mall/webapi/sms/SmsProvider.java
  type SmsProvider (line 3) | public interface SmsProvider {
    method sendSms (line 5) | SendSmsResponse sendSms(SendSmsRequest request);

FILE: server/src/main/java/com/huaan9527/mall/webapi/sms/SmsProviders.java
  class SmsProviders (line 5) | @Component

FILE: server/src/main/java/com/huaan9527/mall/webapi/sms/TencentSmsProviderAdapter.java
  class TencentSmsProviderAdapter (line 17) | @Slf4j
    method TencentSmsProviderAdapter (line 23) | public TencentSmsProviderAdapter(TencentSmsProperties properties) {
    method afterPropertiesSet (line 27) | @Override
    method executeSendSms (line 40) | @Override
    method buildTencentSendSmsRequest (line 57) | private com.tencentcloudapi.sms.v20190711.models.SendSmsRequest buildT...

FILE: server/src/main/java/com/huaan9527/mall/webapi/utils/CodeGenerator.java
  class CodeGenerator (line 6) | public class CodeGenerator {
    method random (line 15) | public static String random(boolean numberFlag, int length) {

FILE: server/src/main/java/com/huaan9527/mall/webapi/utils/Constants.java
  class Constants (line 3) | public class Constants {

FILE: server/src/main/java/com/huaan9527/mall/webapi/utils/DateUtils.java
  class DateUtils (line 6) | public class DateUtils {
    method getStartTime (line 10) | public static Date getStartTime() {
    method getEndTime (line 22) | public static Date getEndTime() {

FILE: server/src/main/java/com/huaan9527/mall/webapi/utils/DxyzmUtils.java
  class DxyzmUtils (line 6) | public class DxyzmUtils {
    method getNonceStr (line 18) | public static String getNonceStr() {

FILE: server/src/main/java/com/huaan9527/mall/webapi/utils/HttpsClientUtil.java
  class HttpsClientUtil (line 16) | public class HttpsClientUtil {
    method doPost (line 29) | public static String doPost(String url, String jsonString) {

FILE: server/src/main/java/com/huaan9527/mall/webapi/utils/MD5Util.java
  class MD5Util (line 5) | public class MD5Util {
    method getMD5 (line 10) | public static String getMD5(String str) {

FILE: server/src/main/java/com/huaan9527/mall/webapi/utils/PageResponse.java
  class PageResponse (line 9) | @Getter
    method getTotalPages (line 18) | public int getTotalPages() {

FILE: server/src/main/java/com/huaan9527/mall/webapi/utils/ResponseEntity.java
  class ResponseEntity (line 14) | public class ResponseEntity extends HashMap<String, Object> {
    method ResponseEntity (line 22) | public ResponseEntity() {
    method ResponseEntity (line 25) | public ResponseEntity(String dataKey) {
    method getData (line 29) | public Object getData() {
    method setData (line 33) | @SuppressWarnings("unchecked")
    method success (line 39) | public static ResponseEntity success(String message) {
    method success (line 47) | public static ResponseEntity success() {
    method success (line 55) | public static ResponseEntity success(Object data) {
    method success (line 64) | public static ResponseEntity success(String message, Object data) {
    method success (line 74) | public static ResponseEntity success(int responseCode, String message) {
    method success (line 82) | public static ResponseEntity success(int responseCode, String message,...
    method failure (line 91) | public static ResponseEntity failure(String message) {
    method failure (line 99) | public static ResponseEntity failure(int responseCode, String message) {
    method failure (line 107) | public static ResponseEntity failure(BindingResult result) {

FILE: server/src/main/java/com/huaan9527/mall/webapi/utils/URLUtil.java
  class URLUtil (line 6) | public class URLUtil {
    class UrlEntity (line 7) | public static class UrlEntity {
    method parse (line 24) | public static UrlEntity parse(String url) {

FILE: server/src/main/java/com/huaan9527/mall/webapi/utils/WebUtils.java
  class WebUtils (line 15) | public abstract class WebUtils {
    method WebUtils (line 16) | private WebUtils() {
    method encode (line 25) | public static String encode(String str) {
    method decode (line 42) | public static String decode(String unicode) {
    method format (line 58) | private static String format(String str) {
    method clientIp (line 65) | public static String clientIp(HttpServletRequest request) {
    method isMobileBrowser (line 94) | public static boolean isMobileBrowser(HttpServletRequest request) {
    method encodeChineseDownloadFileName (line 104) | public static String encodeChineseDownloadFileName(HttpServletRequest ...
    method isAjaxRequest (line 120) | public static boolean isAjaxRequest(HttpServletRequest request) {
    method writeJSON (line 124) | public static void writeJSON(ServletResponse response, Object data) {
    method getServletBasePath (line 140) | public static String getServletBasePath(HttpServletRequest req) {

FILE: server/src/main/java/com/huaan9527/mall/webapi/vos/CarouselVo.java
  class CarouselVo (line 9) | @Getter

FILE: server/src/main/java/com/huaan9527/mall/webapi/vos/CollectionVo.java
  class CollectionVo (line 12) | @Getter
    method CollectionVo (line 23) | public CollectionVo(Collection collection) {

FILE: server/src/main/java/com/huaan9527/mall/webapi/vos/CollocationDetailVo.java
  class CollocationDetailVo (line 18) | @Data
    method getImagePaths (line 36) | public List<String> getImagePaths() {
    method getFormatCreatedDate (line 43) | public String getFormatCreatedDate() {

FILE: server/src/main/java/com/huaan9527/mall/webapi/vos/CollocationProductVo.java
  class CollocationProductVo (line 10) | @Data

FILE: server/src/main/java/com/huaan9527/mall/webapi/vos/CollocationVo.java
  class CollocationVo (line 18) | @Getter
    method getImagePaths (line 37) | public List<String> getImagePaths() {
    method getFormatCreatedDate (line 44) | public String getFormatCreatedDate() {

FILE: server/src/main/java/com/huaan9527/mall/webapi/vos/ConfirmSMSCodeVo.java
  class ConfirmSMSCodeVo (line 6) | @Data

FILE: server/src/main/java/com/huaan9527/mall/webapi/vos/EventVo.java
  class EventVo (line 12) | @Data

FILE: server/src/main/java/com/huaan9527/mall/webapi/vos/MenuVo.java
  class MenuVo (line 9) | @Getter

FILE: server/src/main/java/com/huaan9527/mall/webapi/vos/ProductVo.java
  class ProductVo (line 12) | @Getter

FILE: server/src/main/java/com/huaan9527/mall/webapi/vos/RegisterVo.java
  class RegisterVo (line 11) | @Getter

FILE: server/src/main/java/com/huaan9527/mall/webapi/vos/RegisterVo2.java
  class RegisterVo2 (line 10) | @Getter

FILE: server/src/main/java/com/huaan9527/mall/webapi/vos/SendEmailCodeVo.java
  class SendEmailCodeVo (line 10) | @Getter

FILE: server/src/main/java/com/huaan9527/mall/webapi/vos/TagVo.java
  class TagVo (line 7) | @Data

FILE: server/src/main/java/com/huaan9527/mall/webapi/vos/UpdatePasswordVo.java
  class UpdatePasswordVo (line 11) | @Getter

FILE: server/src/main/java/com/huaan9527/mall/webapi/vos/UserVo.java
  class UserVo (line 9) | @Getter

FILE: server/src/test/java/com/huaan9527/mall/webapi/BaseTest.java
  class BaseTest (line 8) | @RunWith(SpringJUnit4ClassRunner.class)

FILE: server/src/test/java/com/huaan9527/mall/webapi/MallWebapiApplicationTests.java
  class MallWebapiApplicationTests (line 19) | @RunWith(SpringJUnit4ClassRunner.class)
    method recommendGoods (line 34) | @Test
    method test (line 40) | @Test
    method test1 (line 50) | @Test
    method test2 (line 55) | @Test
    method test3 (line 64) | @Test

FILE: server/src/test/java/com/huaan9527/mall/webapi/service/CollocationServiceTest.java
  class CollocationServiceTest (line 13) | public class CollocationServiceTest extends BaseTest {
    method list (line 17) | @Test
    method detail (line 23) | @Test

FILE: server/src/test/java/com/huaan9527/mall/webapi/service/CustomerInfoService.java
  class CustomerInfoService (line 3) | public class CustomerInfoService implements RemoteLoader {
    method load (line 5) | public String load() {

FILE: server/src/test/java/com/huaan9527/mall/webapi/service/GoodsServiceTest.java
  class GoodsServiceTest (line 11) | public class GoodsServiceTest {
    method recommendGoods (line 15) | @Test

FILE: server/src/test/java/com/huaan9527/mall/webapi/service/LabelService.java
  class LabelService (line 3) | public class LabelService implements RemoteLoader {
    method load (line 4) | @Override

FILE: server/src/test/java/com/huaan9527/mall/webapi/service/LearnRecordService.java
  class LearnRecordService (line 3) | public class LearnRecordService implements RemoteLoader {
    method load (line 5) | public String load() {

FILE: server/src/test/java/com/huaan9527/mall/webapi/service/OrderService.java
  class OrderService (line 3) | public class OrderService implements RemoteLoader {
    method load (line 4) | @Override

FILE: server/src/test/java/com/huaan9527/mall/webapi/service/RemoteLoader.java
  type RemoteLoader (line 3) | public interface RemoteLoader {
    method load (line 5) | String load();
    method delay (line 7) | default void delay() {

FILE: server/src/test/java/com/huaan9527/mall/webapi/service/UserDetailService.java
  class UserDetailService (line 16) | public class UserDetailService {
    method testSync (line 18) | @Test
    method testFuture (line 29) | @Test
    method testParallelStream (line 55) | @Test
    method testParallelStream2 (line 65) | @Test
    method testCompletableFuture (line 80) | @Test
    method doSomething (line 94) | private void doSomething() {
    method testCompletableFuture2 (line 99) | @Test
    method testCompletableFuture3 (line 111) | @Test
    method testCompletableFuture4 (line 135) | @Test

FILE: server/src/test/java/com/huaan9527/mall/webapi/service/WatchRecordService.java
  class WatchRecordService (line 3) | public class WatchRecordService implements RemoteLoader {
    method load (line 4) | @Override

FILE: server/static/invite/script/common.js
  function setTime (line 3) | function setTime(self) {
  function getCode (line 24) | function getCode() {
  function register (line 57) | function register() {
  function getQueryVariable (line 111) | function getQueryVariable(variable) {

FILE: server/static/invite/script/layer.js
  function t (line 2) | function t(e){e=s.find(e),e.height(f[1]-c-u-2*(0|parseFloat(e.css("paddi...
  function e (line 2) | function e(){var e=a.cancel&&a.cancel(t.index,n);e===!1||r.close(t.index)}
  function o (line 2) | function o(e,t,i){var n=new Image;return n.src=e,n.complete?t(n):(n.onlo...
Condensed preview — 203 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (815K chars).
[
  {
    "path": ".gitignore",
    "chars": 349,
    "preview": "HELP.md\ntarget/\n!.mvn/wrapper/maven-wrapper.jar\n!**/src/main/**\n!**/src/test/**\n\n### STS ###\n.apt_generated\n.classpath\n."
  },
  {
    "path": "Dockerfile",
    "chars": 403,
    "preview": "FROM centos:7\nMAINTAINER silently9527\n\nEXPOSE 9090\n\nWORKDIR /data/app\nRUN yum -y install java-1.8.0-openjdk.x86_64\n\nCOPY"
  },
  {
    "path": "LICENSE",
    "chars": 35144,
    "preview": "                    GNU GENERAL PUBLIC LICENSE\n                       Version 3, 29 June 2007\n\n Copyright (C) 2007 Free "
  },
  {
    "path": "README.md",
    "chars": 6469,
    "preview": "\n<p align=\"center\">\n    <a href=\"https://t.zsxq.com/h2EIR\" target=\"_blank\"><img alt=\"\" src=\"https://img.shields.io/badge"
  },
  {
    "path": "client/.gitignore",
    "chars": 16,
    "preview": "unpackage\n.idea\n"
  },
  {
    "path": "client/App.vue",
    "chars": 845,
    "preview": "<script>\n  /**\n   * vuex管理登陆状态,具体可以参考官方登陆模板示例\n   */\n  import app from 'app.js'\n  import {mapMutations} from 'vuex'\n\n  ex"
  },
  {
    "path": "client/LICENSE",
    "chars": 35145,
    "preview": "                    GNU GENERAL PUBLIC LICENSE\n                       Version 3, 29 June 2007\n\n Copyright (C) 2007 Free "
  },
  {
    "path": "client/README.md",
    "chars": 6111,
    "preview": "# Mall-Coupons\n\n<p align=\"center\">\n  <a href=\"#微信公众号\"><img src=\"https://img.shields.io/badge/公众号-贝塔学JAVA-blue.svg\" alt=\""
  },
  {
    "path": "client/api/backend.js",
    "chars": 3970,
    "preview": "import httpRequest from '../utils/http'\n\nmodule.exports = {\n  login: function (provider, code) {\n    let url = '/auth/mi"
  },
  {
    "path": "client/app.js",
    "chars": 1874,
    "preview": "import Vue from 'vue'\n\nexport default {\n  initTitleNav() {\n    uni.getSystemInfo({\n      success: function (e) {\n       "
  },
  {
    "path": "client/colorui/animation.css",
    "chars": 2537,
    "preview": "/* \n  Animation 微动画  \n  基于ColorUI组建库的动画模块 by 文晓港 2019年3月26日19:52:28\n */\n\n/* css 滤镜 控制黑白底色gif的 */\n.gif-black{  \n  mix-ble"
  },
  {
    "path": "client/colorui/components/cu-custom.vue",
    "chars": 2740,
    "preview": "<template>\n    <view>\n        <view class=\"cu-custom\" :style=\"[{height:CustomBar + 'px'}]\">\n            <view class=\"cu-"
  },
  {
    "path": "client/colorui/icon.css",
    "chars": 21614,
    "preview": "@font-face {\n  font-family: 'ali-icon-font';  /* project id 1688329 */\n  src: url('https://at.alicdn.com/t/font_1688329_"
  },
  {
    "path": "client/colorui/main.css",
    "chars": 63788,
    "preview": "/*\n  ColorUi for uniApp  v2.1.6 | by 文晓港 2019-05-31 10:44:24\n  仅供学习交流,如作它用所承受的法律责任一概与作者无关\n\n  *使用ColorUi开发扩展与插件时,请注明基于Col"
  },
  {
    "path": "client/components/FabBtn/index.vue",
    "chars": 9240,
    "preview": "<template>\n\t<view>\n\t\t<view v-if=\"popMenu && (leftBottom||rightBottom||leftTop||rightTop)\" :class=\"{\n        'uni-fab--le"
  },
  {
    "path": "client/components/ListCell/index.vue",
    "chars": 1968,
    "preview": "<template>\n\t<view class=\"content\">\n\n\t\t<view class=\"mix-list-cell\" :class=\"border\" @click=\"eventClick\" hover-class=\"cell-"
  },
  {
    "path": "client/components/LoadMore/index.vue",
    "chars": 3451,
    "preview": "<template>\n\t<view class=\"uni-load-more\">\n\t\t<view class=\"uni-load-more__img\" v-show=\"status === 'loading' && showIcon\">\n\t"
  },
  {
    "path": "client/components/Loading/index.vue",
    "chars": 337,
    "preview": "<template>\n    <view class=\"cu-load load-modal\" v-if=\"show\">\n        <image src=\"/static/logo.png\" mode=\"aspectFit\"></im"
  },
  {
    "path": "client/components/ProductList/BoxLayout.vue",
    "chars": 5191,
    "preview": "<template>\n    <view class=\"good-list\">\n        <view v-for=\"(item, index) in list\" :key=\"index\" @click=\"navToDetailPage"
  },
  {
    "path": "client/components/ProductList/HorizontalLayout.vue",
    "chars": 8000,
    "preview": "<template>\n    <view class=\"cart-list\">\n        <block v-for=\"(item, index) in list\" :key=\"item.id\">\n            <view c"
  },
  {
    "path": "client/components/ProductList/HorizontalLayout2.vue",
    "chars": 873,
    "preview": "<template>\n  <view class=\"product-list\">\n    <view class=\"product\">\n      <view class=\"image\">\n        <image mode=\"widt"
  },
  {
    "path": "client/components/ProductList/HorizontalScrollLayout.vue",
    "chars": 3281,
    "preview": "<template>\n  <view class=\"flex padding-left-xs\">\n    <view v-for=\"(item, index) in list\" :key=\"index\" @tap=\"itemTap(item"
  },
  {
    "path": "client/components/Refresh/index.vue",
    "chars": 6284,
    "preview": "<template>\n\t<scroll-view style=\"height: 100%;\"\n\t\t\t\t:scroll-y=\"allow_scroll_y\"\n\t\t\t\t@scroll=\"scroll\"\n\t\t\t\t@scrolltolower=\"s"
  },
  {
    "path": "client/components/Share/index.vue",
    "chars": 3801,
    "preview": "<template>\n\t<view v-if=\"show\" class=\"mask\" @click=\"toggleMask\" @touchmove.stop.prevent=\"stopPrevent\"\n\t\t:style=\"{backgrou"
  },
  {
    "path": "client/components/SortNavbar/index.vue",
    "chars": 3040,
    "preview": "<template>\n\t<view class=\"navbar\" :style=\"{position:headerPosition,top:headerTop}\">\n\t\t<view class=\"nav-item\" :class=\"{cur"
  },
  {
    "path": "client/components/SortNavbar2/index.vue",
    "chars": 3545,
    "preview": "<template>\n  <view class=\"navbar\" :style=\"{position:headerPosition,top:headerTop}\">\n    <view class=\"nav-item\" :class=\"{"
  },
  {
    "path": "client/components/Tab/index.vue",
    "chars": 853,
    "preview": "<template>\n  <scroll-view scroll-x class=\"bg-white nav solid-bottom\" scroll-with-animation :scroll-left=\"scrollLeft\">\n  "
  },
  {
    "path": "client/components/Tab2/index.vue",
    "chars": 1659,
    "preview": "<template>\n  <scroll-view scroll-x class=\"bg-white nav solid-bottom\" scroll-with-animation :scroll-left=\"scrollLeft\">\n  "
  },
  {
    "path": "client/config.js",
    "chars": 61,
    "preview": "module.exports = {\n    // APIHOST: \"http://localhost:9090\"\n}\n"
  },
  {
    "path": "client/main.js",
    "chars": 733,
    "preview": "import Vue from 'vue'\nimport store from './store'\nimport App from './App.vue'\n\nimport backend from './api/backend'\nimpor"
  },
  {
    "path": "client/manifest.json",
    "chars": 6869,
    "preview": "{\n    \"name\" : \"FASHION\",\n    \"appid\" : \"__UNI__AA9534D\",\n    \"description\" : \"我不塑造时尚,我就是时尚\",\n    \"versionName\" : \"1.6.1"
  },
  {
    "path": "client/pages/category/category.vue",
    "chars": 4285,
    "preview": "<template>\n  <view class=\"container\">\n    <title-nav bg-color=\"bg-white solid-bottom\">\n      <block slot=\"content\">商品分类<"
  },
  {
    "path": "client/pages/collect/collect.vue",
    "chars": 4479,
    "preview": "<template>\n    <view class=\"container\">\n        <title-nav bg-color=\"bg-white solid-bottom\" :isBack=\"true\">\n            "
  },
  {
    "path": "client/pages/collect/components/CollectList.vue",
    "chars": 5462,
    "preview": "<template>\n    <view class=\"cart-list\">\n        <block v-for=\"(item, index) in list\" :key=\"item.collectionId\">\n         "
  },
  {
    "path": "client/pages/collocation/component/CollocationBox.vue",
    "chars": 1208,
    "preview": "<template>\n  <scroll-view scroll-y=\"true\">\n    <view class=\"list\">\n      <view class=\"item\" v-for=\"item in list\" :key=\"i"
  },
  {
    "path": "client/pages/collocation/component/CollocationCard.vue",
    "chars": 1962,
    "preview": "<template>\n  <view class=\"cu-card case\" @tap=\"itemTap(item)\">\n    <view class=\"cu-item shadow\">\n      <view class=\"image"
  },
  {
    "path": "client/pages/collocation/component/CollocationList.vue",
    "chars": 2394,
    "preview": "<template>\n  <view class=\"list\">\n    <view class=\"column\" style=\"margin-right: 4%\">\n\n      <view class=\"item\" v-for=\"ite"
  },
  {
    "path": "client/pages/collocation/detail.vue",
    "chars": 5224,
    "preview": "<template>\n\t<view class=\"container\">\n\t\t<title-nav bg-color=\"bg-white solid-bottom\" :isBack=\"true\">\n\t\t\t<block slot=\"conte"
  },
  {
    "path": "client/pages/collocation/index.vue",
    "chars": 5519,
    "preview": "<template>\n  <view class=\"container\">\n    <view class=\"bg-white fixed nav text-center\" style=\"font-size: 32rpx;\" :style="
  },
  {
    "path": "client/pages/halfPrice/index.vue",
    "chars": 2743,
    "preview": "<template>\n  <view class=\"container\">\n    <title-nav bg-color=\"bg-white solid-bottom\" :isBack=\"true\">\n      <block slot="
  },
  {
    "path": "client/pages/index/index.vue",
    "chars": 6256,
    "preview": "<template>\n\t<view class=\"container\">\n\t\t<title-nav bg-color=\"bg-white solid-bottom text-black\">\n\t\t\t<block slot=\"custom\">\n"
  },
  {
    "path": "client/pages/nine/nine.vue",
    "chars": 2779,
    "preview": "<template>\n  <view class=\"container\">\n    <title-nav bg-color=\"bg-white solid-bottom\" :isBack=\"true\">\n      <block slot="
  },
  {
    "path": "client/pages/product/list.vue",
    "chars": 2237,
    "preview": "<template>\n\t<view class=\"container\">\n\t\t<title-nav bg-color=\"bg-white solid-bottom\" :isBack=\"true\">\n\t\t\t<block slot=\"conte"
  },
  {
    "path": "client/pages/product/product.vue",
    "chars": 17830,
    "preview": "<template>\n\t<view class=\"container\">\n\t\t<title-nav bg-color=\"bg-white solid-bottom\" :isBack=\"true\">\n\t\t\t<block slot=\"conte"
  },
  {
    "path": "client/pages/public/guide.vue",
    "chars": 3078,
    "preview": "<template>\n    <view class=\"container\">\n        <title-nav bg-color=\"bg-white solid-bottom\" :isBack=\"true\">\n            "
  },
  {
    "path": "client/pages/public/login.vue",
    "chars": 4589,
    "preview": "<template>\n  <view class=\"container\">\n    <title-nav bg-color=\"bg-white solid-bottom text-black\" :isBack=\"true\">\n      <"
  },
  {
    "path": "client/pages/rank/rank.vue",
    "chars": 2797,
    "preview": "<template>\n    <view class=\"container\">\n        <title-nav bg-color=\"bg-white solid-bottom\" :isBack=\"true\">\n            "
  },
  {
    "path": "client/pages/search/result.vue",
    "chars": 2428,
    "preview": "<template>\n\t<view class=\"container\">\n\t\t<title-nav bg-color=\"bg-white solid-bottom\" :isBack=\"true\">\n\t\t\t<block slot=\"conte"
  },
  {
    "path": "client/pages/search/search.vue",
    "chars": 8726,
    "preview": "<template>\n\t<view class=\"container\">\n\t\t<title-nav bg-color=\"bg-white solid-bottom text-black\" :isBack=\"true\">\n\t\t\t<!--#if"
  },
  {
    "path": "client/pages/user/message.vue",
    "chars": 3451,
    "preview": "<template>\n\t<view class=\"container\">\n\t\t<title-nav bg-color=\"bg-white solid-bottom\" :isBack=\"true\">\n\t\t\t<block slot=\"conte"
  },
  {
    "path": "client/pages/user/set.vue",
    "chars": 2663,
    "preview": "<template>\n\t<view class=\"container\">\n\t\t<title-nav bg-color=\"bg-white solid-bottom\" :isBack=\"true\">\n\t\t\t<block slot=\"conte"
  },
  {
    "path": "client/pages/user/user.vue",
    "chars": 4470,
    "preview": "<template>\n\t<view class=\"container\">\n\t\t<title-nav bg-color=\"bg-white solid-bottom\">\n\t\t\t<block slot=\"content\">我</block>\n\t"
  },
  {
    "path": "client/pages/webview/index.vue",
    "chars": 1806,
    "preview": "<template>\n\t<view></view>\n</template>\n\n<script>\nlet wv;\nexport default {\n\tonLoad(option) {\n\t\tif (!option.url) {\n\t\t\tretur"
  },
  {
    "path": "client/pages.json",
    "chars": 2473,
    "preview": "{\n  \"pages\": [\n    {\n      \"path\": \"pages/collocation/index\",\n      \"style\": {}\n    },\n    {\n      \"path\": \"pages/colloc"
  },
  {
    "path": "client/store/index.js",
    "chars": 3047,
    "preview": "import Vue from 'vue'\nimport Vuex from 'vuex'\nimport api from \"../api/backend\";\n\nVue.use(Vuex)\n\nconst store = new Vuex.S"
  },
  {
    "path": "client/style/app.scss",
    "chars": 1865,
    "preview": "view,\nscroll-view,\nswiper,\nswiper-item,\ncover-view,\ncover-image,\nicon,\ntext,\nrich-text,\nprogress,\nbutton,\ncheckbox,\nform"
  },
  {
    "path": "client/uni.scss",
    "chars": 595,
    "preview": "/* 页面左右间距 */\n$page-row-spacing: 30upx;\n$page-color-base: #f8f8f8;\n$page-color-light: #f8f6fc;\n$base-color: #fa436a;\n\n/* "
  },
  {
    "path": "client/utils/cache.js",
    "chars": 1883,
    "preview": "/**\n * 缓存数据优化\n * var cache = require('utils/cache.js');\n * import cache from '../cache'\n * 使用方法 【\n *     一、设置缓存\n *      "
  },
  {
    "path": "client/utils/http.js",
    "chars": 1911,
    "preview": "import configdata from '../config'\nimport cache from './cache'\nimport store from '../store/index';\n\nmodule.exports = {\n\t"
  },
  {
    "path": "client/utils/mcUtils.js",
    "chars": 398,
    "preview": "module.exports = {\n  getShareInfo: (shareTicket, callback) => {\n    if (!shareTicket) {\n      return;\n    }\n    // #ifde"
  },
  {
    "path": "doc/application.properties",
    "chars": 623,
    "preview": "#填写前面淘客注册应用的 AppKey、AppSecret\ndataoke.appKey=\ndataoke.appSecret=\n\n#填写前面注册QQ小程序的appId、appSecret\nspring.social.qq.app-id=\n"
  },
  {
    "path": "doc/scheme.sql",
    "chars": 10210,
    "preview": "CREATE TABLE `UserConnection`\n(\n    `userId`         varchar(120) NOT NULL,\n    `providerId`     varchar(120) NOT NULL,\n"
  },
  {
    "path": "server/pom.xml",
    "chars": 6739,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/MallWebapiApplication.java",
    "chars": 1092,
    "preview": "package com.huaan9527.mall.webapi;\n\nimport com.huaan9527.mall.webapi.configuration.properties.DaTaoKeProperties;\nimport "
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/client/MobServiceClient.java",
    "chars": 1423,
    "preview": "package com.huaan9527.mall.webapi.client;\n\nimport com.alibaba.fastjson.JSON;\nimport com.alibaba.fastjson.JSONObject;\nimp"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/configuration/CommonConfiguration.java",
    "chars": 2716,
    "preview": "package com.huaan9527.mall.webapi.configuration;\n\nimport com.huaan9527.mall.webapi.security.SecurityUtils;\nimport org.ap"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/configuration/QQOAuth2Configuration.java",
    "chars": 2495,
    "preview": "package com.huaan9527.mall.webapi.configuration;\n\nimport lombok.AllArgsConstructor;\nimport org.springframework.boot.cont"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/configuration/RedisConfiguration.java",
    "chars": 1721,
    "preview": "package com.huaan9527.mall.webapi.configuration;\n\n\nimport org.springframework.context.annotation.Bean;\nimport org.spring"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/configuration/SecurityConfiguration.java",
    "chars": 1907,
    "preview": "package com.huaan9527.mall.webapi.configuration;\n\nimport com.huaan9527.mall.webapi.security.DefalutLogoutSuccessHandler;"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/configuration/SessionConfiguration.java",
    "chars": 662,
    "preview": "package com.huaan9527.mall.webapi.configuration;\n\nimport org.springframework.context.annotation.Bean;\nimport org.springf"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/configuration/SocialConfigurer.java",
    "chars": 3154,
    "preview": "package com.huaan9527.mall.webapi.configuration;\n\nimport com.huaan9527.mall.webapi.security.MsAuthenticationFailureHandl"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/configuration/WebMvcConfiguration.java",
    "chars": 2140,
    "preview": "package com.huaan9527.mall.webapi.configuration;\n\nimport com.fasterxml.jackson.databind.ObjectMapper;\nimport com.huaan95"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/configuration/WechatAutoConfiguration.java",
    "chars": 2554,
    "preview": "package com.huaan9527.mall.webapi.configuration;\n\nimport lombok.AllArgsConstructor;\nimport org.springframework.boot.cont"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/configuration/properties/DaTaoKeProperties.java",
    "chars": 302,
    "preview": "package com.huaan9527.mall.webapi.configuration.properties;\n\nimport lombok.Data;\nimport org.springframework.boot.context"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/configuration/properties/TaoBaoKeProperties.java",
    "chars": 334,
    "preview": "package com.huaan9527.mall.webapi.configuration.properties;\n\nimport lombok.Data;\nimport org.springframework.boot.context"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/configuration/properties/TencentSmsProperties.java",
    "chars": 377,
    "preview": "package com.huaan9527.mall.webapi.configuration.properties;\n\n\nimport lombok.Data;\nimport org.springframework.boot.contex"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/controller/CateController.java",
    "chars": 651,
    "preview": "package com.huaan9527.mall.webapi.controller;\n\nimport com.huaan9527.mall.webapi.service.GoodsService;\nimport com.huaan95"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/controller/CollectionController.java",
    "chars": 2224,
    "preview": "package com.huaan9527.mall.webapi.controller;\n\nimport com.huaan9527.mall.webapi.domain.enums.DataType;\nimport com.huaan9"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/controller/CollocationController.java",
    "chars": 3222,
    "preview": "package com.huaan9527.mall.webapi.controller;\n\nimport com.huaan9527.mall.webapi.service.CollocationService;\nimport com.h"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/controller/EventController.java",
    "chars": 678,
    "preview": "package com.huaan9527.mall.webapi.controller;\n\nimport com.huaan9527.mall.webapi.vos.EventVo;\nimport lombok.AllArgsConstr"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/controller/GoodsController.java",
    "chars": 3094,
    "preview": "package com.huaan9527.mall.webapi.controller;\n\nimport com.huaan9527.mall.webapi.service.GoodsService;\nimport com.huaan95"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/controller/PublicController.java",
    "chars": 5601,
    "preview": "package com.huaan9527.mall.webapi.controller;\n\nimport com.huaan9527.mall.webapi.service.CarouselService;\nimport com.huaa"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/controller/UserController.java",
    "chars": 1157,
    "preview": "package com.huaan9527.mall.webapi.controller;\n\nimport com.huaan9527.mall.webapi.service.UserService;\nimport com.huaan952"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/domain/AbstractDomain.java",
    "chars": 2439,
    "preview": "package com.huaan9527.mall.webapi.domain;\n\n\nimport lombok.Getter;\nimport lombok.Setter;\nimport org.apache.commons.lang3."
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/domain/AppreciateRelation.java",
    "chars": 607,
    "preview": "package com.huaan9527.mall.webapi.domain;\n\nimport com.huaan9527.mall.webapi.domain.enums.DataType;\nimport lombok.Getter;"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/domain/Carousel.java",
    "chars": 603,
    "preview": "package com.huaan9527.mall.webapi.domain;\n\n\nimport com.huaan9527.mall.webapi.domain.enums.Urlype;\nimport lombok.Getter;\n"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/domain/Collection.java",
    "chars": 497,
    "preview": "package com.huaan9527.mall.webapi.domain;\n\n\nimport com.huaan9527.mall.webapi.domain.enums.DataType;\nimport lombok.Getter"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/domain/Collocation.java",
    "chars": 741,
    "preview": "package com.huaan9527.mall.webapi.domain;\n\nimport lombok.Getter;\nimport lombok.NoArgsConstructor;\nimport lombok.Setter;\n"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/domain/CollocationProduct.java",
    "chars": 529,
    "preview": "package com.huaan9527.mall.webapi.domain;\n\n\nimport com.huaan9527.mall.webapi.domain.enums.ProductStatus;\nimport lombok.G"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/domain/Menu.java",
    "chars": 583,
    "preview": "package com.huaan9527.mall.webapi.domain;\n\nimport com.huaan9527.mall.webapi.domain.enums.Urlype;\nimport lombok.Getter;\ni"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/domain/Tag.java",
    "chars": 326,
    "preview": "package com.huaan9527.mall.webapi.domain;\n\nimport lombok.Getter;\nimport lombok.NoArgsConstructor;\nimport lombok.Setter;\n"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/domain/TagRelation.java",
    "chars": 483,
    "preview": "package com.huaan9527.mall.webapi.domain;\n\nimport com.huaan9527.mall.webapi.domain.enums.DataType;\nimport lombok.Getter;"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/domain/User.java",
    "chars": 1165,
    "preview": "package com.huaan9527.mall.webapi.domain;\n\nimport com.huaan9527.mall.webapi.domain.enums.UserStatus;\nimport lombok.Gette"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/domain/UserConnection.java",
    "chars": 988,
    "preview": "package com.huaan9527.mall.webapi.domain;\n\nimport lombok.Getter;\nimport lombok.NoArgsConstructor;\nimport lombok.Setter;\n"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/domain/enums/DataType.java",
    "chars": 263,
    "preview": "package com.huaan9527.mall.webapi.domain.enums;\n\npublic enum DataType {\n    Collocation(\"搭配\"), Product(\"商品\");\n\n    priva"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/domain/enums/ProductStatus.java",
    "chars": 260,
    "preview": "package com.huaan9527.mall.webapi.domain.enums;\n\npublic enum ProductStatus {\n    Up(\"上架\"), Down(\"下架\");\n    private Strin"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/domain/enums/Urlype.java",
    "chars": 91,
    "preview": "package com.huaan9527.mall.webapi.domain.enums;\n\npublic enum Urlype {\n    H5,\n    Native\n}\n"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/domain/enums/UserStatus.java",
    "chars": 97,
    "preview": "package com.huaan9527.mall.webapi.domain.enums;\n\npublic enum UserStatus {\n    Normal, Disable;\n}\n"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/domain/enums/UserType.java",
    "chars": 96,
    "preview": "package com.huaan9527.mall.webapi.domain.enums;\n\npublic enum UserType {\n    Visitor, Register\n}\n"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/exception/GlobalExceptionHandler.java",
    "chars": 1353,
    "preview": "package com.huaan9527.mall.webapi.exception;\n\nimport com.huaan9527.mall.webapi.security.SecurityUtils;\nimport com.huaan9"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/exception/MsException.java",
    "chars": 418,
    "preview": "package com.huaan9527.mall.webapi.exception;\n\nimport lombok.Getter;\n\n@Getter\npublic class MsException extends RuntimeExc"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/filter/CrossDomainFilter.java",
    "chars": 2060,
    "preview": "package com.huaan9527.mall.webapi.filter;\n\nimport org.slf4j.Logger;\nimport org.slf4j.LoggerFactory;\n\nimport javax.servle"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/interceptor/ParameterInterceptor.java",
    "chars": 877,
    "preview": "package com.huaan9527.mall.webapi.interceptor;\n\nimport com.alibaba.fastjson.JSON;\nimport org.slf4j.Logger;\nimport org.sl"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/repository/AppreciateRelationRepository.java",
    "chars": 859,
    "preview": "package com.huaan9527.mall.webapi.repository;\n\nimport com.huaan9527.mall.webapi.domain.AppreciateRelation;\nimport com.hu"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/repository/CarouselRepository.java",
    "chars": 342,
    "preview": "package com.huaan9527.mall.webapi.repository;\n\nimport com.huaan9527.mall.webapi.domain.Carousel;\nimport org.springframew"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/repository/CollectionRepository.java",
    "chars": 825,
    "preview": "package com.huaan9527.mall.webapi.repository;\n\nimport com.huaan9527.mall.webapi.domain.Collection;\nimport org.springfram"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/repository/CollocationProductRepository.java",
    "chars": 405,
    "preview": "package com.huaan9527.mall.webapi.repository;\n\nimport com.huaan9527.mall.webapi.domain.CollocationProduct;\nimport org.sp"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/repository/CollocationRepository.java",
    "chars": 1406,
    "preview": "package com.huaan9527.mall.webapi.repository;\n\nimport com.huaan9527.mall.webapi.domain.Collocation;\nimport com.huaan9527"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/repository/MenuRepository.java",
    "chars": 381,
    "preview": "package com.huaan9527.mall.webapi.repository;\n\nimport com.huaan9527.mall.webapi.domain.Menu;\nimport org.springframework."
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/repository/TagRelationRepository.java",
    "chars": 259,
    "preview": "package com.huaan9527.mall.webapi.repository;\n\nimport com.huaan9527.mall.webapi.domain.TagRelation;\nimport org.springfra"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/repository/TagRepository.java",
    "chars": 271,
    "preview": "package com.huaan9527.mall.webapi.repository;\n\nimport com.huaan9527.mall.webapi.domain.Tag;\nimport org.springframework.d"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/repository/UserConnectionRepository.java",
    "chars": 316,
    "preview": "package com.huaan9527.mall.webapi.repository;\n\nimport com.huaan9527.mall.webapi.domain.UserConnection;\nimport org.spring"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/repository/UserRepository.java",
    "chars": 356,
    "preview": "package com.huaan9527.mall.webapi.repository;\n\nimport com.huaan9527.mall.webapi.domain.User;\nimport org.springframework."
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/security/DefalutLogoutSuccessHandler.java",
    "chars": 779,
    "preview": "package com.huaan9527.mall.webapi.security;\n\nimport com.huaan9527.mall.webapi.utils.ResponseEntity;\nimport com.huaan9527"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/security/DefaultConnectionSignUp.java",
    "chars": 652,
    "preview": "package com.huaan9527.mall.webapi.security;\n\nimport com.huaan9527.mall.webapi.domain.User;\nimport com.huaan9527.mall.web"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/security/DefaultSocialUserDetailsService.java",
    "chars": 1047,
    "preview": "package com.huaan9527.mall.webapi.security;\n\nimport com.huaan9527.mall.webapi.domain.User;\nimport com.huaan9527.mall.web"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/security/MobileCodeAuthenticationProvider.java",
    "chars": 3109,
    "preview": "package com.huaan9527.mall.webapi.security;\n\nimport com.huaan9527.mall.webapi.client.MobServiceClient;\nimport lombok.ext"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/security/MsAuthenticationEntryPoint.java",
    "chars": 990,
    "preview": "package com.huaan9527.mall.webapi.security;\n\nimport com.huaan9527.mall.webapi.utils.Constants;\nimport com.huaan9527.mall"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/security/MsAuthenticationFailureHandler.java",
    "chars": 1405,
    "preview": "package com.huaan9527.mall.webapi.security;\n\nimport com.huaan9527.mall.webapi.utils.Constants;\nimport com.huaan9527.mall"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/security/MsAuthenticationSuccessHandler.java",
    "chars": 1056,
    "preview": "package com.huaan9527.mall.webapi.security;\n\nimport com.huaan9527.mall.webapi.utils.ResponseEntity;\nimport com.huaan9527"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/security/SecurityUtils.java",
    "chars": 1163,
    "preview": "package com.huaan9527.mall.webapi.security;\n\nimport com.huaan9527.mall.webapi.exception.MsException;\nimport org.springfr"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/security/UserDetailsServiceImpl.java",
    "chars": 1246,
    "preview": "package com.huaan9527.mall.webapi.security;\n\nimport com.huaan9527.mall.webapi.service.UserService;\nimport lombok.NoArgsC"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/service/AppreciateRelationService.java",
    "chars": 2206,
    "preview": "package com.huaan9527.mall.webapi.service;\n\nimport com.huaan9527.mall.webapi.domain.AppreciateRelation;\nimport com.huaan"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/service/CarouselService.java",
    "chars": 948,
    "preview": "package com.huaan9527.mall.webapi.service;\n\nimport com.huaan9527.mall.webapi.domain.Carousel;\nimport com.huaan9527.mall."
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/service/CollectionService.java",
    "chars": 3910,
    "preview": "package com.huaan9527.mall.webapi.service;\n\nimport com.huaan9527.mall.webapi.domain.Collection;\nimport com.huaan9527.mal"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/service/CollocationService.java",
    "chars": 6738,
    "preview": "package com.huaan9527.mall.webapi.service;\n\nimport com.alibaba.fastjson.JSONObject;\nimport com.huaan9527.mall.webapi.dom"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/service/GoodsService.java",
    "chars": 8961,
    "preview": "package com.huaan9527.mall.webapi.service;\n\nimport com.alibaba.fastjson.JSON;\nimport com.alibaba.fastjson.JSONArray;\nimp"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/service/MenuService.java",
    "chars": 866,
    "preview": "package com.huaan9527.mall.webapi.service;\n\nimport com.huaan9527.mall.webapi.domain.Menu;\nimport com.huaan9527.mall.weba"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/service/TagService.java",
    "chars": 1190,
    "preview": "package com.huaan9527.mall.webapi.service;\n\nimport com.huaan9527.mall.webapi.domain.Tag;\nimport com.huaan9527.mall.webap"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/service/UserService.java",
    "chars": 6688,
    "preview": "package com.huaan9527.mall.webapi.service;\n\nimport com.huaan9527.mall.webapi.domain.User;\nimport com.huaan9527.mall.weba"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/service/operation/api/AbstractDaTaoKeApi.java",
    "chars": 706,
    "preview": "package com.huaan9527.mall.webapi.service.operation.api;\n\nimport com.huaan9527.mall.webapi.configuration.properties.DaTa"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/service/operation/api/AlbumApi.java",
    "chars": 1069,
    "preview": "package com.huaan9527.mall.webapi.service.operation.api;\n\nimport com.alibaba.fastjson.JSON;\nimport com.alibaba.fastjson."
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/service/operation/api/AlbumGoodsApi.java",
    "chars": 1263,
    "preview": "package com.huaan9527.mall.webapi.service.operation.api;\n\nimport com.alibaba.fastjson.JSON;\nimport com.alibaba.fastjson."
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/service/operation/api/BrandApi.java",
    "chars": 1195,
    "preview": "package com.huaan9527.mall.webapi.service.operation.api;\n\nimport com.alibaba.fastjson.JSON;\nimport com.alibaba.fastjson."
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/service/operation/api/CateApi.java",
    "chars": 1073,
    "preview": "package com.huaan9527.mall.webapi.service.operation.api;\n\nimport com.alibaba.fastjson.JSON;\nimport com.alibaba.fastjson."
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/service/operation/api/ExplosiveGoodsListApi.java",
    "chars": 1158,
    "preview": "package com.huaan9527.mall.webapi.service.operation.api;\n\nimport com.alibaba.fastjson.JSON;\nimport com.alibaba.fastjson."
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/service/operation/api/GoodsApi.java",
    "chars": 1116,
    "preview": "package com.huaan9527.mall.webapi.service.operation.api;\n\nimport com.alibaba.fastjson.JSON;\nimport com.alibaba.fastjson."
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/service/operation/api/GoodsDetailApi.java",
    "chars": 1320,
    "preview": "package com.huaan9527.mall.webapi.service.operation.api;\n\nimport com.alibaba.fastjson.JSON;\nimport com.alibaba.fastjson."
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/service/operation/api/HotSearchTop10Api.java",
    "chars": 1185,
    "preview": "package com.huaan9527.mall.webapi.service.operation.api;\n\nimport com.alibaba.fastjson.JSON;\nimport com.alibaba.fastjson."
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/service/operation/api/NineGoodsApi.java",
    "chars": 1260,
    "preview": "package com.huaan9527.mall.webapi.service.operation.api;\n\nimport com.alibaba.fastjson.JSON;\nimport com.alibaba.fastjson."
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/service/operation/api/PrivilegeApi.java",
    "chars": 1218,
    "preview": "package com.huaan9527.mall.webapi.service.operation.api;\n\nimport com.alibaba.fastjson.JSON;\nimport com.alibaba.fastjson."
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/service/operation/api/RankGoodsApi.java",
    "chars": 1196,
    "preview": "package com.huaan9527.mall.webapi.service.operation.api;\n\nimport com.alibaba.fastjson.JSON;\nimport com.alibaba.fastjson."
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/service/operation/api/SearchApi.java",
    "chars": 1252,
    "preview": "package com.huaan9527.mall.webapi.service.operation.api;\n\nimport com.alibaba.fastjson.JSON;\nimport com.alibaba.fastjson."
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/service/operation/api/SimilarGoodsApi.java",
    "chars": 1225,
    "preview": "package com.huaan9527.mall.webapi.service.operation.api;\n\nimport com.alibaba.fastjson.JSON;\nimport com.alibaba.fastjson."
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/service/operation/api/SupperSearchApi.java",
    "chars": 1293,
    "preview": "package com.huaan9527.mall.webapi.service.operation.api;\n\nimport com.alibaba.fastjson.JSON;\nimport com.alibaba.fastjson."
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/service/operation/api/TaobaoSearchApi.java",
    "chars": 1376,
    "preview": "package com.huaan9527.mall.webapi.service.operation.api;\n\nimport com.alibaba.fastjson.JSON;\nimport com.alibaba.fastjson."
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/sms/AbstractSmsProvider.java",
    "chars": 811,
    "preview": "package com.huaan9527.mall.webapi.sms;\n\nimport com.huaan9527.mall.webapi.exception.MsException;\nimport org.springframewo"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/sms/SendSmsRequest.java",
    "chars": 283,
    "preview": "package com.huaan9527.mall.webapi.sms;\n\nimport lombok.Getter;\nimport lombok.Setter;\n\nimport java.util.List;\nimport java."
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/sms/SendSmsResponse.java",
    "chars": 304,
    "preview": "package com.huaan9527.mall.webapi.sms;\n\nimport lombok.Getter;\nimport lombok.Setter;\n\n@Getter\n@Setter\npublic class SendSm"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/sms/SmsProvider.java",
    "chars": 128,
    "preview": "package com.huaan9527.mall.webapi.sms;\n\npublic interface SmsProvider {\n\n    SendSmsResponse sendSms(SendSmsRequest reque"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/sms/SmsProviders.java",
    "chars": 131,
    "preview": "package com.huaan9527.mall.webapi.sms;\n\nimport org.springframework.stereotype.Component;\n\n@Component\npublic class SmsPro"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/sms/TencentSmsProviderAdapter.java",
    "chars": 2991,
    "preview": "package com.huaan9527.mall.webapi.sms;\n\nimport com.alibaba.fastjson.JSON;\nimport com.huaan9527.mall.webapi.configuration"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/utils/CodeGenerator.java",
    "chars": 1033,
    "preview": "package com.huaan9527.mall.webapi.utils;\n\n/**\n *\n */\npublic class CodeGenerator {\n\n    /**\n     * 创建指定数量的随机字符串\n     *\n  "
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/utils/Constants.java",
    "chars": 437,
    "preview": "package com.huaan9527.mall.webapi.utils;\n\npublic class Constants {\n    public static final int LOGIN_FAILURE_CODE = 7001"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/utils/DateUtils.java",
    "chars": 808,
    "preview": "package com.huaan9527.mall.webapi.utils;\n\nimport java.util.Calendar;\nimport java.util.Date;\n\npublic class DateUtils {\n  "
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/utils/DxyzmUtils.java",
    "chars": 766,
    "preview": "package com.huaan9527.mall.webapi.utils;\n\nimport java.security.SecureRandom;\nimport java.util.Random;\n\npublic class Dxyz"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/utils/HttpsClientUtil.java",
    "chars": 2252,
    "preview": "package com.huaan9527.mall.webapi.utils;\n\nimport org.apache.http.HttpEntity;\nimport org.apache.http.client.config.Reques"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/utils/MD5Util.java",
    "chars": 268,
    "preview": "package com.huaan9527.mall.webapi.utils;\n\nimport org.springframework.util.DigestUtils;\n\npublic class MD5Util {\n    /**\n "
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/utils/PageResponse.java",
    "chars": 456,
    "preview": "package com.huaan9527.mall.webapi.utils;\n\nimport lombok.AllArgsConstructor;\nimport lombok.Getter;\nimport lombok.Setter;\n"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/utils/ResponseEntity.java",
    "chars": 4595,
    "preview": "package com.huaan9527.mall.webapi.utils;\n\n\nimport org.springframework.http.HttpStatus;\nimport org.springframework.valida"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/utils/URLUtil.java",
    "chars": 1096,
    "preview": "package com.huaan9527.mall.webapi.utils;\n\nimport java.util.HashMap;\nimport java.util.Map;\n\npublic class URLUtil {\n    pu"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/utils/WebUtils.java",
    "chars": 4846,
    "preview": "package com.huaan9527.mall.webapi.utils;\n\n\nimport com.alibaba.fastjson.JSON;\nimport org.apache.commons.lang3.StringUtils"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/vos/CarouselVo.java",
    "chars": 417,
    "preview": "package com.huaan9527.mall.webapi.vos;\n\nimport lombok.Getter;\nimport lombok.NoArgsConstructor;\nimport lombok.Setter;\n\nim"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/vos/CollectionVo.java",
    "chars": 703,
    "preview": "package com.huaan9527.mall.webapi.vos;\n\nimport com.huaan9527.mall.webapi.domain.Collection;\nimport com.huaan9527.mall.we"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/vos/CollocationDetailVo.java",
    "chars": 1336,
    "preview": "package com.huaan9527.mall.webapi.vos;\n\nimport lombok.AllArgsConstructor;\nimport lombok.Builder;\nimport lombok.Data;\nimp"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/vos/CollocationProductVo.java",
    "chars": 519,
    "preview": "package com.huaan9527.mall.webapi.vos;\n\nimport lombok.AllArgsConstructor;\nimport lombok.Builder;\nimport lombok.Data;\nimp"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/vos/CollocationVo.java",
    "chars": 1340,
    "preview": "package com.huaan9527.mall.webapi.vos;\n\nimport lombok.AllArgsConstructor;\nimport lombok.Builder;\nimport lombok.Getter;\ni"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/vos/ConfirmSMSCodeVo.java",
    "chars": 236,
    "preview": "package com.huaan9527.mall.webapi.vos;\n\nimport lombok.Builder;\nimport lombok.Data;\n\n@Data\n@Builder\npublic class ConfirmS"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/vos/EventVo.java",
    "chars": 402,
    "preview": "package com.huaan9527.mall.webapi.vos;\n\nimport lombok.AllArgsConstructor;\nimport lombok.Builder;\nimport lombok.Data;\nimp"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/vos/MenuVo.java",
    "chars": 437,
    "preview": "package com.huaan9527.mall.webapi.vos;\n\nimport lombok.Getter;\nimport lombok.NoArgsConstructor;\nimport lombok.Setter;\n\nim"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/vos/ProductVo.java",
    "chars": 978,
    "preview": "package com.huaan9527.mall.webapi.vos;\n\nimport lombok.AllArgsConstructor;\nimport lombok.Builder;\nimport lombok.Getter;\ni"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/vos/RegisterVo.java",
    "chars": 557,
    "preview": "package com.huaan9527.mall.webapi.vos;\n\nimport lombok.Getter;\nimport lombok.NoArgsConstructor;\nimport lombok.Setter;\nimp"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/vos/RegisterVo2.java",
    "chars": 496,
    "preview": "package com.huaan9527.mall.webapi.vos;\n\nimport lombok.Getter;\nimport lombok.NoArgsConstructor;\nimport lombok.Setter;\n\nim"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/vos/SendEmailCodeVo.java",
    "chars": 365,
    "preview": "package com.huaan9527.mall.webapi.vos;\n\nimport lombok.Getter;\nimport lombok.NoArgsConstructor;\nimport lombok.Setter;\n\nim"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/vos/TagVo.java",
    "chars": 193,
    "preview": "package com.huaan9527.mall.webapi.vos;\n\nimport lombok.Data;\n\nimport java.io.Serializable;\n\n@Data\npublic class TagVo impl"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/vos/UpdatePasswordVo.java",
    "chars": 565,
    "preview": "package com.huaan9527.mall.webapi.vos;\n\nimport lombok.Getter;\nimport lombok.NoArgsConstructor;\nimport lombok.Setter;\nimp"
  },
  {
    "path": "server/src/main/java/com/huaan9527/mall/webapi/vos/UserVo.java",
    "chars": 526,
    "preview": "package com.huaan9527.mall.webapi.vos;\n\nimport lombok.Getter;\nimport lombok.NoArgsConstructor;\nimport lombok.Setter;\n\nim"
  },
  {
    "path": "server/src/main/resources/application-dev.properties",
    "chars": 2228,
    "preview": "spring.application.name=mall-counpons-server\n\nserver.port=9090\nserver.tomcat.uri-encoding=UTF-8\nserver.tomcat.remote-ip-"
  },
  {
    "path": "server/src/main/resources/application-prod.properties",
    "chars": 2228,
    "preview": "spring.application.name=mall-counpons-server\n\nserver.port=9090\nserver.tomcat.uri-encoding=UTF-8\nserver.tomcat.remote-ip-"
  },
  {
    "path": "server/src/main/resources/application-test.properties",
    "chars": 2228,
    "preview": "spring.application.name=mall-counpons-server\n\nserver.port=9090\nserver.tomcat.uri-encoding=UTF-8\nserver.tomcat.remote-ip-"
  },
  {
    "path": "server/src/main/resources/mapper/CollocationMapper.xml",
    "chars": 4708,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE mapper PUBLIC \"-//mybatis.org//DTD Mapper 3.0//EN\"\n        \"http://myba"
  },
  {
    "path": "server/src/test/java/com/huaan9527/mall/webapi/BaseTest.java",
    "chars": 464,
    "preview": "package com.huaan9527.mall.webapi;\n\nimport org.junit.runner.RunWith;\nimport org.springframework.boot.test.context.Spring"
  },
  {
    "path": "server/src/test/java/com/huaan9527/mall/webapi/MallWebapiApplicationTests.java",
    "chars": 2193,
    "preview": "package com.huaan9527.mall.webapi;\n\nimport com.alibaba.fastjson.JSON;\nimport com.alibaba.fastjson.JSONObject;\nimport com"
  },
  {
    "path": "server/src/test/java/com/huaan9527/mall/webapi/service/CollocationServiceTest.java",
    "chars": 908,
    "preview": "package com.huaan9527.mall.webapi.service;\n\nimport com.huaan9527.mall.webapi.BaseTest;\nimport com.huaan9527.mall.webapi."
  },
  {
    "path": "server/src/test/java/com/huaan9527/mall/webapi/service/CustomerInfoService.java",
    "chars": 185,
    "preview": "package com.huaan9527.mall.webapi.service;\n\npublic class CustomerInfoService implements RemoteLoader {\n\n    public Strin"
  },
  {
    "path": "server/src/test/java/com/huaan9527/mall/webapi/service/GoodsServiceTest.java",
    "chars": 630,
    "preview": "package com.huaan9527.mall.webapi.service;\n\nimport com.alibaba.fastjson.JSON;\nimport com.alibaba.fastjson.JSONObject;\nim"
  },
  {
    "path": "server/src/test/java/com/huaan9527/mall/webapi/service/LabelService.java",
    "chars": 190,
    "preview": "package com.huaan9527.mall.webapi.service;\n\npublic class LabelService implements RemoteLoader {\n    @Override\n    public"
  },
  {
    "path": "server/src/test/java/com/huaan9527/mall/webapi/service/LearnRecordService.java",
    "chars": 184,
    "preview": "package com.huaan9527.mall.webapi.service;\n\npublic class LearnRecordService implements RemoteLoader {\n\n    public String"
  },
  {
    "path": "server/src/test/java/com/huaan9527/mall/webapi/service/OrderService.java",
    "chars": 190,
    "preview": "package com.huaan9527.mall.webapi.service;\n\npublic class OrderService implements RemoteLoader {\n    @Override\n    public"
  },
  {
    "path": "server/src/test/java/com/huaan9527/mall/webapi/service/RemoteLoader.java",
    "chars": 265,
    "preview": "package com.huaan9527.mall.webapi.service;\n\npublic interface RemoteLoader {\n\n    String load();\n\n    default void delay("
  },
  {
    "path": "server/src/test/java/com/huaan9527/mall/webapi/service/UserDetailService.java",
    "chars": 6089,
    "preview": "package com.huaan9527.mall.webapi.service;\n\nimport org.junit.Test;\n\nimport java.util.Arrays;\nimport java.util.List;\nimpo"
  },
  {
    "path": "server/src/test/java/com/huaan9527/mall/webapi/service/WatchRecordService.java",
    "chars": 196,
    "preview": "package com.huaan9527.mall.webapi.service;\n\npublic class WatchRecordService implements RemoteLoader {\n    @Override\n    "
  },
  {
    "path": "server/static/download/css/index.css",
    "chars": 146964,
    "preview": "\nbody, html {\n    /* font: 17px/1.5rem \"Simsun\"; */\n    background: #fff;\n    height: 100%;\n    font-size: 12px;\n    pad"
  },
  {
    "path": "server/static/download/index.html",
    "chars": 4270,
    "preview": "<!-- saved from url=(0019)http://cb.ssgg6.cn/ -->\n<html style=\"font-size: 85.3333px;\">\n<head>\n    <meta http-equiv=\"Cont"
  },
  {
    "path": "server/static/invite/css/common.css",
    "chars": 3629,
    "preview": "html,\nbody,\nform,\nfieldset,\np,\ndiv,\nh1,\nh2,\nh3,\nh4,\nh5,\nh6 {\n    -webkit-text-size-adjust: none\n}\n\nhtml {\n    font-size:"
  },
  {
    "path": "server/static/invite/css/layer.css",
    "chars": 14573,
    "preview": ".layui-layer-imgbar,.layui-layer-imgtit a,.layui-layer-tab .layui-layer-title span,.layui-layer-title{text-overflow:elli"
  },
  {
    "path": "server/static/invite/index.html",
    "chars": 2708,
    "preview": "<!DOCTYPE html>\n<html>\n<head>\n    <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n    <meta name=\"vi"
  },
  {
    "path": "server/static/invite/script/common.js",
    "chars": 3434,
    "preview": "var waitTime = 60;\n\nfunction setTime(self) {\n    var html;\n    if (waitTime === 0) {\n        $('.verifyCode').removeClas"
  },
  {
    "path": "server/static/invite/script/layer.js",
    "chars": 21602,
    "preview": "/*! layer-v3.0.3 Web弹层组件 MIT License  http://layer.layui.com/  By 贤心 */\n ;!function(e,t){\"use strict\";var i,n,a=e.layui"
  },
  {
    "path": "server/static/user/agreement.html",
    "chars": 6056,
    "preview": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <title>Fashion用户服务协议</title>\n</head>\n<style>\n    "
  }
]

// ... and 3 more files (download for full content)

About this extraction

This page contains the full source code of the silently9527/coupons GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 203 files (724.6 KB), approximately 258.1k tokens, and a symbol index with 410 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!