在好例子网,分享、交流、成长!
您当前所在位置:首页PHP 开发实例PHP语言基础 → CRMEB免费开源商城系统源码

CRMEB免费开源商城系统源码

PHP语言基础

下载此实例
  • 开发语言:PHP
  • 实例大小:100.91M
  • 下载次数:50
  • 浏览次数:395
  • 发布时间:2022-03-10
  • 实例类别:PHP语言基础
  • 发 布 人:lqbank
  • 文件格式:.zip
  • 所需积分:0
 相关标签: CRMEB CRM

实例介绍

【实例简介】CRMEB免费开源商城系统源码
【实例截图】

from clipboard

from clipboard


【核心代码】

.
├── 043733b92f4f806460c26da2ed08ffdb_haolizi.zip
└── CRMEB-master
    ├── LICENSE
    ├── README.md
    ├── crmeb
    │   ├── LICENSE.txt
    │   ├── README.md
    │   ├── app
    │   │   ├── AppService.php
    │   │   ├── ExceptionHandle.php
    │   │   ├── Request.php
    │   │   ├── adminapi
    │   │   │   ├── AdminApiExceptionHandle.php
    │   │   │   ├── common.php
    │   │   │   ├── config
    │   │   │   │   └── route.php
    │   │   │   ├── controller
    │   │   │   │   ├── AuthController.php
    │   │   │   │   ├── Common.php
    │   │   │   │   ├── Login.php
    │   │   │   │   ├── PublicController.php
    │   │   │   │   ├── Test.php
    │   │   │   │   └── v1
    │   │   │   ├── event.php
    │   │   │   ├── middleware
    │   │   │   │   ├── AdminAuthTokenMiddleware.php
    │   │   │   │   ├── AdminCkeckRoleMiddleware.php
    │   │   │   │   └── AdminLogMiddleware.php
    │   │   │   ├── provider.php
    │   │   │   ├── route
    │   │   │   │   ├── agent.php
    │   │   │   │   ├── app.php
    │   │   │   │   ├── cms.php
    │   │   │   │   ├── common.php
    │   │   │   │   ├── diy.php
    │   │   │   │   ├── export.php
    │   │   │   │   ├── file.php
    │   │   │   │   ├── finance.php
    │   │   │   │   ├── freight.php
    │   │   │   │   ├── live.php
    │   │   │   │   ├── marketing.php
    │   │   │   │   ├── merchant.php
    │   │   │   │   ├── notify.php
    │   │   │   │   ├── order.php
    │   │   │   │   ├── product.php
    │   │   │   │   ├── route.php
    │   │   │   │   ├── serve.php
    │   │   │   │   ├── setting.php
    │   │   │   │   ├── system.php
    │   │   │   │   ├── user.php
    │   │   │   │   └── widget.php
    │   │   │   └── validate
    │   │   │       ├── marketing
    │   │   │       ├── merchant
    │   │   │       ├── notification
    │   │   │       ├── order
    │   │   │       ├── product
    │   │   │       ├── serve
    │   │   │       ├── service
    │   │   │       ├── setting
    │   │   │       └── user
    │   │   ├── api
    │   │   │   ├── ApiExceptionHandle.php
    │   │   │   ├── common.php
    │   │   │   ├── config
    │   │   │   │   └── route.php
    │   │   │   ├── controller
    │   │   │   │   ├── pc
    │   │   │   │   ├── v1
    │   │   │   │   └── v2
    │   │   │   ├── event.php
    │   │   │   ├── lang
    │   │   │   │   └── zh-cn.php
    │   │   │   ├── middleware
    │   │   │   │   ├── AuthTokenMiddleware.php
    │   │   │   │   ├── CustomerMiddleware.php
    │   │   │   │   └── StationOpenMiddleware.php
    │   │   │   ├── provider.php
    │   │   │   ├── route
    │   │   │   │   ├── pc.php
    │   │   │   │   ├── v1.php
    │   │   │   │   └── v2.php
    │   │   │   └── validate
    │   │   │       └── user
    │   │   ├── build.php
    │   │   ├── common.php
    │   │   ├── dao
    │   │   │   ├── BaseDao.php
    │   │   │   ├── activity
    │   │   │   │   ├── StoreAdvanceDao.php
    │   │   │   │   ├── StoreBargainDao.php
    │   │   │   │   ├── StoreBargainUserDao.php
    │   │   │   │   ├── StoreBargainUserHelpDao.php
    │   │   │   │   ├── StoreCombinationDao.php
    │   │   │   │   ├── StorePinkDao.php
    │   │   │   │   ├── StoreSeckillDao.php
    │   │   │   │   ├── integral
    │   │   │   │   └── lottery
    │   │   │   ├── agent
    │   │   │   │   ├── AgentLevelDao.php
    │   │   │   │   ├── AgentLevelTaskDao.php
    │   │   │   │   └── AgentLevelTaskRecordDao.php
    │   │   │   ├── article
    │   │   │   │   ├── ArticleCategoryDao.php
    │   │   │   │   ├── ArticleContentDao.php
    │   │   │   │   └── ArticleDao.php
    │   │   │   ├── coupon
    │   │   │   │   ├── StoreCouponDao.php
    │   │   │   │   ├── StoreCouponIssueDao.php
    │   │   │   │   ├── StoreCouponIssueUserDao.php
    │   │   │   │   ├── StoreCouponProductDao.php
    │   │   │   │   ├── StoreCouponUserCouponDao.php
    │   │   │   │   ├── StoreCouponUserDao.php
    │   │   │   │   └── StoreCouponUserUserDao.php
    │   │   │   ├── diy
    │   │   │   │   ├── DiyDao.php
    │   │   │   │   ├── PageCategoryDao.php
    │   │   │   │   └── PageLinkDao.php
    │   │   │   ├── live
    │   │   │   │   ├── LiveAnchorDao.php
    │   │   │   │   ├── LiveGoodsDao.php
    │   │   │   │   ├── LiveRoomDao.php
    │   │   │   │   └── LiveRoomGoodsDao.php
    │   │   │   ├── order
    │   │   │   │   ├── DeliveryServiceDao.php
    │   │   │   │   ├── OtherOrderDao.php
    │   │   │   │   ├── OtherOrderStatusDao.php
    │   │   │   │   ├── StoreCartDao.php
    │   │   │   │   ├── StoreOrderCartInfoDao.php
    │   │   │   │   ├── StoreOrderDao.php
    │   │   │   │   ├── StoreOrderEconomizeDao.php
    │   │   │   │   ├── StoreOrderInvoiceDao.php
    │   │   │   │   ├── StoreOrderOrderInvoiceDao.php
    │   │   │   │   ├── StoreOrderStatusDao.php
    │   │   │   │   ├── StoreOrderStoreOrderCartInfoDao.php
    │   │   │   │   └── StoreOrderStoreOrderStatusDao.php
    │   │   │   ├── other
    │   │   │   │   ├── AgreementDao.php
    │   │   │   │   ├── AuxiliaryDao.php
    │   │   │   │   ├── CacheDao.php
    │   │   │   │   ├── CategoryDao.php
    │   │   │   │   ├── QrcodeDao.php
    │   │   │   │   └── TemplateMessageDao.php
    │   │   │   ├── product
    │   │   │   │   ├── product
    │   │   │   │   └── sku
    │   │   │   ├── service
    │   │   │   │   ├── StoreServiceAuxiliaryDao.php
    │   │   │   │   ├── StoreServiceDao.php
    │   │   │   │   ├── StoreServiceFeedbackDao.php
    │   │   │   │   ├── StoreServiceLogDao.php
    │   │   │   │   ├── StoreServiceRecordDao.php
    │   │   │   │   └── StoreServiceSpeechcraftDao.php
    │   │   │   ├── shipping
    │   │   │   │   ├── ExpressDao.php
    │   │   │   │   ├── ShippingTemplatesDao.php
    │   │   │   │   ├── ShippingTemplatesFreeCityDao.php
    │   │   │   │   ├── ShippingTemplatesFreeDao.php
    │   │   │   │   ├── ShippingTemplatesNoDeliveryCityDao.php
    │   │   │   │   ├── ShippingTemplatesNoDeliveryDao.php
    │   │   │   │   ├── ShippingTemplatesRegionCityDao.php
    │   │   │   │   ├── ShippingTemplatesRegionDao.php
    │   │   │   │   └── SystemCityDao.php
    │   │   │   ├── sms
    │   │   │   │   ├── SmsAdminDao.php
    │   │   │   │   └── SmsRecordDao.php
    │   │   │   ├── system
    │   │   │   │   ├── AppVersionDao.php
    │   │   │   │   ├── MessageSystemDao.php
    │   │   │   │   ├── SystemMenusDao.php
    │   │   │   │   ├── SystemNotificationDao.php
    │   │   │   │   ├── SystemUserLevelDao.php
    │   │   │   │   ├── admin
    │   │   │   │   ├── attachment
    │   │   │   │   ├── config
    │   │   │   │   ├── log
    │   │   │   │   └── store
    │   │   │   ├── user
    │   │   │   │   ├── MemberCardBatchDao.php
    │   │   │   │   ├── MemberCardDao.php
    │   │   │   │   ├── MemberRightDao.php
    │   │   │   │   ├── MemberShipDao.php
    │   │   │   │   ├── UserAddressDao.php
    │   │   │   │   ├── UserAuthDao.php
    │   │   │   │   ├── UserBillDao.php
    │   │   │   │   ├── UserBillStoreOrderDao.php
    │   │   │   │   ├── UserBrokerageFrozenDao.php
    │   │   │   │   ├── UserDao.php
    │   │   │   │   ├── UserExtractDao.php
    │   │   │   │   ├── UserFriendsDao.php
    │   │   │   │   ├── UserGroupDao.php
    │   │   │   │   ├── UserInvoiceDao.php
    │   │   │   │   ├── UserLabelCateDao.php
    │   │   │   │   ├── UserLabelDao.php
    │   │   │   │   ├── UserLabelRelationDao.php
    │   │   │   │   ├── UserLevelDao.php
    │   │   │   │   ├── UserRechargeDao.php
    │   │   │   │   ├── UserSearchDao.php
    │   │   │   │   ├── UserSignDao.php
    │   │   │   │   ├── UserSpreadDao.php
    │   │   │   │   ├── UserStoreOrderDao.php
    │   │   │   │   ├── UserTaskFinishDao.php
    │   │   │   │   ├── UserUserBillDao.php
    │   │   │   │   ├── UserVisitDao.php
    │   │   │   │   └── UserWechatUserDao.php
    │   │   │   └── wechat
    │   │   │       ├── WechatKeyDao.php
    │   │   │       ├── WechatMediaDao.php
    │   │   │       ├── WechatMenuDao.php
    │   │   │       ├── WechatMessageDao.php
    │   │   │       ├── WechatNewsCategoryDao.php
    │   │   │       ├── WechatReplyDao.php
    │   │   │       ├── WechatReplyKeyDao.php
    │   │   │       └── WechatUserDao.php
    │   │   ├── event.php
    │   │   ├── http
    │   │   │   └── middleware
    │   │   │       └── AllowOriginMiddleware.php
    │   │   ├── jobs
    │   │   │   ├── AgentJob.php
    │   │   │   ├── LiveJob.php
    │   │   │   ├── OrderCreateAfterJob.php
    │   │   │   ├── OrderJob.php
    │   │   │   ├── OtherOrderJob.php
    │   │   │   ├── PinkJob.php
    │   │   │   ├── PosterJob.php
    │   │   │   ├── ProductCopyJob.php
    │   │   │   ├── ProductLogJob.php
    │   │   │   ├── RoutineTemplateJob.php
    │   │   │   ├── TakeOrderJob.php
    │   │   │   ├── TaskJob.php
    │   │   │   ├── TemplateJob.php
    │   │   │   ├── UnpaidOrderCancelJob.php
    │   │   │   ├── UnpaidOrderSend.php
    │   │   │   ├── UserJob.php
    │   │   │   ├── WechatTemplateJob.php
    │   │   │   └── notice
    │   │   │       ├── EnterpriseWechatJob.php
    │   │   │       ├── PrintJob.php
    │   │   │       └── SmsJob.php
    │   │   ├── kefuapi
    │   │   │   ├── KefuApiExceptionHandle.php
    │   │   │   ├── config
    │   │   │   │   └── route.php
    │   │   │   ├── controller
    │   │   │   │   ├── AuthController.php
    │   │   │   │   ├── Common.php
    │   │   │   │   ├── Login.php
    │   │   │   │   ├── Order.php
    │   │   │   │   ├── Product.php
    │   │   │   │   ├── Service.php
    │   │   │   │   └── User.php
    │   │   │   ├── middleware
    │   │   │   │   └── KefuAuthTokenMiddleware.php
    │   │   │   ├── provider.php
    │   │   │   ├── route
    │   │   │   │   └── route.php
    │   │   │   └── validate
    │   │   │       ├── LoginValidate.php
    │   │   │       └── SpeechcraftValidate.php
    │   │   ├── lang
    │   │   │   └── zh-cn.php
    │   │   ├── listener
    │   │   │   ├── notice
    │   │   │   │   └── Notice.php
    │   │   │   ├── order
    │   │   │   │   ├── OrderCreateAfter.php
    │   │   │   │   ├── OrderDelivery.php
    │   │   │   │   ├── OrderPaySuccess.php
    │   │   │   │   └── OrderTake.php
    │   │   │   ├── user
    │   │   │   │   ├── Login.php
    │   │   │   │   ├── Register.php
    │   │   │   │   ├── UserLevel.php
    │   │   │   │   └── UserVisit.php
    │   │   │   └── wechat
    │   │   │       └── Auth.php
    │   │   ├── middleware.php
    │   │   ├── model
    │   │   │   ├── activity
    │   │   │   │   ├── StoreAdvance.php
    │   │   │   │   ├── StoreBargain.php
    │   │   │   │   ├── StoreBargainUser.php
    │   │   │   │   ├── StoreBargainUserHelp.php
    │   │   │   │   ├── StoreCombination.php
    │   │   │   │   ├── StorePink.php
    │   │   │   │   ├── StoreSeckill.php
    │   │   │   │   ├── integral
    │   │   │   │   └── lottery
    │   │   │   ├── agent
    │   │   │   │   ├── AgentLevel.php
    │   │   │   │   ├── AgentLevelTask.php
    │   │   │   │   └── AgentLevelTaskRecord.php
    │   │   │   ├── article
    │   │   │   │   ├── Article.php
    │   │   │   │   ├── ArticleCategory.php
    │   │   │   │   └── ArticleContent.php
    │   │   │   ├── coupon
    │   │   │   │   ├── StoreCoupon.php
    │   │   │   │   ├── StoreCouponIssue.php
    │   │   │   │   ├── StoreCouponIssueUser.php
    │   │   │   │   ├── StoreCouponProduct.php
    │   │   │   │   └── StoreCouponUser.php
    │   │   │   ├── diy
    │   │   │   │   ├── Diy.php
    │   │   │   │   ├── PageCategory.php
    │   │   │   │   └── PageLink.php
    │   │   │   ├── live
    │   │   │   │   ├── LiveAnchor.php
    │   │   │   │   ├── LiveGoods.php
    │   │   │   │   ├── LiveRoom.php
    │   │   │   │   └── LiveRoomGoods.php
    │   │   │   ├── order
    │   │   │   │   ├── DeliveryService.php
    │   │   │   │   ├── OtherOrder.php
    │   │   │   │   ├── OtherOrderStatus.php
    │   │   │   │   ├── StoreCart.php
    │   │   │   │   ├── StoreOrder.php
    │   │   │   │   ├── StoreOrderCartInfo.php
    │   │   │   │   ├── StoreOrderEconomize.php
    │   │   │   │   ├── StoreOrderInvoice.php
    │   │   │   │   ├── StoreOrderStatus.php
    │   │   │   │   └── StorePink.php
    │   │   │   ├── other
    │   │   │   │   ├── Agreement.php
    │   │   │   │   ├── Auxiliary.php
    │   │   │   │   ├── Cache.php
    │   │   │   │   ├── Category.php
    │   │   │   │   ├── Express.php
    │   │   │   │   ├── Qrcode.php
    │   │   │   │   └── TemplateMessage.php
    │   │   │   ├── product
    │   │   │   │   ├── product
    │   │   │   │   └── sku
    │   │   │   ├── service
    │   │   │   │   ├── StoreService.php
    │   │   │   │   ├── StoreServiceFeedback.php
    │   │   │   │   ├── StoreServiceLog.php
    │   │   │   │   ├── StoreServiceRecord.php
    │   │   │   │   └── StoreServiceSpeechcraft.php
    │   │   │   ├── shipping
    │   │   │   │   ├── ShippingTemplates.php
    │   │   │   │   ├── ShippingTemplatesFree.php
    │   │   │   │   ├── ShippingTemplatesNoDelivery.php
    │   │   │   │   ├── ShippingTemplatesRegion.php
    │   │   │   │   └── SystemCity.php
    │   │   │   ├── sms
    │   │   │   │   └── SmsRecord.php
    │   │   │   ├── system
    │   │   │   │   ├── AppVersion.php
    │   │   │   │   ├── MessageSystem.php
    │   │   │   │   ├── SystemMenus.php
    │   │   │   │   ├── SystemNotification.php
    │   │   │   │   ├── SystemUserLevel.php
    │   │   │   │   ├── SystemUserTask.php
    │   │   │   │   ├── admin
    │   │   │   │   ├── attachment
    │   │   │   │   ├── config
    │   │   │   │   ├── log
    │   │   │   │   └── store
    │   │   │   ├── user
    │   │   │   │   ├── MemberCard.php
    │   │   │   │   ├── MemberCardBatch.php
    │   │   │   │   ├── MemberRight.php
    │   │   │   │   ├── MemberShip.php
    │   │   │   │   ├── User.php
    │   │   │   │   ├── UserAddress.php
    │   │   │   │   ├── UserBill.php
    │   │   │   │   ├── UserBrokerageFrozen.php
    │   │   │   │   ├── UserExtract.php
    │   │   │   │   ├── UserFriends.php
    │   │   │   │   ├── UserGroup.php
    │   │   │   │   ├── UserInvoice.php
    │   │   │   │   ├── UserLabel.php
    │   │   │   │   ├── UserLabelCate.php
    │   │   │   │   ├── UserLabelRelation.php
    │   │   │   │   ├── UserLevel.php
    │   │   │   │   ├── UserRecharge.php
    │   │   │   │   ├── UserSearch.php
    │   │   │   │   ├── UserSign.php
    │   │   │   │   ├── UserSpread.php
    │   │   │   │   ├── UserTaskFinish.php
    │   │   │   │   └── UserVisit.php
    │   │   │   └── wechat
    │   │   │       ├── WechatKey.php
    │   │   │       ├── WechatMedia.php
    │   │   │       ├── WechatMessage.php
    │   │   │       ├── WechatNewsCategory.php
    │   │   │       ├── WechatReply.php
    │   │   │       └── WechatUser.php
    │   │   ├── provider.php
    │   │   ├── service.php
    │   │   └── services
    │   │       ├── BaseServices.php
    │   │       ├── activity
    │   │       │   ├── StoreAdvanceServices.php
    │   │       │   ├── StoreBargainServices.php
    │   │       │   ├── StoreBargainUserHelpServices.php
    │   │       │   ├── StoreBargainUserServices.php
    │   │       │   ├── StoreCombinationServices.php
    │   │       │   ├── StorePinkServices.php
    │   │       │   ├── StoreSeckillServices.php
    │   │       │   ├── integral
    │   │       │   └── lottery
    │   │       ├── agent
    │   │       │   ├── AgentLevelServices.php
    │   │       │   ├── AgentLevelTaskRecordServices.php
    │   │       │   ├── AgentLevelTaskServices.php
    │   │       │   └── AgentManageServices.php
    │   │       ├── article
    │   │       │   ├── ArticleCategoryServices.php
    │   │       │   ├── ArticleContentServices.php
    │   │       │   └── ArticleServices.php
    │   │       ├── coupon
    │   │       │   ├── StoreCouponIssueServices.php
    │   │       │   ├── StoreCouponIssueUserServices.php
    │   │       │   ├── StoreCouponProductServices.php
    │   │       │   ├── StoreCouponService.php
    │   │       │   ├── StoreCouponUserCouponServices.php
    │   │       │   ├── StoreCouponUserServices.php
    │   │       │   └── StoreCouponUserUserServices.php
    │   │       ├── diy
    │   │       │   ├── DiyServices.php
    │   │       │   ├── PageCategoryServices.php
    │   │       │   └── PageLinkServices.php
    │   │       ├── export
    │   │       │   └── ExportServices.php
    │   │       ├── kefu
    │   │       │   ├── KefuServices.php
    │   │       │   ├── LoginServices.php
    │   │       │   ├── ProductServices.php
    │   │       │   └── UserServices.php
    │   │       ├── live
    │   │       │   ├── LiveAnchorServices.php
    │   │       │   ├── LiveGoodsServices.php
    │   │       │   ├── LiveRoomGoodsServices.php
    │   │       │   └── LiveRoomServices.php
    │   │       ├── message
    │   │       │   ├── NoticeService.php
    │   │       │   ├── notice
    │   │       │   ├── service
    │   │       │   ├── sms
    │   │       │   └── wechat
    │   │       ├── order
    │   │       │   ├── DeliveryServiceServices.php
    │   │       │   ├── OtherOrderServices.php
    │   │       │   ├── OtherOrderStatusServices.php
    │   │       │   ├── StoreCartServices.php
    │   │       │   ├── StoreOrderCartInfoServices.php
    │   │       │   ├── StoreOrderComputedServices.php
    │   │       │   ├── StoreOrderCreateServices.php
    │   │       │   ├── StoreOrderDeliveryServices.php
    │   │       │   ├── StoreOrderEconomizeServices.php
    │   │       │   ├── StoreOrderInvoiceServices.php
    │   │       │   ├── StoreOrderOrderInvoiceServices.php
    │   │       │   ├── StoreOrderRefundServices.php
    │   │       │   ├── StoreOrderServices.php
    │   │       │   ├── StoreOrderSplitServices.php
    │   │       │   ├── StoreOrderStatusServices.php
    │   │       │   ├── StoreOrderStoreOrderCartInfoServices.php
    │   │       │   ├── StoreOrderStoreOrderStatusServices.php
    │   │       │   ├── StoreOrderSuccessServices.php
    │   │       │   ├── StoreOrderTakeServices.php
    │   │       │   ├── StoreOrderWriteOffServices.php
    │   │       │   └── StoreTaskServices.php
    │   │       ├── other
    │   │       │   ├── AgreementServices.php
    │   │       │   ├── CacheServices.php
    │   │       │   ├── CategoryServices.php
    │   │       │   ├── QrcodeServices.php
    │   │       │   └── TemplateMessageServices.php
    │   │       ├── pay
    │   │       │   ├── OrderOfflineServices.php
    │   │       │   ├── OrderPayServices.php
    │   │       │   ├── PayNotifyServices.php
    │   │       │   ├── PayServices.php
    │   │       │   ├── RechargeServices.php
    │   │       │   └── YuePayServices.php
    │   │       ├── pc
    │   │       │   ├── CartServices.php
    │   │       │   ├── HomeServices.php
    │   │       │   ├── LoginServices.php
    │   │       │   ├── OrderServices.php
    │   │       │   ├── ProductServices.php
    │   │       │   ├── PublicServices.php
    │   │       │   └── UserServices.php
    │   │       ├── product
    │   │       │   ├── product
    │   │       │   └── sku
    │   │       ├── serve
    │   │       │   └── ServeServices.php
    │   │       ├── shipping
    │   │       │   ├── ExpressServices.php
    │   │       │   ├── ShippingTemplatesFreeCityServices.php
    │   │       │   ├── ShippingTemplatesFreeServices.php
    │   │       │   ├── ShippingTemplatesNoDeliveryCityServices.php
    │   │       │   ├── ShippingTemplatesNoDeliveryServices.php
    │   │       │   ├── ShippingTemplatesRegionCityServices.php
    │   │       │   ├── ShippingTemplatesRegionServices.php
    │   │       │   ├── ShippingTemplatesServices.php
    │   │       │   └── SystemCityServices.php
    │   │       ├── system
    │   │       │   ├── AppVersionServices.php
    │   │       │   ├── MessageSystemServices.php
    │   │       │   ├── SystemAuthServices.php
    │   │       │   ├── SystemClearServices.php
    │   │       │   ├── SystemDatabackupServices.php
    │   │       │   ├── SystemMenusServices.php
    │   │       │   ├── SystemNotificationServices.php
    │   │       │   ├── SystemUserLevelServices.php
    │   │       │   ├── admin
    │   │       │   ├── attachment
    │   │       │   ├── config
    │   │       │   ├── log
    │   │       │   └── store
    │   │       ├── user
    │   │       │   ├── LoginServices.php
    │   │       │   ├── MemberCardBatchServices.php
    │   │       │   ├── MemberCardServices.php
    │   │       │   ├── MemberRightServices.php
    │   │       │   ├── MemberShipServices.php
    │   │       │   ├── UserAddressServices.php
    │   │       │   ├── UserAuthServices.php
    │   │       │   ├── UserBillServices.php
    │   │       │   ├── UserBillStoreOrderServices.php
    │   │       │   ├── UserBrokerageFrozenServices.php
    │   │       │   ├── UserExtractServices.php
    │   │       │   ├── UserFriendsServices.php
    │   │       │   ├── UserGroupServices.php
    │   │       │   ├── UserInvoiceServices.php
    │   │       │   ├── UserLabelCateServices.php
    │   │       │   ├── UserLabelRelationServices.php
    │   │       │   ├── UserLabelServices.php
    │   │       │   ├── UserLevelServices.php
    │   │       │   ├── UserRechargeServices.php
    │   │       │   ├── UserSearchServices.php
    │   │       │   ├── UserServices.php
    │   │       │   ├── UserSignServices.php
    │   │       │   ├── UserSpreadServices.php
    │   │       │   ├── UserStoreOrderServices.php
    │   │       │   ├── UserTaskFinishServices.php
    │   │       │   ├── UserUserBillServices.php
    │   │       │   ├── UserVisitServices.php
    │   │       │   └── UserWechatuserServices.php
    │   │       └── wechat
    │   │           ├── RoutineServices.php
    │   │           ├── WechatKeyServices.php
    │   │           ├── WechatMediaServices.php
    │   │           ├── WechatMenuServices.php
    │   │           ├── WechatMessageServices.php
    │   │           ├── WechatNewsCategoryServices.php
    │   │           ├── WechatReplyKeyServices.php
    │   │           ├── WechatReplyServices.php
    │   │           ├── WechatServices.php
    │   │           └── WechatUserServices.php
    │   ├── build.example.php
    │   ├── composer.json
    │   ├── composer.lock
    │   ├── config
    │   │   ├── app.php
    │   │   ├── cache.php
    │   │   ├── captcha.php
    │   │   ├── console.php
    │   │   ├── cookie.php
    │   │   ├── database.php
    │   │   ├── filesystem.php
    │   │   ├── lang.php
    │   │   ├── log.php
    │   │   ├── pay.php
    │   │   ├── plat.php
    │   │   ├── printer.php
    │   │   ├── qrcode.php
    │   │   ├── queue.php
    │   │   ├── route.php
    │   │   ├── session.php
    │   │   ├── sms.php
    │   │   ├── template.php
    │   │   ├── trace.php
    │   │   ├── upload.php
    │   │   ├── view.php
    │   │   └── workerman.php
    │   ├── crmeb
    │   │   ├── basic
    │   │   │   ├── BaseController.php
    │   │   │   ├── BaseExpress.php
    │   │   │   ├── BaseJobs.php
    │   │   │   ├── BaseManager.php
    │   │   │   ├── BaseMessage.php
    │   │   │   ├── BaseModel.php
    │   │   │   ├── BasePay.php
    │   │   │   ├── BasePrinter.php
    │   │   │   ├── BaseProduct.php
    │   │   │   ├── BaseSms.php
    │   │   │   ├── BaseSmss.php
    │   │   │   ├── BaseStorage.php
    │   │   │   └── BaseUpload.php
    │   │   ├── command
    │   │   │   ├── Dao.php
    │   │   │   ├── Service.php
    │   │   │   ├── Timer.php
    │   │   │   ├── Workerman.php
    │   │   │   └── stubs
    │   │   │       ├── dao.stub
    │   │   │       └── service.stub
    │   │   ├── exceptions
    │   │   │   ├── AdminException.php
    │   │   │   ├── ApiException.php
    │   │   │   ├── AuthException.php
    │   │   │   ├── PayException.php
    │   │   │   ├── SmsException.php
    │   │   │   ├── TemplateException.php
    │   │   │   ├── UploadException.php
    │   │   │   └── WechatReplyException.php
    │   │   ├── interfaces
    │   │   │   ├── JobInterface.php
    │   │   │   ├── ListenerInterface.php
    │   │   │   ├── MiddlewareInterface.php
    │   │   │   ├── NoticeInrerfaces.php
    │   │   │   └── ProviderInterface.php
    │   │   ├── services
    │   │   │   ├── AccessTokenServeService.php
    │   │   │   ├── AliPayService.php
    │   │   │   ├── CacheService.php
    │   │   │   ├── CopyProductService.php
    │   │   │   ├── DownloadImageService.php
    │   │   │   ├── EnterpriseWechatService.php
    │   │   │   ├── ExpressService.php
    │   │   │   ├── FileService.php
    │   │   │   ├── FormBuilder.php
    │   │   │   ├── GroupDataService.php
    │   │   │   ├── HttpService.php
    │   │   │   ├── Mini3rdProgramService.php
    │   │   │   ├── MiniProgramService.php
    │   │   │   ├── MysqlBackupService.php
    │   │   │   ├── QrcodeService.php
    │   │   │   ├── SpreadsheetExcelService.php
    │   │   │   ├── SystemConfigService.php
    │   │   │   ├── UpgradeService.php
    │   │   │   ├── UploadService.php
    │   │   │   ├── UtilService.php
    │   │   │   ├── WechatOpenService.php
    │   │   │   ├── WechatService.php
    │   │   │   ├── easywechat
    │   │   │   │   ├── Open3rd
    │   │   │   │   ├── subscribe
    │   │   │   │   └── wechatlive
    │   │   │   ├── express
    │   │   │   │   ├── Express.php
    │   │   │   │   └── storage
    │   │   │   ├── printer
    │   │   │   │   ├── AccessToken.php
    │   │   │   │   ├── Printer.php
    │   │   │   │   └── storage
    │   │   │   ├── product
    │   │   │   │   ├── Product.php
    │   │   │   │   └── storage
    │   │   │   ├── serve
    │   │   │   │   ├── Serve.php
    │   │   │   │   └── storage
    │   │   │   ├── sms
    │   │   │   │   ├── Sms.php
    │   │   │   │   └── storage
    │   │   │   ├── template
    │   │   │   │   ├── Template.php
    │   │   │   │   └── storage
    │   │   │   ├── upload
    │   │   │   │   ├── Upload.php
    │   │   │   │   └── storage
    │   │   │   └── workerman
    │   │   │       ├── ChannelService.php
    │   │   │       ├── Response.php
    │   │   │       ├── WorkermanHandle.php
    │   │   │       ├── WorkermanService.php
    │   │   │       └── chat
    │   │   ├── subscribes
    │   │   │   ├── MaterialSubscribe.php
    │   │   │   ├── MessageSubscribe.php
    │   │   │   ├── OrderSubscribe.php
    │   │   │   ├── ProductSubscribe.php
    │   │   │   ├── SystemSubscribe.php
    │   │   │   ├── TaskSubscribe.php
    │   │   │   └── UserSubscribe.php
    │   │   ├── traits
    │   │   │   ├── CurdControllerTrait.php
    │   │   │   ├── ErrorTrait.php
    │   │   │   ├── JwtAuthModelTrait.php
    │   │   │   ├── ModelTrait.php
    │   │   │   ├── QueueTrait.php
    │   │   │   └── ServicesTrait.php
    │   │   └── utils
    │   │       ├── ApiErrorCode.php
    │   │       ├── Arr.php
    │   │       ├── Canvas.php
    │   │       ├── Captcha.php
    │   │       ├── Hook.php
    │   │       ├── Json.php
    │   │       ├── JwtAuth.php
    │   │       ├── QRcode.php
    │   │       ├── Queue.php
    │   │       └── Str.php
    │   ├── public
    │   │   ├── admin
    │   │   │   ├── UEditor
    │   │   │   │   ├── dialogs
    │   │   │   │   ├── index.html
    │   │   │   │   ├── lang
    │   │   │   │   ├── themes
    │   │   │   │   ├── third-party
    │   │   │   │   ├── ueditor.all.js
    │   │   │   │   ├── ueditor.all.min.js
    │   │   │   │   ├── ueditor.config.js
    │   │   │   │   ├── ueditor.parse.js
    │   │   │   │   └── ueditor.parse.min.js
    │   │   │   ├── css
    │   │   │   │   ├── app.3c969b94.css
    │   │   │   │   ├── chunk-0076abbf.0eb96764.css
    │   │   │   │   ├── chunk-018b354b.4c07d1c8.css
    │   │   │   │   ├── chunk-0451fc37.1592cce0.css
    │   │   │   │   ├── chunk-056c698f.03e79bfb.css
    │   │   │   │   ├── chunk-05a9b213.646db183.css
    │   │   │   │   ├── chunk-07641e40.d4a50d27.css
    │   │   │   │   ├── chunk-099ccd6c.f5859521.css
    │   │   │   │   ├── chunk-0bccd98a.71b3ebf3.css
    │   │   │   │   ├── chunk-0e4b9f12.69fde1cb.css
    │   │   │   │   ├── chunk-0f77b78a.13476bcb.css
    │   │   │   │   ├── chunk-1121e77d.c1aea874.css
    │   │   │   │   ├── chunk-12528eb0.1a56e62f.css
    │   │   │   │   ├── chunk-175666ab.ffb5e37b.css
    │   │   │   │   ├── chunk-19354524.5757b685.css
    │   │   │   │   ├── chunk-1b62cbb3.9592dddc.css
    │   │   │   │   ├── chunk-1dc688d2.d3d086b9.css
    │   │   │   │   ├── chunk-1e5674c3.abd848af.css
    │   │   │   │   ├── chunk-202b6048.c4c9e452.css
    │   │   │   │   ├── chunk-209ad47d.2ab10dbd.css
    │   │   │   │   ├── chunk-21249ff4.97135ebd.css
    │   │   │   │   ├── chunk-21cebf80.0ffc84ed.css
    │   │   │   │   ├── chunk-22a563ec.51d4c59f.css
    │   │   │   │   ├── chunk-24f12e38.4b127b2d.css
    │   │   │   │   ├── chunk-2600c7c7.60a4f2a9.css
    │   │   │   │   ├── chunk-2754eb6b.22dffd63.css
    │   │   │   │   ├── chunk-27abc4c9.22dffd63.css
    │   │   │   │   ├── chunk-2891d178.20ea3055.css
    │   │   │   │   ├── chunk-2b36c124.01f7ac8d.css
    │   │   │   │   ├── chunk-2b5e7c1a.2fd41e19.css
    │   │   │   │   ├── chunk-2cd35722.572985c7.css
    │   │   │   │   ├── chunk-2e1128e9.25b6ce96.css
    │   │   │   │   ├── chunk-2e16c954.b81fd795.css
    │   │   │   │   ├── chunk-30990b7e.8b951b90.css
    │   │   │   │   ├── chunk-31df8618.7fae9b44.css
    │   │   │   │   ├── chunk-32a226f2.6ed9fb31.css
    │   │   │   │   ├── chunk-338b2e24.09645b46.css
    │   │   │   │   ├── chunk-38286de0.56368407.css
    │   │   │   │   ├── chunk-3919b1f8.5f2e16b6.css
    │   │   │   │   ├── chunk-3a2f4201.c49960eb.css
    │   │   │   │   ├── chunk-3e795307.a82f6e67.css
    │   │   │   │   ├── chunk-3ee325ba.33313885.css
    │   │   │   │   ├── chunk-4299906e.4668f39e.css
    │   │   │   │   ├── chunk-43efd84d.7676b54e.css
    │   │   │   │   ├── chunk-44425198.b9caeedc.css
    │   │   │   │   ├── chunk-44de2172.ef3936e2.css
    │   │   │   │   ├── chunk-44f9fcb1.f843e777.css
    │   │   │   │   ├── chunk-46bc428c.6ae8e993.css
    │   │   │   │   ├── chunk-480868cd.54e16fa6.css
    │   │   │   │   ├── chunk-4b8ede9f.ea764d58.css
    │   │   │   │   ├── chunk-4db67de6.7b9aff2c.css
    │   │   │   │   ├── chunk-5195b9f3.89e0d04f.css
    │   │   │   │   ├── chunk-5222549c.f1e83480.css
    │   │   │   │   ├── chunk-5432ed76.bfe4e3ff.css
    │   │   │   │   ├── chunk-5514d5e0.b223ee09.css
    │   │   │   │   ├── chunk-55aa8bc4.951445cc.css
    │   │   │   │   ├── chunk-5804e956.201f6cda.css
    │   │   │   │   ├── chunk-59da4738.494c9d38.css
    │   │   │   │   ├── chunk-5a055542.d66d5703.css
    │   │   │   │   ├── chunk-5a6736aa.0f19a7d1.css
    │   │   │   │   ├── chunk-5bbdff76.c9defc6a.css
    │   │   │   │   ├── chunk-5be2367c.4e4ceab3.css
    │   │   │   │   ├── chunk-5ccf7e4b.19b283fb.css
    │   │   │   │   ├── chunk-5d7dcca3.7715dcd8.css
    │   │   │   │   ├── chunk-5eb97951.828bf7df.css
    │   │   │   │   ├── chunk-5f4e9dbc.5b6864af.css
    │   │   │   │   ├── chunk-60bb7579.a8d46188.css
    │   │   │   │   ├── chunk-63305d18.951445cc.css
    │   │   │   │   ├── chunk-6534a190.68b0b021.css
    │   │   │   │   ├── chunk-66bacfbb.7e43d725.css
    │   │   │   │   ├── chunk-6733abc7.40c53818.css
    │   │   │   │   ├── chunk-68d45840.2ff1a0f5.css
    │   │   │   │   ├── chunk-6908b6d5.b8d8dbaf.css
    │   │   │   │   ├── chunk-699a67b7.901ed0c4.css
    │   │   │   │   ├── chunk-6a826bcd.06e6752b.css
    │   │   │   │   ├── chunk-6ab0571a.4d9ded26.css
    │   │   │   │   ├── chunk-6c8f66a1.4fbd9a71.css
    │   │   │   │   ├── chunk-6ca97144.4d7fa217.css
    │   │   │   │   ├── chunk-6d86d074.5268705b.css
    │   │   │   │   ├── chunk-6dfdcf3f.901d2aef.css
    │   │   │   │   ├── chunk-6e9221bc.855ccef7.css
    │   │   │   │   ├── chunk-6ebc5958.61e71427.css
    │   │   │   │   ├── chunk-703a7f73.2ab23894.css
    │   │   │   │   ├── chunk-74cdba6a.656a9ef1.css
    │   │   │   │   ├── chunk-754c597a.97127b46.css
    │   │   │   │   ├── chunk-767b376e.0c379983.css
    │   │   │   │   ├── chunk-771ef7b8.ad44bbd1.css
    │   │   │   │   ├── chunk-78751f2b.8aceb8f8.css
    │   │   │   │   ├── chunk-790160ea.af18d49e.css
    │   │   │   │   ├── chunk-7a8e69b2.1b4a0df0.css
    │   │   │   │   ├── chunk-7b310b90.f6acb485.css
    │   │   │   │   ├── chunk-7dcbba74.480359fa.css
    │   │   │   │   ├── chunk-7f18352f.733d5a52.css
    │   │   │   │   ├── chunk-82ffc1dc.bb7f3ac0.css
    │   │   │   │   ├── chunk-878f2784.610e58b2.css
    │   │   │   │   ├── chunk-8b702d6a.24e5d97a.css
    │   │   │   │   ├── chunk-98b35936.e1501f08.css
    │   │   │   │   ├── chunk-99bfdaa2.2a30ec59.css
    │   │   │   │   ├── chunk-9b367eba.2b28cdbd.css
    │   │   │   │   ├── chunk-9d3b5ac8.95d2da8c.css
    │   │   │   │   ├── chunk-9fb50772.455db72d.css
    │   │   │   │   ├── chunk-a0103b64.0d19fc9e.css
    │   │   │   │   ├── chunk-a4060bd0.1014d6eb.css
    │   │   │   │   ├── chunk-b60d38b2.224c7b1b.css
    │   │   │   │   ├── chunk-b6acc096.6c719583.css
    │   │   │   │   ├── chunk-ba036af6.ae37d74d.css
    │   │   │   │   ├── chunk-c8220eec.0950d621.css
    │   │   │   │   ├── chunk-cc35f6c0.0bb0788d.css
    │   │   │   │   ├── chunk-ddc2b2fc.feb104f0.css
    │   │   │   │   ├── chunk-e591b84a.ae541f7e.css
    │   │   │   │   ├── chunk-e748a488.7de5febc.css
    │   │   │   │   ├── chunk-e7edc264.00b88b1c.css
    │   │   │   │   ├── chunk-e82fcafe.e786bec9.css
    │   │   │   │   ├── chunk-ed6943e8.d4c4d680.css
    │   │   │   │   ├── chunk-ef9437d4.df4f5042.css
    │   │   │   │   ├── chunk-efa09ac4.22dffd63.css
    │   │   │   │   ├── chunk-f0c87de8.ff8472c9.css
    │   │   │   │   ├── chunk-f0dfacc6.22449909.css
    │   │   │   │   ├── chunk-fc45984e.951445cc.css
    │   │   │   │   └── chunk-vendors.97f772fd.css
    │   │   │   ├── favicon.ico
    │   │   │   ├── fonts
    │   │   │   │   ├── iconfont.29911a6c.woff2
    │   │   │   │   ├── iconfont.3bb04b23.woff
    │   │   │   │   ├── iconfont.52318318.woff
    │   │   │   │   ├── iconfont.81177462.ttf
    │   │   │   │   ├── iconfont.ba3ee7a9.ttf
    │   │   │   │   ├── iconfont.edf75d6a.eot
    │   │   │   │   ├── iconfontYI.40366cb7.woff
    │   │   │   │   ├── iconfontYI.61aade08.ttf
    │   │   │   │   ├── iconfontYI.d1990cbc.eot
    │   │   │   │   ├── ionicons.143146fa.woff2
    │   │   │   │   ├── ionicons.99ac3308.woff
    │   │   │   │   └── ionicons.d535a25a.ttf
    │   │   │   ├── img
    │   │   │   │   ├── bg.33ece377.jpg
    │   │   │   │   ├── bluesgin.032bae4b.png
    │   │   │   │   ├── bule.1786e93d.jpg
    │   │   │   │   ├── error-401.98bba5b1.svg
    │   │   │   │   ├── error-404.94756dcf.svg
    │   │   │   │   ├── error-500.a371eabc.svg
    │   │   │   │   ├── f.5aa43cd3.png
    │   │   │   │   ├── feed-icon.99e39a74.png
    │   │   │   │   ├── foo1-01.003b4be4.png
    │   │   │   │   ├── foo3-01.a1ab32aa.png
    │   │   │   │   ├── foo4-01.b50f04b1.png
    │   │   │   │   ├── green.ad79683b.jpg
    │   │   │   │   ├── greesgin.43ae54b5.png
    │   │   │   │   ├── head.cfd4b538.gif
    │   │   │   │   ├── iconfont.13b90fe6.svg
    │   │   │   │   ├── iconfont.e48d5fe1.svg
    │   │   │   │   ├── iconfontYI.2ade83ca.svg
    │   │   │   │   ├── integral.fcfc352b.png
    │   │   │   │   ├── ionicons.a2c4a261.svg
    │   │   │   │   ├── kefu.6c63578f.png
    │   │   │   │   ├── kfbg.33213bdb.jpg
    │   │   │   │   ├── line.05bf1c84.jpg
    │   │   │   │   ├── logo.eb6eba32.png
    │   │   │   │   ├── m_bg.be5b7aa5.png
    │   │   │   │   ├── member.b885cf62.png
    │   │   │   │   ├── mobilehead.1c931282.png
    │   │   │   │   ├── no.7de91001.png
    │   │   │   │   ├── no_all.174e30c0.png
    │   │   │   │   ├── no_chat.b9c3e583.png
    │   │   │   │   ├── no_fh.977a0fb8.png
    │   │   │   │   ├── no_tk.401d40f4.png
    │   │   │   │   ├── no_user.a09b282b.png
    │   │   │   │   ├── no_zf.e61fe9b5.png
    │   │   │   │   ├── oragesgin.00077d3a.png
    │   │   │   │   ├── orange.78f28374.jpg
    │   │   │   │   ├── pcbanner.23f05e2e.png
    │   │   │   │   ├── pclogin.3d27e2c2.png
    │   │   │   │   ├── pink.a3f8f9ed.jpg
    │   │   │   │   ├── pinksgin.0e1c51b4.png
    │   │   │   │   ├── pricetitle.d0496d6f.jpg
    │   │   │   │   ├── red.a05c2bd5.jpg
    │   │   │   │   ├── redsgin.d8b0c12e.png
    │   │   │   │   ├── ren.c7bc0d99.png
    │   │   │   │   ├── sheet_apple_64_indexed_256colors.f99f1af2.png
    │   │   │   │   ├── sheet_emojione_64_indexed_128.5953c7ea.png
    │   │   │   │   ├── sheet_facebook_64_indexed_128.f1911246.png
    │   │   │   │   ├── sheet_google_64_indexed_128.04280c7a.png
    │   │   │   │   ├── sheet_messenger_64_indexed_128.68a885d7.png
    │   │   │   │   ├── sheet_twitter_64_indexed_128.0ebbf2e8.png
    │   │   │   │   ├── sort01.e157a5ea.jpg
    │   │   │   │   ├── sort02.feab1b79.jpg
    │   │   │   │   ├── sort03.67811897.jpg
    │   │   │   │   ├── sw.3ef10e8b.jpg
    │   │   │   │   ├── user01.3e2e9bb6.png
    │   │   │   │   ├── user_vip.7fa6644b.png
    │   │   │   │   └── wutu.d797d845.png
    │   │   │   ├── index.html
    │   │   │   ├── js
    │   │   │   │   ├── app.f729506b.js
    │   │   │   │   ├── chunk-0076abbf.00bd5abf.js
    │   │   │   │   ├── chunk-018b354b.c242738f.js
    │   │   │   │   ├── chunk-0451fc37.47508e8a.js
    │   │   │   │   ├── chunk-056c698f.80f6d12e.js
    │   │   │   │   ├── chunk-05a9b213.a22516f5.js
    │   │   │   │   ├── chunk-07641e40.b5b614f6.js
    │   │   │   │   ├── chunk-099ccd6c.172147e1.js
    │   │   │   │   ├── chunk-0bccd98a.dad3026a.js
    │   │   │   │   ├── chunk-0e4b9f12.b6b33d08.js
    │   │   │   │   ├── chunk-0f77b78a.c8e61e72.js
    │   │   │   │   ├── chunk-1121e77d.4f28d072.js
    │   │   │   │   ├── chunk-12528eb0.fc3aeb0a.js
    │   │   │   │   ├── chunk-175666ab.31abcdc5.js
    │   │   │   │   ├── chunk-19354524.ce997e83.js
    │   │   │   │   ├── chunk-1b62cbb3.02c6b618.js
    │   │   │   │   ├── chunk-1dc688d2.caad4dbf.js
    │   │   │   │   ├── chunk-1de37ca8.3063fab0.js
    │   │   │   │   ├── chunk-1e5674c3.52cf671d.js
    │   │   │   │   ├── chunk-202b6048.a670d15d.js
    │   │   │   │   ├── chunk-209ad47d.5eed9820.js
    │   │   │   │   ├── chunk-21249ff4.e862b242.js
    │   │   │   │   ├── chunk-21cebf80.624349b4.js
    │   │   │   │   ├── chunk-22a563ec.98b6720d.js
    │   │   │   │   ├── chunk-24f12e38.31433717.js
    │   │   │   │   ├── chunk-2600c7c7.beeb30a8.js
    │   │   │   │   ├── chunk-2754eb6b.a005a0f4.js
    │   │   │   │   ├── chunk-27abc4c9.366830ff.js
    │   │   │   │   ├── chunk-2891d178.68a7622a.js
    │   │   │   │   ├── chunk-2b36c124.6f6ad598.js
    │   │   │   │   ├── chunk-2b5e7c1a.09f3fb0e.js
    │   │   │   │   ├── chunk-2cd35722.6356de2b.js
    │   │   │   │   ├── chunk-2d0ab8b4.c7c22567.js
    │   │   │   │   ├── chunk-2d21afa5.b9345cfa.js
    │   │   │   │   ├── chunk-2d21d0c2.57c1a7e7.js
    │   │   │   │   ├── chunk-2d229c13.8cdc549b.js
    │   │   │   │   ├── chunk-2d22c8ff.a91710d1.js
    │   │   │   │   ├── chunk-2e1128e9.de14d168.js
    │   │   │   │   ├── chunk-2e16c954.ecada03c.js
    │   │   │   │   ├── chunk-30990b7e.43e29d0a.js
    │   │   │   │   ├── chunk-31df8618.458d73f2.js
    │   │   │   │   ├── chunk-32a226f2.cac84c50.js
    │   │   │   │   ├── chunk-338b2e24.e8ae9fde.js
    │   │   │   │   ├── chunk-33a0fffa.d5bbcfe7.js
    │   │   │   │   ├── chunk-38286de0.062347b3.js
    │   │   │   │   ├── chunk-3919b1f8.71c8a971.js
    │   │   │   │   ├── chunk-3a2f4201.d4c7b30b.js
    │   │   │   │   ├── chunk-3e795307.17ac98e9.js
    │   │   │   │   ├── chunk-3ee325ba.253ec8fd.js
    │   │   │   │   ├── chunk-3fb7ae55.9136883d.js
    │   │   │   │   ├── chunk-4299906e.9a0a8642.js
    │   │   │   │   ├── chunk-43efd84d.659e2dc1.js
    │   │   │   │   ├── chunk-44425198.519ba583.js
    │   │   │   │   ├── chunk-44de2172.5d0d0c97.js
    │   │   │   │   ├── chunk-44f9fcb1.957e381a.js
    │   │   │   │   ├── chunk-46bc428c.4d6e980b.js
    │   │   │   │   ├── chunk-480868cd.514da0f2.js
    │   │   │   │   ├── chunk-4b8ede9f.67f78355.js
    │   │   │   │   ├── chunk-4db67de6.49d18d2f.js
    │   │   │   │   ├── chunk-5195b9f3.8f1c3c48.js
    │   │   │   │   ├── chunk-5222549c.4a6d652a.js
    │   │   │   │   ├── chunk-5432ed76.8e132045.js
    │   │   │   │   ├── chunk-5514d5e0.8df8b6b9.js
    │   │   │   │   ├── chunk-55aa8bc4.2e26fb85.js
    │   │   │   │   ├── chunk-5804e956.22fc1e64.js
    │   │   │   │   ├── chunk-59da4738.b2993977.js
    │   │   │   │   ├── chunk-5a055542.ff9f1a0a.js
    │   │   │   │   ├── chunk-5a6736aa.25897b92.js
    │   │   │   │   ├── chunk-5bbdff76.19140db9.js
    │   │   │   │   ├── chunk-5be2367c.dc7baccb.js
    │   │   │   │   ├── chunk-5ccf7e4b.ab89bb62.js
    │   │   │   │   ├── chunk-5d7dcca3.37bd4c64.js
    │   │   │   │   ├── chunk-5d908a60.dd7e095a.js
    │   │   │   │   ├── chunk-5eb97951.04416639.js
    │   │   │   │   ├── chunk-5f4e9dbc.52dc4370.js
    │   │   │   │   ├── chunk-60bb7579.1a41ad44.js
    │   │   │   │   ├── chunk-63305d18.ec959028.js
    │   │   │   │   ├── chunk-6534a190.a24848ae.js
    │   │   │   │   ├── chunk-66021a94.1ba996b5.js
    │   │   │   │   ├── chunk-66bacfbb.4bfc1a74.js
    │   │   │   │   ├── chunk-6733abc7.ece92171.js
    │   │   │   │   ├── chunk-68d45840.e18aca11.js
    │   │   │   │   ├── chunk-6908b6d5.0a53bf4f.js
    │   │   │   │   ├── chunk-699a67b7.fa3162c1.js
    │   │   │   │   ├── chunk-6a826bcd.ca8a7d42.js
    │   │   │   │   ├── chunk-6ab0571a.46fc8a9d.js
    │   │   │   │   ├── chunk-6c8f66a1.fefbeef3.js
    │   │   │   │   ├── chunk-6ca97144.35cf54e7.js
    │   │   │   │   ├── chunk-6d86d074.c0bd232c.js
    │   │   │   │   ├── chunk-6dfdcf3f.ba7fb99b.js
    │   │   │   │   ├── chunk-6e9221bc.310171c3.js
    │   │   │   │   ├── chunk-6ebc5958.e1c26462.js
    │   │   │   │   ├── chunk-703a7f73.3bfda32a.js
    │   │   │   │   ├── chunk-74cdba6a.3961b80f.js
    │   │   │   │   ├── chunk-754c597a.b336c710.js
    │   │   │   │   ├── chunk-767b376e.9593a0f4.js
    │   │   │   │   ├── chunk-771ef7b8.d669265f.js
    │   │   │   │   ├── chunk-78751f2b.a1ee67d7.js
    │   │   │   │   ├── chunk-790160ea.7bb97494.js
    │   │   │   │   ├── chunk-7a8e69b2.6f04b499.js
    │   │   │   │   ├── chunk-7b310b90.2a2c9fd7.js
    │   │   │   │   ├── chunk-7dcbba74.fc1d65ef.js
    │   │   │   │   ├── chunk-7f18352f.e2591d71.js
    │   │   │   │   ├── chunk-82ffc1dc.098753ff.js
    │   │   │   │   ├── chunk-878f2784.84bf4822.js
    │   │   │   │   ├── chunk-8af7aa2e.fd95bf4c.js
    │   │   │   │   ├── chunk-8b702d6a.4e557e7e.js
    │   │   │   │   ├── chunk-98b35936.0abd8382.js
    │   │   │   │   ├── chunk-99bfdaa2.cfc8cbfb.js
    │   │   │   │   ├── chunk-9b367eba.14bb4e1c.js
    │   │   │   │   ├── chunk-9d3b5ac8.ff8f2423.js
    │   │   │   │   ├── chunk-9fb50772.fbae6d86.js
    │   │   │   │   ├── chunk-a0103b64.88fc22ec.js
    │   │   │   │   ├── chunk-a4060bd0.52aa587f.js
    │   │   │   │   ├── chunk-b60d38b2.88bcdd65.js
    │   │   │   │   ├── chunk-b6acc096.2fc19ef0.js
    │   │   │   │   ├── chunk-ba036af6.6271dccb.js
    │   │   │   │   ├── chunk-c8220eec.dea13d6a.js
    │   │   │   │   ├── chunk-cc35f6c0.cb354d39.js
    │   │   │   │   ├── chunk-ddc2b2fc.1f8e1d0a.js
    │   │   │   │   ├── chunk-e591b84a.a73fadd0.js
    │   │   │   │   ├── chunk-e748a488.177a715b.js
    │   │   │   │   ├── chunk-e7edc264.8ae7e53d.js
    │   │   │   │   ├── chunk-e82fcafe.9add2171.js
    │   │   │   │   ├── chunk-ed6943e8.b616dc73.js
    │   │   │   │   ├── chunk-ef9437d4.f214b104.js
    │   │   │   │   ├── chunk-efa09ac4.b692b2bd.js
    │   │   │   │   ├── chunk-f0c87de8.2604fca9.js
    │   │   │   │   ├── chunk-f0dfacc6.0022be8c.js
    │   │   │   │   ├── chunk-f14fb45c.5b296dbc.js
    │   │   │   │   ├── chunk-fc45984e.aeb31ae0.js
    │   │   │   │   └── chunk-vendors.ebd9b7cf.js
    │   │   │   └── media
    │   │   │       ├── newOrderAudioLink.71ee2b71.mp3
    │   │   │       ├── notice.367f95a9.mp3
    │   │   │       └── notice.51a07ae7.wav
    │   │   ├── favicon.ico
    │   │   ├── index.html
    │   │   ├── index.php
    │   │   ├── install
    │   │   │   ├── auto.php
    │   │   │   ├── config.php
    │   │   │   ├── crmeb.sql
    │   │   │   ├── css
    │   │   │   │   └── install.css
    │   │   │   ├── images
    │   │   │   │   └── install
    │   │   │   ├── index.php
    │   │   │   ├── index_sae.php
    │   │   │   ├── js
    │   │   │   │   ├── ajaxForm.js
    │   │   │   │   ├── jquery.js
    │   │   │   │   └── validate.js
    │   │   │   ├── swoole-compiler-loader.php
    │   │   │   └── templates
    │   │   │       ├── footer.php
    │   │   │       ├── header.php
    │   │   │       ├── s2_sae.php
    │   │   │       ├── s3_sae.php
    │   │   │       ├── step1.php
    │   │   │       ├── step2.php
    │   │   │       ├── step3.php
    │   │   │       ├── step4.php
    │   │   │       └── step5.php
    │   │   ├── nginx.htaccess
    │   │   ├── pages
    │   │   │   ├── activity
    │   │   │   │   └── static
    │   │   │   ├── admin
    │   │   │   │   └── static
    │   │   │   ├── columnGoods
    │   │   │   │   └── static
    │   │   │   └── users
    │   │   │       └── static
    │   │   ├── robots.txt
    │   │   ├── router.php
    │   │   ├── static
    │   │   │   ├── css
    │   │   │   │   ├── base.css
    │   │   │   │   ├── guildford.css
    │   │   │   │   └── style.scss
    │   │   │   ├── html
    │   │   │   │   └── pc.html
    │   │   │   ├── iconfont
    │   │   │   │   └── iconfont.css
    │   │   │   ├── images
    │   │   │   │   ├── 1-001.png
    │   │   │   │   ├── 1-002.png
    │   │   │   │   ├── 2-001.png
    │   │   │   │   ├── 2-002.png
    │   │   │   │   ├── 3-001.png
    │   │   │   │   ├── 3-002.png
    │   │   │   │   ├── 4-001.png
    │   │   │   │   ├── 4-002.png
    │   │   │   │   ├── address-aleart-header.png
    │   │   │   │   ├── address.png
    │   │   │   │   ├── admin-msg.png
    │   │   │   │   ├── close.gif
    │   │   │   │   ├── co-bag.png
    │   │   │   │   ├── code-bg.png
    │   │   │   │   ├── code_1.png
    │   │   │   │   ├── code_2.png
    │   │   │   │   ├── collection.png
    │   │   │   │   ├── contact.png
    │   │   │   │   ├── down.png
    │   │   │   │   ├── edit.png
    │   │   │   │   ├── empty-box.png
    │   │   │   │   ├── error-network.png
    │   │   │   │   ├── everyday.png
    │   │   │   │   ├── exchange.png
    │   │   │   │   ├── f.png
    │   │   │   │   ├── font-left.png
    │   │   │   │   ├── font-right.png
    │   │   │   │   ├── fvip.png
    │   │   │   │   ├── gift.png
    │   │   │   │   ├── go-shoping.png
    │   │   │   │   ├── group02.gif
    │   │   │   │   ├── head-l-point.png
    │   │   │   │   ├── head-r-point.png
    │   │   │   │   ├── headwear.png
    │   │   │   │   ├── horn.png
    │   │   │   │   ├── jf-head.png
    │   │   │   │   ├── left.png
    │   │   │   │   ├── line.jpg
    │   │   │   │   ├── ling.png
    │   │   │   │   ├── live-01.png
    │   │   │   │   ├── live-02.png
    │   │   │   │   ├── live-03.png
    │   │   │   │   ├── logo2.png
    │   │   │   │   ├── lottery-bag.png
    │   │   │   │   ├── lottery-btn-bag.png
    │   │   │   │   ├── lottery-click.png
    │   │   │   │   ├── luck-draw.png
    │   │   │   │   ├── medal01.png
    │   │   │   │   ├── medal02.png
    │   │   │   │   ├── medal03.png
    │   │   │   │   ├── member.png
    │   │   │   │   ├── member01.png
    │   │   │   │   ├── menu.png
    │   │   │   │   ├── money.png
    │   │   │   │   ├── mores.png
    │   │   │   │   ├── my-point.png
    │   │   │   │   ├── no-thing.png
    │   │   │   │   ├── noAddress.png
    │   │   │   │   ├── noCart.png
    │   │   │   │   ├── noCollection.png
    │   │   │   │   ├── noCoupon.png
    │   │   │   │   ├── noEvaluate.png
    │   │   │   │   ├── noInvoice.png
    │   │   │   │   ├── noMessage.png
    │   │   │   │   ├── noNews.png
    │   │   │   │   ├── noOrder.png
    │   │   │   │   ├── noSearch.png
    │   │   │   │   ├── noShopper.png
    │   │   │   │   ├── offline-result.png
    │   │   │   │   ├── one.png
    │   │   │   │   ├── open.gif
    │   │   │   │   ├── order1.png
    │   │   │   │   ├── order2.png
    │   │   │   │   ├── order3.png
    │   │   │   │   ├── order4.png
    │   │   │   │   ├── order5.png
    │   │   │   │   ├── orderTime.png
    │   │   │   │   ├── pay-lottery-bag.png
    │   │   │   │   ├── pay-lottery-l.png
    │   │   │   │   ├── pay-lottery-r.png
    │   │   │   │   ├── phone_1.png
    │   │   │   │   ├── points-lottery.png
    │   │   │   │   ├── poster-close.png
    │   │   │   │   ├── posterbackgd.png
    │   │   │   │   ├── priceTag.png
    │   │   │   │   ├── pricetitle.jpg
    │   │   │   │   ├── record1.png
    │   │   │   │   ├── record2.png
    │   │   │   │   ├── record3.png
    │   │   │   │   ├── record4.png
    │   │   │   │   ├── red-packets.png
    │   │   │   │   ├── right-icon.png
    │   │   │   │   ├── score.png
    │   │   │   │   ├── share-info.png
    │   │   │   │   ├── shuoming.png
    │   │   │   │   ├── sign-in.png
    │   │   │   │   ├── sign01.png
    │   │   │   │   ├── signH.png
    │   │   │   │   ├── sort-img.png
    │   │   │   │   ├── sort1.png
    │   │   │   │   ├── sort2.png
    │   │   │   │   ├── sort3.png
    │   │   │   │   ├── spike-icon-002.gif
    │   │   │   │   ├── spot.png
    │   │   │   │   ├── stop.png
    │   │   │   │   ├── support.png
    │   │   │   │   ├── three.png
    │   │   │   │   ├── two.png
    │   │   │   │   ├── up.png
    │   │   │   │   ├── user-msg.png
    │   │   │   │   ├── user-sys.png
    │   │   │   │   ├── user01.png
    │   │   │   │   ├── user_vip.png
    │   │   │   │   ├── vacancy.png
    │   │   │   │   ├── value.jpg
    │   │   │   │   ├── vip.png
    │   │   │   │   ├── writeOff.jpeg
    │   │   │   │   ├── writeOff.jpg
    │   │   │   │   └── written.png
    │   │   │   ├── img
    │   │   │   │   ├── 1.a4fb1eca.png
    │   │   │   │   ├── 2.7670768a.png
    │   │   │   │   ├── 3.f0d15b3a.png
    │   │   │   │   ├── 4.8550f067.png
    │   │   │   │   ├── address-aleart-header.cf1d5133.png
    │   │   │   │   ├── co-bag.ea1db9e7.png
    │   │   │   │   ├── code-bg.eef2a8fd.png
    │   │   │   │   ├── feed-icon.99e39a74.png
    │   │   │   │   ├── gift.bde2a03c.png
    │   │   │   │   ├── img.beebfe54.png
    │   │   │   │   ├── line.05bf1c84.jpg
    │   │   │   │   ├── live-logo.gif
    │   │   │   │   ├── lottery-click.4e1ddd26.png
    │   │   │   │   ├── luck-draw.ab861eb9.png
    │   │   │   │   ├── member.daa234e6.png
    │   │   │   │   ├── money.136360a9.png
    │   │   │   │   ├── no-thing.426652cb.png
    │   │   │   │   ├── noAddress.9fbcd830.png
    │   │   │   │   ├── noCart.50b36491.png
    │   │   │   │   ├── noCollection.ad7c1108.png
    │   │   │   │   ├── noCoupon.cca04173.png
    │   │   │   │   ├── noMessage.85f96d76.png
    │   │   │   │   ├── noNews.778474de.png
    │   │   │   │   ├── noSearch.27430a84.png
    │   │   │   │   ├── noShopper.70ac1689.png
    │   │   │   │   ├── offline-result.42cf447a.png
    │   │   │   │   ├── orderTime.144c69b9.png
    │   │   │   │   ├── pay-lottery-bag.0a8c3de1.png
    │   │   │   │   ├── red-packets.6a5bac43.png
    │   │   │   │   ├── scan.2ca2147e.gif
    │   │   │   │   ├── score.30715cf5.png
    │   │   │   │   ├── share-info.fa0bedf8.png
    │   │   │   │   ├── signH.dd92985d.png
    │   │   │   │   ├── stop.5a8e6dc1.png
    │   │   │   │   ├── user01.3e2e9bb6.png
    │   │   │   │   ├── value.affbc1d6.jpg
    │   │   │   │   ├── wechat_login.b276d0e9.png
    │   │   │   │   └── writeOff.e1bf8d03.jpg
    │   │   │   ├── index.a5c69d49.css
    │   │   │   └── js
    │   │   │       ├── chunk-vendors.fd05f392.js
    │   │   │       ├── index.9482f767.js
    │   │   │       ├── pages-activity-bargain-index.df522947.js
    │   │   │       ├── pages-activity-goods_bargain-index.9b7ccf32.js
    │   │   │       ├── pages-activity-goods_bargain_details-index.52438a66.js
    │   │   │       ├── pages-activity-goods_bargain_details-index~pages-activity-lottery-grids-index~pages-activity-poster-~59f8c0c8.d3587983.js
    │   │   │       ├── pages-activity-goods_bargain_details-index~pages-goods_details-index~pages-news_details-index~pages-~d556e4a9.c6515345.js
    │   │   │       ├── pages-activity-goods_combination-index.76499e34.js
    │   │   │       ├── pages-activity-goods_combination_details-index.a5ee3c23.js
    │   │   │       ├── pages-activity-goods_combination_details-index~pages-activity-goods_combination_status-index~pages-a~b3ca01d9.5ddaa6bc.js
    │   │   │       ├── pages-activity-goods_combination_details-index~pages-activity-goods_seckill_details-index~pages-acti~9fd5f6c0.1a09a0c2.js
    │   │   │       ├── pages-activity-goods_combination_status-index.6399a9aa.js
    │   │   │       ├── pages-activity-goods_seckill-index.d2c21541.js
    │   │   │       ├── pages-activity-goods_seckill_details-index.cfd3a0ce.js
    │   │   │       ├── pages-activity-lottery-grids-index.c1cfd395.js
    │   │   │       ├── pages-activity-lottery-grids-index~pages-order_pay_status-index~pages-order_pay_status-payLottery~pa~4af4e820.69ff628b.js
    │   │   │       ├── pages-activity-lottery-grids-record.65d55021.js
    │   │   │       ├── pages-activity-lottery-grids-record~pages-activity-presell_details-index~pages-goods_details-index~p~0dc3edf2.b3fafd5e.js
    │   │   │       ├── pages-activity-poster-poster-index.f0448250.js
    │   │   │       ├── pages-activity-presell-index.02068e9f.js
    │   │   │       ├── pages-activity-presell_details-index.52e23816.js
    │   │   │       ├── pages-admin-order_cancellation-index.8f838265.js
    │   │   │       ├── pages-annex-offline_pay-index.68f055f5.js
    │   │   │       ├── pages-annex-offline_result-index.e4a9f875.js
    │   │   │       ├── pages-annex-web_view-index.17af7125.js
    │   │   │       ├── pages-auth-index.4d33604c.js
    │   │   │       ├── pages-columnGoods-HotNewGoods-feedback.cd351ed4.js
    │   │   │       ├── pages-columnGoods-HotNewGoods-index.5433b1ea.js
    │   │   │       ├── pages-customer_list-chat.4964d5d2.js
    │   │   │       ├── pages-customer_list-index.9e687056.js
    │   │   │       ├── pages-goods_cate-goods_cate.ed486463.js
    │   │   │       ├── pages-goods_details-index.b94681d5.js
    │   │   │       ├── pages-goods_list-index.9f43ff0f.js
    │   │   │       ├── pages-goods_list-index~pages-points_mall-integral_goods_list.02478ea9.js
    │   │   │       ├── pages-goods_search-index.38cdef2c.js
    │   │   │       ├── pages-index-index.37871fba.js
    │   │   │       ├── pages-live_list-index.60554f23.js
    │   │   │       ├── pages-news_details-index.c5d7d74b.js
    │   │   │       ├── pages-news_list-index.f1f16712.js
    │   │   │       ├── pages-order_addcart-order_addcart.23cf5aef.js
    │   │   │       ├── pages-order_pay_status-index.fff4059a.js
    │   │   │       ├── pages-order_pay_status-payLottery.eb30f6fa.js
    │   │   │       ├── pages-points_mall-exchange_record.786a7420.js
    │   │   │       ├── pages-points_mall-index.d76afaef.js
    │   │   │       ├── pages-points_mall-integral_goods_details.26d75bc6.js
    │   │   │       ├── pages-points_mall-integral_goods_list.21f83a47.js
    │   │   │       ├── pages-points_mall-integral_order.cdb378e8.js
    │   │   │       ├── pages-points_mall-integral_order_details.607e2b96.js
    │   │   │       ├── pages-points_mall-integral_order_status.8f9da0a8.js
    │   │   │       ├── pages-points_mall-integral_order~pages-points_mall-integral_order_details~pages-users-order_confirm-~60bb9874.f1275b3d.js
    │   │   │       ├── pages-points_mall-integral_order~pages-users-order_confirm-index.4db915e0.js
    │   │   │       ├── pages-points_mall-logistics_details.7a14f9d6.js
    │   │   │       ├── pages-points_mall-user_address.97fb107c.js
    │   │   │       ├── pages-retrieve_password-index.290ff5b3.js
    │   │   │       ├── pages-user-index.9e1f14f9.js
    │   │   │       ├── pages-users-admin_order_detail-index.43def8ce.js
    │   │   │       ├── pages-users-alipay_invoke-index.293fb14d.js
    │   │   │       ├── pages-users-commission_rank-index.d7dedc50.js
    │   │   │       ├── pages-users-goods_comment_con-index.f6055032.js
    │   │   │       ├── pages-users-goods_comment_con-lottery_comment.f6f5dddb.js
    │   │   │       ├── pages-users-goods_comment_list-index.6747fa88.js
    │   │   │       ├── pages-users-goods_details_store-index.792f49ac.js
    │   │   │       ├── pages-users-goods_logistics-index.934d783d.js
    │   │   │       ├── pages-users-goods_return-index.235438ea.js
    │   │   │       ├── pages-users-login-index.4befbda5.js
    │   │   │       ├── pages-users-message_center-index.823761e4.js
    │   │   │       ├── pages-users-message_center-messageDetail.2a21c29b.js
    │   │   │       ├── pages-users-order_confirm-index.f2910b5a.js
    │   │   │       ├── pages-users-order_confirm-index~pages-users-order_details-index.d6d999a2.js
    │   │   │       ├── pages-users-order_details-index.9275a368.js
    │   │   │       ├── pages-users-order_list-index.25706d6a.js
    │   │   │       ├── pages-users-privacy-index.c7a99047.js
    │   │   │       ├── pages-users-promoter-list-index.01f43298.js
    │   │   │       ├── pages-users-promoter-order-index.739e10c3.js
    │   │   │       ├── pages-users-promoter_rank-index.9a16be49.js
    │   │   │       ├── pages-users-retrievePassword-index.123df70b.js
    │   │   │       ├── pages-users-scan_login-index.503b3fe6.js
    │   │   │       ├── pages-users-user_address-index.7f103f7d.js
    │   │   │       ├── pages-users-user_address_list-index.5a2417c5.js
    │   │   │       ├── pages-users-user_bill-index.4245ce32.js
    │   │   │       ├── pages-users-user_cash-index.18014d02.js
    │   │   │       ├── pages-users-user_coupon-index.92ee566d.js
    │   │   │       ├── pages-users-user_distribution_level-index.adf183b2.js
    │   │   │       ├── pages-users-user_get_coupon-index.dafe8ced.js
    │   │   │       ├── pages-users-user_goods_collection-index.d450fc57.js
    │   │   │       ├── pages-users-user_info-index.0936dbeb.js
    │   │   │       ├── pages-users-user_integral-index.7bb8342c.js
    │   │   │       ├── pages-users-user_invoice_form-index.18e56b90.js
    │   │   │       ├── pages-users-user_invoice_list-index.ab47f831.js
    │   │   │       ├── pages-users-user_invoice_order-index.7146c13f.js
    │   │   │       ├── pages-users-user_money-index.94f8b4ee.js
    │   │   │       ├── pages-users-user_payment-index.ea6e5f94.js
    │   │   │       ├── pages-users-user_phone-index.ae3bb207.js
    │   │   │       ├── pages-users-user_pwd_edit-index.77e67d47.js
    │   │   │       ├── pages-users-user_return_list-index.925145a8.js
    │   │   │       ├── pages-users-user_sgin-index.529abb7e.js
    │   │   │       ├── pages-users-user_sgin_list-index.9fd7cd69.js
    │   │   │       ├── pages-users-user_spread_code-index.3976744d.js
    │   │   │       ├── pages-users-user_spread_money-index.fd50c8ec.js
    │   │   │       ├── pages-users-user_spread_user-index.a1a6df16.js
    │   │   │       ├── pages-users-user_vip-index.3d7fae9b.js
    │   │   │       ├── pages-users-user_vip_areer-index.cf9ccfa9.js
    │   │   │       └── pages-users-wechat_login-index.7549f3eb.js
    │   │   └── statics
    │   │       ├── exception.tpl
    │   │       ├── font
    │   │       │   ├── Alibaba-PuHuiTi-Regular.otf
    │   │       │   └── simsunb.ttf
    │   │       ├── mp_view
    │   │       │   ├── app.js
    │   │       │   ├── app.json
    │   │       │   ├── app.wxss
    │   │       │   ├── common
    │   │       │   ├── components
    │   │       │   ├── pages
    │   │       │   ├── project.config.json
    │   │       │   └── static
    │   │       ├── poster
    │   │       │   └── poster.jpg
    │   │       └── qrcode
    │   │           ├── background.png
    │   │           ├── follow.png
    │   │           └── offlines.jpg
    │   ├── route
    │   │   └── route.php
    │   ├── runtime
    │   │   └── index.php
    │   ├── think
    │   ├── vendor
    │   │   ├── adbario
    │   │   │   └── php-dot-notation
    │   │   │       ├── LICENSE.md
    │   │   │       ├── composer.json
    │   │   │       └── src
    │   │   ├── alibabacloud
    │   │   │   ├── tea
    │   │   │   │   ├── CHANGELOG.md
    │   │   │   │   ├── LICENSE.md
    │   │   │   │   ├── README.md
    │   │   │   │   ├── composer.json
    │   │   │   │   └── src
    │   │   │   └── tea-fileform
    │   │   │       ├── README-CN.md
    │   │   │       ├── README.md
    │   │   │       ├── composer.json
    │   │   │       ├── phpunit.xml
    │   │   │       ├── src
    │   │   │       └── tests
    │   │   ├── alipaysdk
    │   │   │   └── easysdk
    │   │   │       ├── APIDoc.md
    │   │   │       ├── LICENSE
    │   │   │       ├── README.md
    │   │   │       ├── composer.json
    │   │   │       ├── csharp
    │   │   │       ├── java
    │   │   │       ├── kernel
    │   │   │       ├── php
    │   │   │       └── tea
    │   │   ├── aliyuncs
    │   │   │   └── oss-sdk-php
    │   │   │       ├── CHANGELOG.md
    │   │   │       ├── LICENSE.md
    │   │   │       ├── README-CN.md
    │   │   │       ├── README.md
    │   │   │       ├── autoload.php
    │   │   │       ├── build-phar.sh
    │   │   │       ├── composer.json
    │   │   │       ├── example.jpg
    │   │   │       ├── index.php
    │   │   │       ├── phpunit.xml
    │   │   │       ├── samples
    │   │   │       ├── src
    │   │   │       └── tests
    │   │   ├── autoload.php
    │   │   ├── bin
    │   │   │   ├── jp.php
    │   │   │   ├── jp.php.bat
    │   │   │   └── var-dump-server
    │   │   ├── composer
    │   │   │   ├── ClassLoader.php
    │   │   │   ├── LICENSE
    │   │   │   ├── autoload_classmap.php
    │   │   │   ├── autoload_files.php
    │   │   │   ├── autoload_namespaces.php
    │   │   │   ├── autoload_psr4.php
    │   │   │   ├── autoload_real.php
    │   │   │   ├── autoload_static.php
    │   │   │   └── installed.json
    │   │   ├── danielstjules
    │   │   │   └── stringy
    │   │   │       ├── CHANGELOG.md
    │   │   │       ├── LICENSE.txt
    │   │   │       ├── README.md
    │   │   │       ├── composer.json
    │   │   │       └── src
    │   │   ├── dh2y
    │   │   │   └── think-qrcode
    │   │   │       ├── README.md
    │   │   │       ├── composer.json
    │   │   │       └── src
    │   │   ├── doctrine
    │   │   │   ├── annotations
    │   │   │   │   ├── LICENSE
    │   │   │   │   ├── README.md
    │   │   │   │   ├── composer.json
    │   │   │   │   └── lib
    │   │   │   ├── cache
    │   │   │   │   ├── LICENSE
    │   │   │   │   ├── README.md
    │   │   │   │   ├── UPGRADE.md
    │   │   │   │   ├── build.properties
    │   │   │   │   ├── build.xml
    │   │   │   │   ├── composer.json
    │   │   │   │   ├── lib
    │   │   │   │   ├── phpunit.xml.dist
    │   │   │   │   └── tests
    │   │   │   └── lexer
    │   │   │       ├── LICENSE
    │   │   │       ├── README.md
    │   │   │       ├── composer.json
    │   │   │       └── lib
    │   │   ├── firebase
    │   │   │   └── php-jwt
    │   │   │       ├── LICENSE
    │   │   │       ├── README.md
    │   │   │       ├── composer.json
    │   │   │       └── src
    │   │   ├── godruoyi
    │   │   │   └── php-snowflake
    │   │   │       ├── LICENSE
    │   │   │       ├── README-zh_CN.md
    │   │   │       ├── README.md
    │   │   │       ├── composer.json
    │   │   │       └── src
    │   │   ├── guzzle
    │   │   │   └── guzzle
    │   │   │       ├── CHANGELOG.md
    │   │   │       ├── LICENSE
    │   │   │       ├── README.md
    │   │   │       ├── UPGRADING.md
    │   │   │       ├── build.xml
    │   │   │       ├── composer.json
    │   │   │       ├── docs
    │   │   │       ├── phar-stub.php
    │   │   │       ├── phing
    │   │   │       ├── phpunit.xml.dist
    │   │   │       ├── src
    │   │   │       └── tests
    │   │   ├── guzzlehttp
    │   │   │   ├── guzzle
    │   │   │   │   ├── CHANGELOG.md
    │   │   │   │   ├── Dockerfile
    │   │   │   │   ├── LICENSE
    │   │   │   │   ├── README.md
    │   │   │   │   ├── UPGRADING.md
    │   │   │   │   ├── composer.json
    │   │   │   │   └── src
    │   │   │   ├── promises
    │   │   │   │   ├── CHANGELOG.md
    │   │   │   │   ├── LICENSE
    │   │   │   │   ├── Makefile
    │   │   │   │   ├── README.md
    │   │   │   │   ├── composer.json
    │   │   │   │   └── src
    │   │   │   └── psr7
    │   │   │       ├── CHANGELOG.md
    │   │   │       ├── LICENSE
    │   │   │       ├── README.md
    │   │   │       ├── composer.json
    │   │   │       └── src
    │   │   ├── league
    │   │   │   ├── flysystem
    │   │   │   │   ├── LICENSE
    │   │   │   │   ├── composer.json
    │   │   │   │   ├── deprecations.md
    │   │   │   │   └── src
    │   │   │   └── flysystem-cached-adapter
    │   │   │       ├── LICENSE
    │   │   │       ├── clover
    │   │   │       ├── composer.json
    │   │   │       ├── phpspec.yml
    │   │   │       ├── phpunit.php
    │   │   │       ├── phpunit.xml
    │   │   │       ├── readme.md
    │   │   │       ├── spec
    │   │   │       ├── src
    │   │   │       └── tests
    │   │   ├── lizhichao
    │   │   │   └── word
    │   │   │       ├── Data
    │   │   │       ├── LICENSE
    │   │   │       ├── Lib
    │   │   │       ├── README.md
    │   │   │       ├── addDict.php
    │   │   │       ├── composer.json
    │   │   │       └── demo.php
    │   │   ├── maennchen
    │   │   │   └── zipstream-php
    │   │   │       ├── CHANGELOG.md
    │   │   │       ├── CONTRIBUTING.md
    │   │   │       ├── LICENSE
    │   │   │       ├── README.md
    │   │   │       ├── composer.json
    │   │   │       ├── phpunit.xml.dist
    │   │   │       ├── psalm.xml
    │   │   │       ├── src
    │   │   │       └── test
    │   │   ├── markbaker
    │   │   │   ├── complex
    │   │   │   │   ├── README.md
    │   │   │   │   ├── classes
    │   │   │   │   ├── composer.json
    │   │   │   │   ├── examples
    │   │   │   │   └── license.md
    │   │   │   └── matrix
    │   │   │       ├── README.md
    │   │   │       ├── buildPhar.php
    │   │   │       ├── classes
    │   │   │       ├── composer.7.2.json
    │   │   │       ├── composer.json
    │   │   │       ├── examples
    │   │   │       ├── infection.json.dist
    │   │   │       ├── license.md
    │   │   │       └── phpstan.neon
    │   │   ├── monolog
    │   │   │   └── monolog
    │   │   │       ├── CHANGELOG.md
    │   │   │       ├── LICENSE
    │   │   │       ├── README.md
    │   │   │       ├── composer.json
    │   │   │       ├── doc
    │   │   │       ├── phpunit.xml.dist
    │   │   │       ├── src
    │   │   │       └── tests
    │   │   ├── mtdowling
    │   │   │   └── jmespath.php
    │   │   │       ├── CHANGELOG.md
    │   │   │       ├── LICENSE
    │   │   │       ├── Makefile
    │   │   │       ├── README.rst
    │   │   │       ├── bin
    │   │   │       ├── composer.json
    │   │   │       ├── phpunit.xml.dist
    │   │   │       ├── src
    │   │   │       └── tests
    │   │   ├── myclabs
    │   │   │   └── php-enum
    │   │   │       ├── LICENSE
    │   │   │       ├── README.md
    │   │   │       ├── SECURITY.md
    │   │   │       ├── composer.json
    │   │   │       ├── psalm.xml
    │   │   │       └── src
    │   │   ├── nesbot
    │   │   │   └── carbon
    │   │   │       ├── LICENSE
    │   │   │       ├── composer.json
    │   │   │       ├── contributing.md
    │   │   │       ├── phpmd.xml
    │   │   │       ├── readme.md
    │   │   │       └── src
    │   │   ├── opis
    │   │   │   └── closure
    │   │   │       ├── CHANGELOG.md
    │   │   │       ├── LICENSE
    │   │   │       ├── NOTICE
    │   │   │       ├── README.md
    │   │   │       ├── autoload.php
    │   │   │       ├── composer.json
    │   │   │       ├── functions.php
    │   │   │       └── src
    │   │   ├── overtrue
    │   │   │   ├── socialite
    │   │   │   │   ├── LICENSE.txt
    │   │   │   │   ├── README.md
    │   │   │   │   ├── composer.json
    │   │   │   │   ├── phpunit.xml
    │   │   │   │   ├── src
    │   │   │   │   └── tests
    │   │   │   └── wechat
    │   │   │       ├── BACKERS.md
    │   │   │       ├── LICENSE
    │   │   │       ├── README.md
    │   │   │       ├── composer.json
    │   │   │       └── src
    │   │   ├── paragonie
    │   │   │   └── random_compat
    │   │   │       ├── LICENSE
    │   │   │       ├── build-phar.sh
    │   │   │       ├── composer.json
    │   │   │       ├── dist
    │   │   │       ├── lib
    │   │   │       ├── other
    │   │   │       ├── psalm-autoload.php
    │   │   │       └── psalm.xml
    │   │   ├── phpoffice
    │   │   │   ├── phpexcel
    │   │   │   │   ├── Classes
    │   │   │   │   ├── Documentation
    │   │   │   │   ├── Examples
    │   │   │   │   ├── changelog.txt
    │   │   │   │   ├── composer.json
    │   │   │   │   ├── install.txt
    │   │   │   │   └── license.md
    │   │   │   └── phpspreadsheet
    │   │   │       ├── CHANGELOG.md
    │   │   │       ├── CONTRIBUTING.md
    │   │   │       ├── LICENSE
    │   │   │       ├── README.md
    │   │   │       ├── composer.json
    │   │   │       └── src
    │   │   ├── pimple
    │   │   │   └── pimple
    │   │   │       ├── CHANGELOG
    │   │   │       ├── LICENSE
    │   │   │       ├── README.rst
    │   │   │       ├── composer.json
    │   │   │       ├── ext
    │   │   │       ├── phpunit.xml.dist
    │   │   │       └── src
    │   │   ├── psr
    │   │   │   ├── cache
    │   │   │   │   ├── CHANGELOG.md
    │   │   │   │   ├── LICENSE.txt
    │   │   │   │   ├── README.md
    │   │   │   │   ├── composer.json
    │   │   │   │   └── src
    │   │   │   ├── container
    │   │   │   │   ├── LICENSE
    │   │   │   │   ├── README.md
    │   │   │   │   ├── composer.json
    │   │   │   │   └── src
    │   │   │   ├── http-client
    │   │   │   │   ├── CHANGELOG.md
    │   │   │   │   ├── LICENSE
    │   │   │   │   ├── README.md
    │   │   │   │   ├── composer.json
    │   │   │   │   └── src
    │   │   │   ├── http-factory
    │   │   │   │   ├── LICENSE
    │   │   │   │   ├── README.md
    │   │   │   │   ├── composer.json
    │   │   │   │   └── src
    │   │   │   ├── http-message
    │   │   │   │   ├── CHANGELOG.md
    │   │   │   │   ├── LICENSE
    │   │   │   │   ├── README.md
    │   │   │   │   ├── composer.json
    │   │   │   │   └── src
    │   │   │   ├── log
    │   │   │   │   ├── LICENSE
    │   │   │   │   ├── Psr
    │   │   │   │   ├── README.md
    │   │   │   │   └── composer.json
    │   │   │   └── simple-cache
    │   │   │       ├── LICENSE.md
    │   │   │       ├── README.md
    │   │   │       ├── composer.json
    │   │   │       └── src
    │   │   ├── qcloud
    │   │   │   └── cos-sdk-v5
    │   │   │       ├── LICENSE
    │   │   │       ├── README.md
    │   │   │       ├── composer.json
    │   │   │       ├── phpunit.xml
    │   │   │       ├── sample
    │   │   │       ├── sample.php
    │   │   │       └── src
    │   │   ├── qcloud_sts
    │   │   │   └── qcloud-sts-sdk
    │   │   │       ├── LICENSE
    │   │   │       ├── README.md
    │   │   │       ├── composer.json
    │   │   │       └── src
    │   │   ├── qiniu
    │   │   │   └── php-sdk
    │   │   │       ├── CHANGELOG.md
    │   │   │       ├── CONTRIBUTING.md
    │   │   │       ├── LICENSE
    │   │   │       ├── README.md
    │   │   │       ├── autoload.php
    │   │   │       ├── composer.json
    │   │   │       ├── docs
    │   │   │       ├── examples
    │   │   │       ├── phpunit.xml.dist
    │   │   │       ├── src
    │   │   │       ├── test-env.sh
    │   │   │       └── tests
    │   │   ├── ralouphie
    │   │   │   └── getallheaders
    │   │   │       ├── LICENSE
    │   │   │       ├── README.md
    │   │   │       ├── composer.json
    │   │   │       ├── phpunit.xml
    │   │   │       ├── src
    │   │   │       └── tests
    │   │   ├── services.php
    │   │   ├── songshenzong
    │   │   │   └── support
    │   │   │       ├── CHANGELOG.md
    │   │   │       ├── LICENSE.txt
    │   │   │       ├── README.md
    │   │   │       ├── composer.json
    │   │   │       ├── phpunit.xml
    │   │   │       ├── src
    │   │   │       └── tests
    │   │   ├── spatie
    │   │   │   └── macroable
    │   │   │       ├── CHANGELOG.md
    │   │   │       ├── CONTRIBUTING.md
    │   │   │       ├── LICENSE.md
    │   │   │       ├── README.md
    │   │   │       ├── composer.json
    │   │   │       ├── config
    │   │   │       └── src
    │   │   ├── symfony
    │   │   │   ├── event-dispatcher
    │   │   │   │   ├── CHANGELOG.md
    │   │   │   │   ├── ContainerAwareEventDispatcher.php
    │   │   │   │   ├── Debug
    │   │   │   │   ├── DependencyInjection
    │   │   │   │   ├── Event.php
    │   │   │   │   ├── EventDispatcher.php
    │   │   │   │   ├── EventDispatcherInterface.php
    │   │   │   │   ├── EventSubscriberInterface.php
    │   │   │   │   ├── GenericEvent.php
    │   │   │   │   ├── ImmutableEventDispatcher.php
    │   │   │   │   ├── LICENSE
    │   │   │   │   ├── README.md
    │   │   │   │   ├── Tests
    │   │   │   │   ├── composer.json
    │   │   │   │   └── phpunit.xml.dist
    │   │   │   ├── http-foundation
    │   │   │   │   ├── AcceptHeader.php
    │   │   │   │   ├── AcceptHeaderItem.php
    │   │   │   │   ├── ApacheRequest.php
    │   │   │   │   ├── BinaryFileResponse.php
    │   │   │   │   ├── CHANGELOG.md
    │   │   │   │   ├── Cookie.php
    │   │   │   │   ├── Exception
    │   │   │   │   ├── ExpressionRequestMatcher.php
    │   │   │   │   ├── File
    │   │   │   │   ├── FileBag.php
    │   │   │   │   ├── HeaderBag.php
    │   │   │   │   ├── IpUtils.php
    │   │   │   │   ├── JsonResponse.php
    │   │   │   │   ├── LICENSE
    │   │   │   │   ├── ParameterBag.php
    │   │   │   │   ├── README.md
    │   │   │   │   ├── RedirectResponse.php
    │   │   │   │   ├── Request.php
    │   │   │   │   ├── RequestMatcher.php
    │   │   │   │   ├── RequestMatcherInterface.php
    │   │   │   │   ├── RequestStack.php
    │   │   │   │   ├── Response.php
    │   │   │   │   ├── ResponseHeaderBag.php
    │   │   │   │   ├── ServerBag.php
    │   │   │   │   ├── Session
    │   │   │   │   ├── StreamedResponse.php
    │   │   │   │   ├── Tests
    │   │   │   │   ├── composer.json
    │   │   │   │   └── phpunit.xml.dist
    │   │   │   ├── polyfill-intl-idn
    │   │   │   │   ├── Idn.php
    │   │   │   │   ├── Info.php
    │   │   │   │   ├── LICENSE
    │   │   │   │   ├── README.md
    │   │   │   │   ├── Resources
    │   │   │   │   ├── bootstrap.php
    │   │   │   │   └── composer.json
    │   │   │   ├── polyfill-intl-normalizer
    │   │   │   │   ├── LICENSE
    │   │   │   │   ├── Normalizer.php
    │   │   │   │   ├── README.md
    │   │   │   │   ├── Resources
    │   │   │   │   ├── bootstrap.php
    │   │   │   │   └── composer.json
    │   │   │   ├── polyfill-mbstring
    │   │   │   │   ├── LICENSE
    │   │   │   │   ├── Mbstring.php
    │   │   │   │   ├── README.md
    │   │   │   │   ├── Resources
    │   │   │   │   ├── bootstrap.php
    │   │   │   │   └── composer.json
    │   │   │   ├── polyfill-php70
    │   │   │   │   ├── LICENSE
    │   │   │   │   ├── Php70.php
    │   │   │   │   ├── README.md
    │   │   │   │   ├── Resources
    │   │   │   │   ├── bootstrap.php
    │   │   │   │   └── composer.json
    │   │   │   ├── polyfill-php72
    │   │   │   │   ├── LICENSE
    │   │   │   │   ├── Php72.php
    │   │   │   │   ├── README.md
    │   │   │   │   ├── bootstrap.php
    │   │   │   │   └── composer.json
    │   │   │   ├── process
    │   │   │   │   ├── CHANGELOG.md
    │   │   │   │   ├── Exception
    │   │   │   │   ├── ExecutableFinder.php
    │   │   │   │   ├── InputStream.php
    │   │   │   │   ├── LICENSE
    │   │   │   │   ├── PhpExecutableFinder.php
    │   │   │   │   ├── PhpProcess.php
    │   │   │   │   ├── Pipes
    │   │   │   │   ├── Process.php
    │   │   │   │   ├── ProcessUtils.php
    │   │   │   │   ├── README.md
    │   │   │   │   ├── Tests
    │   │   │   │   ├── composer.json
    │   │   │   │   └── phpunit.xml.dist
    │   │   │   ├── psr-http-message-bridge
    │   │   │   │   ├── CHANGELOG.md
    │   │   │   │   ├── Factory
    │   │   │   │   ├── HttpFoundationFactoryInterface.php
    │   │   │   │   ├── HttpMessageFactoryInterface.php
    │   │   │   │   ├── LICENSE
    │   │   │   │   ├── README.md
    │   │   │   │   ├── Tests
    │   │   │   │   ├── composer.json
    │   │   │   │   └── phpunit.xml.dist
    │   │   │   ├── translation
    │   │   │   │   ├── CHANGELOG.md
    │   │   │   │   ├── Catalogue
    │   │   │   │   ├── Command
    │   │   │   │   ├── DataCollector
    │   │   │   │   ├── DataCollectorTranslator.php
    │   │   │   │   ├── DependencyInjection
    │   │   │   │   ├── Dumper
    │   │   │   │   ├── Exception
    │   │   │   │   ├── Extractor
    │   │   │   │   ├── Formatter
    │   │   │   │   ├── IdentityTranslator.php
    │   │   │   │   ├── Interval.php
    │   │   │   │   ├── LICENSE
    │   │   │   │   ├── Loader
    │   │   │   │   ├── LoggingTranslator.php
    │   │   │   │   ├── MessageCatalogue.php
    │   │   │   │   ├── MessageCatalogueInterface.php
    │   │   │   │   ├── MessageSelector.php
    │   │   │   │   ├── MetadataAwareInterface.php
    │   │   │   │   ├── PluralizationRules.php
    │   │   │   │   ├── README.md
    │   │   │   │   ├── Reader
    │   │   │   │   ├── Resources
    │   │   │   │   ├── Tests
    │   │   │   │   ├── Translator.php
    │   │   │   │   ├── TranslatorBagInterface.php
    │   │   │   │   ├── TranslatorInterface.php
    │   │   │   │   ├── Util
    │   │   │   │   ├── Writer
    │   │   │   │   ├── composer.json
    │   │   │   │   └── phpunit.xml.dist
    │   │   │   ├── translation-contracts
    │   │   │   │   ├── LICENSE
    │   │   │   │   ├── LocaleAwareInterface.php
    │   │   │   │   ├── README.md
    │   │   │   │   ├── Test
    │   │   │   │   ├── TranslatorInterface.php
    │   │   │   │   ├── TranslatorTrait.php
    │   │   │   │   └── composer.json
    │   │   │   └── var-dumper
    │   │   │       ├── CHANGELOG.md
    │   │   │       ├── Caster
    │   │   │       ├── Cloner
    │   │   │       ├── Command
    │   │   │       ├── Dumper
    │   │   │       ├── Exception
    │   │   │       ├── LICENSE
    │   │   │       ├── README.md
    │   │   │       ├── Resources
    │   │   │       ├── Server
    │   │   │       ├── Test
    │   │   │       ├── Tests
    │   │   │       ├── VarDumper.php
    │   │   │       ├── composer.json
    │   │   │       └── phpunit.xml.dist
    │   │   ├── topthink
    │   │   │   ├── framework
    │   │   │   │   ├── CONTRIBUTING.md
    │   │   │   │   ├── LICENSE.txt
    │   │   │   │   ├── README.md
    │   │   │   │   ├── composer.json
    │   │   │   │   ├── logo.png
    │   │   │   │   ├── phpunit.xml.dist
    │   │   │   │   ├── src
    │   │   │   │   └── tests
    │   │   │   ├── think-cache
    │   │   │   │   ├── LICENSE
    │   │   │   │   ├── README.md
    │   │   │   │   ├── composer.json
    │   │   │   │   └── src
    │   │   │   ├── think-captcha
    │   │   │   │   ├── LICENSE
    │   │   │   │   ├── README.md
    │   │   │   │   ├── assets
    │   │   │   │   ├── composer.json
    │   │   │   │   └── src
    │   │   │   ├── think-container
    │   │   │   │   ├── LICENSE
    │   │   │   │   ├── README.md
    │   │   │   │   ├── composer.json
    │   │   │   │   ├── phpunit.xml.dist
    │   │   │   │   ├── src
    │   │   │   │   └── tests
    │   │   │   ├── think-factory
    │   │   │   │   ├── LICENSE
    │   │   │   │   ├── composer.json
    │   │   │   │   └── src
    │   │   │   ├── think-helper
    │   │   │   │   ├── LICENSE
    │   │   │   │   ├── README.md
    │   │   │   │   ├── composer.json
    │   │   │   │   └── src
    │   │   │   ├── think-image
    │   │   │   │   ├── LICENSE
    │   │   │   │   ├── README.md
    │   │   │   │   ├── composer.json
    │   │   │   │   ├── phpunit.xml
    │   │   │   │   ├── src
    │   │   │   │   └── tests
    │   │   │   ├── think-log
    │   │   │   │   ├── LICENSE
    │   │   │   │   ├── README.md
    │   │   │   │   ├── composer.json
    │   │   │   │   └── src
    │   │   │   ├── think-multi-app
    │   │   │   │   ├── LICENSE
    │   │   │   │   ├── README.md
    │   │   │   │   ├── composer.json
    │   │   │   │   └── src
    │   │   │   ├── think-orm
    │   │   │   │   ├── LICENSE
    │   │   │   │   ├── README.md
    │   │   │   │   ├── composer.json
    │   │   │   │   └── src
    │   │   │   ├── think-queue
    │   │   │   │   ├── LICENSE
    │   │   │   │   ├── README.md
    │   │   │   │   ├── composer.json
    │   │   │   │   ├── phpunit.xml.dist
    │   │   │   │   ├── src
    │   │   │   │   └── tests
    │   │   │   ├── think-template
    │   │   │   │   ├── LICENSE
    │   │   │   │   ├── README.md
    │   │   │   │   ├── composer.json
    │   │   │   │   └── src
    │   │   │   └── think-view
    │   │   │       ├── LICENSE
    │   │   │       ├── README.md
    │   │   │       ├── composer.json
    │   │   │       └── src
    │   │   ├── workerman
    │   │   │   ├── channel
    │   │   │   │   ├── README.md
    │   │   │   │   ├── composer.json
    │   │   │   │   ├── src
    │   │   │   │   └── test
    │   │   │   └── workerman
    │   │   │       ├── Autoloader.php
    │   │   │       ├── Connection
    │   │   │       ├── Events
    │   │   │       ├── Lib
    │   │   │       ├── MIT-LICENSE.txt
    │   │   │       ├── Protocols
    │   │   │       ├── README.md
    │   │   │       ├── WebServer.php
    │   │   │       ├── Worker.php
    │   │   │       └── composer.json
    │   │   └── xaboy
    │   │       └── form-builder
    │   │           ├── LICENSE
    │   │           ├── README.md
    │   │           ├── composer.json
    │   │           ├── demo
    │   │           ├── images
    │   │           └── src
    │   └── workerman.bat
    ├── readme
    │   ├── LICENSE.txt
    │   ├── images
    │   │   ├── 00.gif
    │   │   ├── 10拼团.jpg
    │   │   ├── 11秒杀.jpg
    │   │   ├── 12签到.jpg
    │   │   ├── 13余额.jpg
    │   │   ├── 1400宽-单商户UI详情_01.jpg
    │   │   ├── 1400宽-单商户UI详情_02.jpg
    │   │   ├── 1400宽-单商户UI详情_03.jpg
    │   │   ├── 1400宽-单商户UI详情_04.jpg
    │   │   ├── 1400宽-单商户UI详情_05.jpg
    │   │   ├── 1400宽-单商户UI详情_06.jpg
    │   │   ├── 1400宽-单商户UI详情_07.jpg
    │   │   ├── 1400宽-单商户UI详情_08.jpg
    │   │   ├── 1400宽-单商户UI详情_09.jpg
    │   │   ├── 14积分.jpg
    │   │   ├── 15优惠券.jpg
    │   │   ├── 16后台管理.jpg
    │   │   ├── 17后台管理.jpg
    │   │   ├── 18模版.jpg
    │   │   ├── 19奖项.jpg
    │   │   ├── 1主图.jpg
    │   │   ├── 20公众号.jpg
    │   │   ├── 2首页.jpg
    │   │   ├── 3可视化1.jpg
    │   │   ├── 3可视化2.jpg
    │   │   ├── 3可视化3.jpg
    │   │   ├── 4商品.jpg
    │   │   ├── 5订单.jpg
    │   │   ├── 6用户.jpg
    │   │   ├── 7分销.jpg
    │   │   ├── 8消息管理.jpg
    │   │   ├── 9砍价.jpg
    │   │   ├── image.jpg
    │   │   ├── 单商户-开源版_02.jpg
    │   │   ├── 单商户-开源版_03.jpg
    │   │   ├── 单商户-开源版_04.jpg
    │   │   ├── 单商户-开源版_05.jpg
    │   │   ├── 单商户-开源版_06.jpg
    │   │   ├── 单商户-开源版_07.jpg
    │   │   └── 单商户-开源版_08.jpg
    │   ├── nginx.conf
    │   └── 安装说明.md
    ├── template
    │   ├── admin
    │   │   ├── LICENSE
    │   │   ├── README.md
    │   │   ├── cypress.json
    │   │   ├── package-lock.json
    │   │   ├── package.json
    │   │   ├── public
    │   │   │   ├── UEditor
    │   │   │   │   ├── dialogs
    │   │   │   │   ├── index.html
    │   │   │   │   ├── lang
    │   │   │   │   ├── themes
    │   │   │   │   ├── third-party
    │   │   │   │   ├── ueditor.all.js
    │   │   │   │   ├── ueditor.all.min.js
    │   │   │   │   ├── ueditor.config.js
    │   │   │   │   ├── ueditor.parse.js
    │   │   │   │   └── ueditor.parse.min.js
    │   │   │   ├── favicon.ico
    │   │   │   └── index.html
    │   │   ├── src
    │   │   │   ├── App.vue
    │   │   │   ├── api
    │   │   │   │   ├── account.js
    │   │   │   │   ├── agent.js
    │   │   │   │   ├── app.js
    │   │   │   │   ├── cms.js
    │   │   │   │   ├── common.js
    │   │   │   │   ├── diy.js
    │   │   │   │   ├── finance.js
    │   │   │   │   ├── index.js
    │   │   │   │   ├── kefu.js
    │   │   │   │   ├── kefu_mobile.js
    │   │   │   │   ├── live.js
    │   │   │   │   ├── lottery.js
    │   │   │   │   ├── marketing.js
    │   │   │   │   ├── membershipLevel.js
    │   │   │   │   ├── notification.js
    │   │   │   │   ├── order.js
    │   │   │   │   ├── product.js
    │   │   │   │   ├── setting.js
    │   │   │   │   ├── system.js
    │   │   │   │   ├── systemAdmin.js
    │   │   │   │   ├── systemMenus.js
    │   │   │   │   ├── uploadPictures.js
    │   │   │   │   └── user.js
    │   │   │   ├── assets
    │   │   │   │   ├── iconfont
    │   │   │   │   ├── iconfont1
    │   │   │   │   ├── iconfontYI
    │   │   │   │   ├── icons
    │   │   │   │   ├── images
    │   │   │   │   ├── js
    │   │   │   │   └── video
    │   │   │   ├── components
    │   │   │   │   ├── cards
    │   │   │   │   ├── common-icon
    │   │   │   │   ├── copyright
    │   │   │   │   ├── couponList
    │   │   │   │   ├── customerInfo
    │   │   │   │   ├── diyComponents
    │   │   │   │   ├── echarts
    │   │   │   │   ├── echartsNew
    │   │   │   │   ├── freightTemplate
    │   │   │   │   ├── from
    │   │   │   │   ├── goodsList
    │   │   │   │   ├── iconFrom
    │   │   │   │   ├── icons
    │   │   │   │   ├── link
    │   │   │   │   ├── linkaddress
    │   │   │   │   ├── main
    │   │   │   │   ├── mde
    │   │   │   │   ├── mobileConfig
    │   │   │   │   ├── mobileConfigRight
    │   │   │   │   ├── mobilePage
    │   │   │   │   ├── modelSure
    │   │   │   │   ├── newsCategory
    │   │   │   │   ├── pagesFoot
    │   │   │   │   ├── parent-view
    │   │   │   │   ├── publicSearchFrom
    │   │   │   │   ├── quill
    │   │   │   │   ├── referrerInfo
    │   │   │   │   ├── rightBtn
    │   │   │   │   ├── rightConfig
    │   │   │   │   ├── searchFrom
    │   │   │   │   ├── sendCoupons
    │   │   │   │   ├── sortList
    │   │   │   │   ├── systemStore
    │   │   │   │   ├── ueditorFrom
    │   │   │   │   ├── uploadPictures
    │   │   │   │   ├── uploadVideo
    │   │   │   │   └── userLabel.vue
    │   │   │   ├── config
    │   │   │   │   └── index.js
    │   │   │   ├── directive
    │   │   │   │   ├── directives.js
    │   │   │   │   ├── index.js
    │   │   │   │   └── module
    │   │   │   ├── filters
    │   │   │   │   └── index.js
    │   │   │   ├── index.less
    │   │   │   ├── libs
    │   │   │   │   ├── api.request.js
    │   │   │   │   ├── auth.js
    │   │   │   │   ├── axios.js
    │   │   │   │   ├── dialog.js
    │   │   │   │   ├── excel.js
    │   │   │   │   ├── loading.js
    │   │   │   │   ├── render-dom.js
    │   │   │   │   ├── request.js
    │   │   │   │   ├── socket.js
    │   │   │   │   ├── timeOptions.js
    │   │   │   │   ├── tools.js
    │   │   │   │   ├── util.js
    │   │   │   │   └── wechat.js
    │   │   │   ├── locale
    │   │   │   │   ├── index.js
    │   │   │   │   └── lang
    │   │   │   ├── main.js
    │   │   │   ├── mock
    │   │   │   │   ├── data
    │   │   │   │   ├── data.js
    │   │   │   │   ├── index.js
    │   │   │   │   ├── login.js
    │   │   │   │   └── user.js
    │   │   │   ├── pages
    │   │   │   │   ├── account
    │   │   │   │   ├── agent
    │   │   │   │   ├── app
    │   │   │   │   ├── cms
    │   │   │   │   ├── finance
    │   │   │   │   ├── index
    │   │   │   │   ├── kefu
    │   │   │   │   ├── marketing
    │   │   │   │   ├── notify
    │   │   │   │   ├── order
    │   │   │   │   ├── product
    │   │   │   │   ├── setting
    │   │   │   │   ├── system
    │   │   │   │   └── user
    │   │   │   ├── plugin
    │   │   │   │   ├── emoji-awesome
    │   │   │   │   ├── error-store
    │   │   │   │   └── index.js
    │   │   │   ├── router
    │   │   │   │   ├── before-close.js
    │   │   │   │   ├── index.js
    │   │   │   │   ├── modules
    │   │   │   │   └── routers.js
    │   │   │   ├── setting.js
    │   │   │   ├── store
    │   │   │   │   ├── index.js
    │   │   │   │   └── module
    │   │   │   ├── styles
    │   │   │   │   ├── common.less
    │   │   │   │   ├── default
    │   │   │   │   ├── emoji-awesome
    │   │   │   │   ├── font
    │   │   │   │   ├── index.less
    │   │   │   │   ├── layout
    │   │   │   │   ├── pages
    │   │   │   │   ├── setting.less
    │   │   │   │   └── style.css
    │   │   │   └── utils
    │   │   │       ├── Excel.js
    │   │   │       ├── auth.js
    │   │   │       ├── authLapse.js
    │   │   │       ├── bus.js
    │   │   │       ├── city.js
    │   │   │       ├── editorImg.js
    │   │   │       ├── emoji.js
    │   │   │       ├── icon.js
    │   │   │       ├── index.js
    │   │   │       ├── modal.js
    │   │   │       ├── modalForm.js
    │   │   │       ├── modalSure.js
    │   │   │       ├── public.js
    │   │   │       ├── validate.js
    │   │   │       └── videoCloud.js
    │   │   └── vue.config.js
    │   └── uni-app
    │       ├── App.vue
    │       ├── api
    │       │   ├── activity.js
    │       │   ├── admin.js
    │       │   ├── api.js
    │       │   ├── kefu.js
    │       │   ├── lottery.js
    │       │   ├── order.js
    │       │   ├── points_mall.js
    │       │   ├── public.js
    │       │   ├── store.js
    │       │   └── user.js
    │       ├── components
    │       │   ├── Authorize.vue
    │       │   ├── Loading
    │       │   │   └── index.vue
    │       │   ├── PriceChange
    │       │   │   └── index.vue
    │       │   ├── addressWindow
    │       │   │   └── index.vue
    │       │   ├── cartList
    │       │   │   └── index.vue
    │       │   ├── countDown
    │       │   │   └── index.vue
    │       │   ├── couponListWindow
    │       │   │   ├── index.vue
    │       │   │   ├── index1.vue
    │       │   │   └── 备份.vue
    │       │   ├── couponWindow
    │       │   │   └── index.vue
    │       │   ├── cus-previewImg
    │       │   │   └── cus-previewImg.vue
    │       │   ├── d_goodList
    │       │   │   └── index.vue
    │       │   ├── discountsList
    │       │   │   └── index.vue
    │       │   ├── easy-upload
    │       │   │   ├── easy-upload.vue
    │       │   │   └── readme.md
    │       │   ├── emptyPage.vue
    │       │   ├── goodClass
    │       │   │   └── index.vue
    │       │   ├── goodList
    │       │   │   └── index.vue
    │       │   ├── goodsWaterfall
    │       │   │   └── goodsWaterfall.vue
    │       │   ├── guide
    │       │   │   └── index.vue
    │       │   ├── home
    │       │   │   └── index.vue
    │       │   ├── invoiceModal
    │       │   │   └── index.vue
    │       │   ├── invoicePicker
    │       │   │   └── index.vue
    │       │   ├── jyf-parser
    │       │   │   ├── jyf-parser.vue
    │       │   │   └── libs
    │       │   ├── kefuIcon
    │       │   │   └── index.vue
    │       │   ├── login_mobile
    │       │   │   ├── index.vue
    │       │   │   └── routine_phone.vue
    │       │   ├── lottery
    │       │   │   ├── css
    │       │   │   ├── index.vue
    │       │   │   └── js
    │       │   ├── menuIcon.vue
    │       │   ├── mp-html
    │       │   │   ├── mp-html.vue
    │       │   │   ├── node
    │       │   │   └── parser.js
    │       │   ├── mpvue-calendar
    │       │   │   ├── browser-style.css
    │       │   │   ├── calendarinit.js
    │       │   │   ├── icon.css
    │       │   │   ├── mpvue-calendar.vue
    │       │   │   └── style.css
    │       │   ├── orderGoods
    │       │   │   └── index.vue
    │       │   ├── pageFooter
    │       │   │   └── index.vue
    │       │   ├── pageLoading.vue
    │       │   ├── parabolaBall
    │       │   │   └── ParabolaBall.vue
    │       │   ├── payment
    │       │   │   └── index.vue
    │       │   ├── productConSwiper
    │       │   │   └── index.vue
    │       │   ├── productWindow
    │       │   │   └── index.vue
    │       │   ├── promotionGood
    │       │   │   └── index.vue
    │       │   ├── recommend
    │       │   │   └── index.vue
    │       │   ├── shareInfo
    │       │   │   └── index.vue
    │       │   ├── shareRedPackets
    │       │   │   └── index.vue
    │       │   ├── skeleton
    │       │   │   └── index.vue
    │       │   ├── swipers
    │       │   │   └── index.vue
    │       │   ├── tabNav.vue
    │       │   ├── ucharts
    │       │   │   ├── component.vue
    │       │   │   ├── ucharts.js
    │       │   │   └── ucharts.min.js
    │       │   ├── uni-calendar
    │       │   │   ├── calendar.js
    │       │   │   ├── uni-calendar-item.vue
    │       │   │   ├── uni-calendar.vue
    │       │   │   └── util.js
    │       │   ├── userEvaluation
    │       │   │   └── index.vue
    │       │   ├── vconsole.min.js
    │       │   └── zb-code
    │       │       ├── qrcode.js
    │       │       └── zb-code.vue
    │       ├── config
    │       │   ├── app.js
    │       │   ├── cache.js
    │       │   └── socket.js
    │       ├── libs
    │       │   ├── chat.js
    │       │   ├── login.js
    │       │   ├── new_chat.js
    │       │   ├── order.js
    │       │   ├── routine.js
    │       │   └── wechat.js
    │       ├── main.js
    │       ├── manifest.json
    │       ├── mixins
    │       │   ├── SendVerifyCode.js
    │       │   └── color.js
    │       ├── package-lock.json
    │       ├── pages
    │       │   ├── activity
    │       │   │   ├── bargain
    │       │   │   ├── goods_bargain
    │       │   │   ├── goods_bargain_details
    │       │   │   ├── goods_combination
    │       │   │   ├── goods_combination_details
    │       │   │   ├── goods_combination_status
    │       │   │   ├── goods_seckill
    │       │   │   ├── goods_seckill_details
    │       │   │   ├── lottery
    │       │   │   ├── poster-poster
    │       │   │   ├── presell
    │       │   │   ├── presell_details
    │       │   │   └── static
    │       │   ├── admin
    │       │   │   ├── order_cancellation
    │       │   │   └── static
    │       │   ├── annex
    │       │   │   ├── offline_pay
    │       │   │   ├── offline_result
    │       │   │   ├── special
    │       │   │   └── web_view
    │       │   ├── auth
    │       │   │   └── index.vue
    │       │   ├── columnGoods
    │       │   │   ├── HotNewGoods
    │       │   │   └── static
    │       │   ├── customer_list
    │       │   │   ├── chat.vue
    │       │   │   └── index.vue
    │       │   ├── first_new_product
    │       │   │   └── index.vue
    │       │   ├── goods_cate
    │       │   │   ├── goods_cate.vue
    │       │   │   ├── goods_cate1.vue
    │       │   │   ├── goods_cate2.vue
    │       │   │   └── goods_cate3.vue
    │       │   ├── goods_details
    │       │   │   └── index.vue
    │       │   ├── goods_list
    │       │   │   └── index.vue
    │       │   ├── goods_search
    │       │   │   └── index.vue
    │       │   ├── guide
    │       │   │   └── index.vue
    │       │   ├── index
    │       │   │   ├── components
    │       │   │   ├── coupon.vue
    │       │   │   ├── index.vue
    │       │   │   └── update
    │       │   ├── live_list
    │       │   │   └── index.vue
    │       │   ├── news_details
    │       │   │   └── index.vue
    │       │   ├── news_list
    │       │   │   └── index.vue
    │       │   ├── order_addcart
    │       │   │   └── order_addcart.vue
    │       │   ├── order_pay_status
    │       │   │   ├── components
    │       │   │   ├── index.vue
    │       │   │   └── payLottery.vue
    │       │   ├── points_mall
    │       │   │   ├── component
    │       │   │   ├── exchange_record.vue
    │       │   │   ├── index.vue
    │       │   │   ├── integral_goods_details.vue
    │       │   │   ├── integral_goods_list.vue
    │       │   │   ├── integral_order.vue
    │       │   │   ├── integral_order_details.vue
    │       │   │   ├── integral_order_status.vue
    │       │   │   ├── logistics_details.vue
    │       │   │   └── user_address.vue
    │       │   ├── promotional_items
    │       │   │   └── index.vue
    │       │   ├── retrieve_password
    │       │   │   └── index.vue
    │       │   ├── user
    │       │   │   └── index.vue
    │       │   └── users
    │       │       ├── admin_order_detail
    │       │       ├── alipay_invoke
    │       │       ├── commission_rank
    │       │       ├── goods_comment_con
    │       │       ├── goods_comment_list
    │       │       ├── goods_details_store
    │       │       ├── goods_logistics
    │       │       ├── goods_return
    │       │       ├── login
    │       │       ├── message_center
    │       │       ├── order_confirm
    │       │       ├── order_details
    │       │       ├── order_list
    │       │       ├── privacy
    │       │       ├── promoter-list
    │       │       ├── promoter-order
    │       │       ├── promoter_rank
    │       │       ├── retrievePassword
    │       │       ├── scan_login
    │       │       ├── static
    │       │       ├── user_address
    │       │       ├── user_address_list
    │       │       ├── user_bill
    │       │       ├── user_cash
    │       │       ├── user_coupon
    │       │       ├── user_distribution_level
    │       │       ├── user_get_coupon
    │       │       ├── user_goods_collection
    │       │       ├── user_info
    │       │       ├── user_integral
    │       │       ├── user_invoice_form
    │       │       ├── user_invoice_list
    │       │       ├── user_invoice_order
    │       │       ├── user_money
    │       │       ├── user_payment
    │       │       ├── user_phone
    │       │       ├── user_pwd_edit
    │       │       ├── user_return_list
    │       │       ├── user_sgin
    │       │       ├── user_sgin_list
    │       │       ├── user_spread_code
    │       │       ├── user_spread_money
    │       │       ├── user_spread_user
    │       │       ├── user_vip
    │       │       ├── user_vip_areer
    │       │       └── wechat_login
    │       ├── pages.json
    │       ├── plugin
    │       │   ├── animate
    │       │   │   └── animate.min.css
    │       │   ├── clipboard
    │       │   │   └── clipboard.js
    │       │   ├── dayjs
    │       │   │   └── dayjs.min.js
    │       │   ├── emoji-awesome
    │       │   │   ├── css
    │       │   │   └── img
    │       │   ├── image-tools
    │       │   │   └── index.js
    │       │   └── jweixin-module
    │       │       └── index.js
    │       ├── static
    │       │   ├── app-plus
    │       │   │   └── mp-html
    │       │   ├── css
    │       │   │   ├── base.css
    │       │   │   ├── guildford.css
    │       │   │   └── style.scss
    │       │   ├── html
    │       │   │   └── pc.html
    │       │   ├── iconfont
    │       │   │   └── iconfont.css
    │       │   ├── images
    │       │   │   ├── 1-001.png
    │       │   │   ├── 1-002.png
    │       │   │   ├── 2-001.png
    │       │   │   ├── 2-002.png
    │       │   │   ├── 3-001.png
    │       │   │   ├── 3-002.png
    │       │   │   ├── 4-001.png
    │       │   │   ├── 4-002.png
    │       │   │   ├── address-aleart-header.png
    │       │   │   ├── address.png
    │       │   │   ├── admin-msg.png
    │       │   │   ├── close.gif
    │       │   │   ├── co-bag.png
    │       │   │   ├── code-bg.png
    │       │   │   ├── code_1.png
    │       │   │   ├── code_2.png
    │       │   │   ├── collection.png
    │       │   │   ├── contact.png
    │       │   │   ├── down.png
    │       │   │   ├── edit.png
    │       │   │   ├── empty-box.png
    │       │   │   ├── error-network.png
    │       │   │   ├── everyday.png
    │       │   │   ├── exchange.png
    │       │   │   ├── f.png
    │       │   │   ├── font-left.png
    │       │   │   ├── font-right.png
    │       │   │   ├── fvip.png
    │       │   │   ├── gift.png
    │       │   │   ├── go-shoping.png
    │       │   │   ├── group02.gif
    │       │   │   ├── head-l-point.png
    │       │   │   ├── head-r-point.png
    │       │   │   ├── headwear.png
    │       │   │   ├── horn.png
    │       │   │   ├── jf-head.png
    │       │   │   ├── left.png
    │       │   │   ├── line.jpg
    │       │   │   ├── ling.png
    │       │   │   ├── live-01.png
    │       │   │   ├── live-02.png
    │       │   │   ├── live-03.png
    │       │   │   ├── logo2.png
    │       │   │   ├── lottery-bag.png
    │       │   │   ├── lottery-btn-bag.png
    │       │   │   ├── lottery-click.png
    │       │   │   ├── luck-draw.png
    │       │   │   ├── medal01.png
    │       │   │   ├── medal02.png
    │       │   │   ├── medal03.png
    │       │   │   ├── member.png
    │       │   │   ├── member01.png
    │       │   │   ├── menu.png
    │       │   │   ├── money.png
    │       │   │   ├── mores.png
    │       │   │   ├── my-point.png
    │       │   │   ├── no-thing.png
    │       │   │   ├── noAddress.png
    │       │   │   ├── noCart.png
    │       │   │   ├── noCollection.png
    │       │   │   ├── noCoupon.png
    │       │   │   ├── noEvaluate.png
    │       │   │   ├── noInvoice.png
    │       │   │   ├── noMessage.png
    │       │   │   ├── noNews.png
    │       │   │   ├── noOrder.png
    │       │   │   ├── noSearch.png
    │       │   │   ├── noShopper.png
    │       │   │   ├── offline-result.png
    │       │   │   ├── one.png
    │       │   │   ├── open.gif
    │       │   │   ├── order1.png
    │       │   │   ├── order2.png
    │       │   │   ├── order3.png
    │       │   │   ├── order4.png
    │       │   │   ├── order5.png
    │       │   │   ├── orderTime.png
    │       │   │   ├── pay-lottery-bag.png
    │       │   │   ├── pay-lottery-l.png
    │       │   │   ├── pay-lottery-r.png
    │       │   │   ├── phone_1.png
    │       │   │   ├── points-lottery.png
    │       │   │   ├── poster-close.png
    │       │   │   ├── posterbackgd.png
    │       │   │   ├── priceTag.png
    │       │   │   ├── pricetitle.jpg
    │       │   │   ├── record1.png
    │       │   │   ├── record2.png
    │       │   │   ├── record3.png
    │       │   │   ├── record4.png
    │       │   │   ├── red-packets.png
    │       │   │   ├── right-icon.png
    │       │   │   ├── score.png
    │       │   │   ├── share-info.png
    │       │   │   ├── shuoming.png
    │       │   │   ├── sign-in.png
    │       │   │   ├── sign01.png
    │       │   │   ├── signH.png
    │       │   │   ├── sort-img.png
    │       │   │   ├── sort1.png
    │       │   │   ├── sort2.png
    │       │   │   ├── sort3.png
    │       │   │   ├── spike-icon-002.gif
    │       │   │   ├── spot.png
    │       │   │   ├── stop.png
    │       │   │   ├── support.png
    │       │   │   ├── three.png
    │       │   │   ├── two.png
    │       │   │   ├── up.png
    │       │   │   ├── user-msg.png
    │       │   │   ├── user-sys.png
    │       │   │   ├── user01.png
    │       │   │   ├── user_vip.png
    │       │   │   ├── vacancy.png
    │       │   │   ├── value.jpg
    │       │   │   ├── vip.png
    │       │   │   ├── writeOff.jpeg
    │       │   │   ├── writeOff.jpg
    │       │   │   └── written.png
    │       │   └── img
    │       │       └── live-logo.gif
    │       ├── store
    │       │   ├── getters.js
    │       │   ├── index.js
    │       │   └── modules
    │       │       ├── app.js
    │       │       ├── hotWords.js
    │       │       ├── index.js
    │       │       └── indexData.js
    │       ├── uni.scss
    │       ├── utils
    │       │   ├── SubscribeMessage.js
    │       │   ├── cache.js
    │       │   ├── dialog.js
    │       │   ├── emoji.js
    │       │   ├── index.js
    │       │   ├── permission.js
    │       │   ├── request.js
    │       │   ├── util-备份.js
    │       │   ├── util.js
    │       │   └── validate.js
    │       └── vue.config.js
    └── 安装必读.docx

725 directories, 1968 files



标签: CRMEB CRM

实例下载地址

CRMEB免费开源商城系统源码

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警