├── .gitattributes ├── .gitee ├── ISSUE_TEMPLATE.zh-CN.md ├── PULL_REQUEST_TEMPLATE.zh-CN.md └── coreshop │ └── images │ ├── Admin │ ├── 01.png │ ├── 02.png │ ├── 03.png │ ├── 04.png │ ├── 05.png │ ├── 06.png │ ├── 07.png │ ├── 08.png │ ├── 09.png │ ├── 10.png │ ├── 11.png │ └── 12.png │ ├── Logo │ └── logo.png │ ├── PayeeCode.jpg │ ├── QRCode │ ├── android.png │ ├── h5qCode.jpg │ └── wxqCode.jpg │ └── WeChat │ ├── 01.jpg │ ├── 02.jpg │ ├── 03.jpg │ ├── 04.jpg │ └── 05.jpg ├── .gitignore ├── CoreCms.Net.Auth ├── AuthorizationSetup.cs ├── CoreCms.Net.Auth.csproj ├── HttpContextSetup.cs ├── HttpContextUser │ ├── AspNetUser.cs │ └── IHttpContextUser.cs ├── OverWrite │ ├── JwtHelper.cs │ └── JwtTokenAuth.cs ├── Policys │ ├── ApiResponse.cs │ ├── ApiResponseForAdminHandler.cs │ ├── ApiResponseForClientHandler.cs │ ├── JwtToken.cs │ ├── PermissionForAdminHandler.cs │ ├── PermissionForClientHandler.cs │ ├── PermissionItem.cs │ └── PermissionRequirement.cs └── TokenHelper.cs ├── CoreCms.Net.Caching ├── AccressToken │ └── WeChatCacheAccessTokenHelper.cs ├── AutoMate │ ├── MemoryCache │ │ ├── ICachingProvider.cs │ │ └── MemoryCaching.cs │ └── RedisCache │ │ ├── IRedisOperationRepository.cs │ │ └── RedisOperationRepository.cs ├── CoreCms.Net.Caching.csproj ├── Manual │ ├── IManualCacheManager.cs │ ├── ManualDataCache.cs │ ├── MemoryCacheManager.cs │ └── RedisCacheManager.cs └── SqlSugar │ ├── SqlSugarMemoryCache.cs │ └── SqlSugarRedisCache.cs ├── CoreCms.Net.CodeGenerator ├── CoreCms.Net.CodeGenerator.csproj ├── CrudTemplete │ ├── Controllers │ │ └── Controller.tpl │ ├── DbModel │ │ └── Model.tpl │ ├── Repositories │ │ ├── IRepository.tpl │ │ └── Repository.tpl │ ├── Services │ │ ├── IServices.tpl │ │ └── Services.tpl │ └── View │ │ ├── Create.tpl │ │ ├── Details.tpl │ │ ├── Edit.tpl │ │ └── Index.tpl └── GeneratorCodeHelper.cs ├── CoreCms.Net.Configuration ├── AppSettingsConstVars.cs ├── AppSettingsHelper.cs ├── CoreCms.Net.Configuration.csproj ├── GlobalConstVars.cs ├── GlobalEnumVars.cs ├── GlobalErrorCodeVars.cs ├── GlobalStatusCodes.cs ├── SystemSettingConstVars.cs └── SystemSettingDictionary.cs ├── CoreCms.Net.Core ├── AOP │ ├── CacheAopBase.cs │ ├── MemoryCacheAop.cs │ └── RedisCacheAop.cs ├── Attribute │ ├── CachingAttribute.cs │ └── UseTranAttribute.cs ├── AutoFac │ └── AutofacModuleRegister.cs ├── Config │ ├── CorsSetup.cs │ ├── HangFireSetup.cs │ ├── MemoryCacheSetup.cs │ ├── RedisCacheSetup.cs │ ├── RedisMessageQueueSetup.cs │ ├── SqlSugarSetup.cs │ ├── SwaggerSetup.cs │ └── YiLianYunSetup.cs └── CoreCms.Net.Core.csproj ├── CoreCms.Net.Filter ├── AdminsControllerPermission.cs └── CoreCms.Net.Filter.csproj ├── CoreCms.Net.IRepository ├── Advert │ ├── ICoreCmsAdvertPositionRepository.cs │ └── ICoreCmsAdvertisementRepository.cs ├── Agent │ ├── ICoreCmsAgentGoodsRepository.cs │ ├── ICoreCmsAgentGradeRepository.cs │ ├── ICoreCmsAgentOrderRepository.cs │ ├── ICoreCmsAgentProductsRepository.cs │ └── ICoreCmsAgentRepository.cs ├── Api │ └── ICoreCmsApiAccessTokenRepository.cs ├── Article │ ├── ICoreCmsArticleRepository.cs │ └── ICoreCmsArticleTypeRepository.cs ├── Bill │ ├── ICoreCmsBillAftersalesImagesRepository.cs │ ├── ICoreCmsBillAftersalesItemRepository.cs │ ├── ICoreCmsBillAftersalesRepository.cs │ ├── ICoreCmsBillDeliveryItemRepository.cs │ ├── ICoreCmsBillDeliveryRepository.cs │ ├── ICoreCmsBillLadingRepository.cs │ ├── ICoreCmsBillPaymentsRepository.cs │ ├── ICoreCmsBillRefundRepository.cs │ ├── ICoreCmsBillReshipItemRepository.cs │ └── ICoreCmsBillReshipRepository.cs ├── Cart │ └── ICoreCmsCartRepository.cs ├── CodeGenerator │ └── ICodeGeneratorRepository.cs ├── Com │ └── ICoreCmsLabelRepository.cs ├── CoreCms.Net.IRepository.csproj ├── Distribution │ ├── ICoreCmsDistributionConditionRepository.cs │ ├── ICoreCmsDistributionGradeRepository.cs │ ├── ICoreCmsDistributionOrderRepository.cs │ ├── ICoreCmsDistributionRepository.cs │ └── ICoreCmsDistributionResultRepository.cs ├── Financial │ ├── ICoreCmsInvoiceRecordRepository.cs │ ├── ICoreCmsInvoiceRepository.cs │ ├── ICoreCmsPaymentsRepository.cs │ └── ICoreCmsReportsRepository.cs ├── Good │ ├── ICoreCmsBrandRepository.cs │ ├── ICoreCmsGoodsBrowsingRepository.cs │ ├── ICoreCmsGoodsCategoryExtendRepository.cs │ ├── ICoreCmsGoodsCategoryRepository.cs │ ├── ICoreCmsGoodsCollectionRepository.cs │ ├── ICoreCmsGoodsCommentRepository.cs │ ├── ICoreCmsGoodsGradeRepository.cs │ ├── ICoreCmsGoodsParamsRepository.cs │ ├── ICoreCmsGoodsRepository.cs │ ├── ICoreCmsGoodsTypeSpecRepository.cs │ ├── ICoreCmsGoodsTypeSpecValueRepository.cs │ ├── ICoreCmsProductsDistributionRepository.cs │ └── ICoreCmsProductsRepository.cs ├── IBaseRepository.cs ├── IntelligentForms │ ├── ICoreCmsFormItemRepository.cs │ ├── ICoreCmsFormRepository.cs │ ├── ICoreCmsFormSubmitDetailRepository.cs │ └── ICoreCmsFormSubmitRepository.cs ├── Message │ ├── ICoreCmsMessageCenterRepository.cs │ ├── ICoreCmsMessageRepository.cs │ └── ICoreCmsSmsRepository.cs ├── Order │ ├── ICoreCmsOrderItemRepository.cs │ ├── ICoreCmsOrderLogRepository.cs │ └── ICoreCmsOrderRepository.cs ├── Pay │ ├── IAliPayRepository.cs │ ├── IBalancePayRepository.cs │ ├── IOfflinePayRepository.cs │ └── IWeChatPayRepository.cs ├── Pintuan │ ├── ICoreCmsPintuanGoodsRepository.cs │ ├── ICoreCmsPintuanRecordRepository.cs │ └── ICoreCmsPintuanRuleRepository.cs ├── Promotion │ ├── ICoreCmsCouponRepository.cs │ ├── ICoreCmsPromotionConditionRepository.cs │ ├── ICoreCmsPromotionRecordRepository.cs │ ├── ICoreCmsPromotionRepository.cs │ └── ICoreCmsPromotionResultRepository.cs ├── Service │ ├── ICoreCmsServicesRepository.cs │ ├── ICoreCmsUserServicesOrderRepository.cs │ ├── ICoreCmsUserServicesTicketRepository.cs │ └── ICoreCmsUserServicesTicketVerificationLogRepository.cs ├── Shop │ ├── ICoreCmsAreaRepository.cs │ ├── ICoreCmsClerkRepository.cs │ ├── ICoreCmsLogisticsRepository.cs │ ├── ICoreCmsNoticeRepository.cs │ ├── ICoreCmsPagesItemsRepository.cs │ ├── ICoreCmsPagesRepository.cs │ ├── ICoreCmsServiceDescriptionRepository.cs │ ├── ICoreCmsSettingRepository.cs │ ├── ICoreCmsShipRepository.cs │ └── ICoreCmsStoreRepository.cs ├── Stock │ ├── ICoreCmsStockLogRepository.cs │ └── ICoreCmsStockRepository.cs ├── System │ ├── ISysDictionaryDataRepository.cs │ ├── ISysDictionaryRepository.cs │ ├── ISysLoginRecordRepository.cs │ ├── ISysMenuRepository.cs │ ├── ISysNLogRecordsRepository.cs │ ├── ISysOperRecordRepository.cs │ ├── ISysOrganizationRepository.cs │ ├── ISysRoleMenuRepository.cs │ ├── ISysRoleRepository.cs │ ├── ISysTaskLogRepository.cs │ ├── ISysUserRepository.cs │ └── ISysUserRoleRepository.cs ├── UnitOfWork │ └── IUnitOfWork.cs ├── User │ ├── ICoreCmsUserBalanceRepository.cs │ ├── ICoreCmsUserBankCardRepository.cs │ ├── ICoreCmsUserGradeRepository.cs │ ├── ICoreCmsUserLogRepository.cs │ ├── ICoreCmsUserPointLogRepository.cs │ ├── ICoreCmsUserRepository.cs │ ├── ICoreCmsUserShipRepository.cs │ └── ICoreCmsUserTocashRepository.cs └── WeChat │ ├── ICoreCmsUserWeChatInfoRepository.cs │ ├── ICoreCmsUserWeChatMsgSubscriptionRepository.cs │ ├── ICoreCmsUserWeChatMsgSubscriptionSwitchRepository.cs │ ├── ICoreCmsUserWeChatMsgTemplateRepository.cs │ └── IWeChatAccessTokenRepository.cs ├── CoreCms.Net.IServices ├── Advert │ ├── ICoreCmsAdvertPositionServices.cs │ └── ICoreCmsAdvertisementServices.cs ├── Agent │ ├── ICoreCmsAgentGoodsServices.cs │ ├── ICoreCmsAgentGradeServices.cs │ ├── ICoreCmsAgentOrderServices.cs │ ├── ICoreCmsAgentProductsServices.cs │ └── ICoreCmsAgentServices.cs ├── Api │ └── ICoreCmsApiAccessTokenServices.cs ├── Article │ ├── ICoreCmsArticleServices.cs │ └── ICoreCmsArticleTypeServices.cs ├── Bill │ ├── ICoreCmsBillAftersalesImagesServices.cs │ ├── ICoreCmsBillAftersalesItemServices.cs │ ├── ICoreCmsBillAftersalesServices.cs │ ├── ICoreCmsBillDeliveryItemServices.cs │ ├── ICoreCmsBillDeliveryServices.cs │ ├── ICoreCmsBillLadingServices.cs │ ├── ICoreCmsBillPaymentsServices.cs │ ├── ICoreCmsBillRefundServices.cs │ ├── ICoreCmsBillReshipItemServices.cs │ └── ICoreCmsBillReshipServices.cs ├── Cart │ └── ICoreCmsCartServices.cs ├── CodeGenerator │ └── ICodeGeneratorServices.cs ├── Com │ ├── ICoreCmsLabelServices.cs │ └── IToolsServices.cs ├── CoreCms.Net.IServices.csproj ├── Distribution │ ├── ICoreCmsDistributionConditionServices.cs │ ├── ICoreCmsDistributionGradeServices.cs │ ├── ICoreCmsDistributionOrderServices.cs │ ├── ICoreCmsDistributionResultServices.cs │ └── ICoreCmsDistributionServices.cs ├── Financial │ ├── ICoreCmsInvoiceRecordServices.cs │ ├── ICoreCmsInvoiceServices.cs │ ├── ICoreCmsPaymentsServices.cs │ └── ICoreCmsReportsServices.cs ├── Good │ ├── ICoreCmsBrandServices.cs │ ├── ICoreCmsGoodsBrowsingServices.cs │ ├── ICoreCmsGoodsCategoryExtendServices.cs │ ├── ICoreCmsGoodsCategoryServices.cs │ ├── ICoreCmsGoodsCollectionServices.cs │ ├── ICoreCmsGoodsCommentServices.cs │ ├── ICoreCmsGoodsGradeServices.cs │ ├── ICoreCmsGoodsParamsServices.cs │ ├── ICoreCmsGoodsServices.cs │ ├── ICoreCmsGoodsTypeSpecServices.cs │ ├── ICoreCmsGoodsTypeSpecValueServices.cs │ ├── ICoreCmsProductsDistributionServices.cs │ └── ICoreCmsProductsServices.cs ├── IBaseServices.cs ├── Message │ ├── ICoreCmsMessageCenterServices.cs │ ├── ICoreCmsMessageServices.cs │ └── ICoreCmsSmsServices.cs ├── Order │ ├── ICoreCmsOrderItemServices.cs │ ├── ICoreCmsOrderLogServices.cs │ └── ICoreCmsOrderServices.cs ├── Pay │ ├── IAliPayServices.cs │ ├── IBalancePayServices.cs │ ├── IOfflinePayServices.cs │ └── IWeChatPayServices.cs ├── Pintuan │ ├── ICoreCmsPintuanGoodsServices.cs │ ├── ICoreCmsPintuanRecordServices.cs │ └── ICoreCmsPintuanRuleServices.cs ├── Promotion │ ├── ICoreCmsCouponServices.cs │ ├── ICoreCmsPromotionConditionServices.cs │ ├── ICoreCmsPromotionRecordServices.cs │ ├── ICoreCmsPromotionResultServices.cs │ └── ICoreCmsPromotionServices.cs ├── Service │ ├── ICoreCmsServicesServices.cs │ ├── ICoreCmsUserServicesOrderServices.cs │ ├── ICoreCmsUserServicesTicketServices.cs │ └── ICoreCmsUserServicesTicketVerificationLogServices.cs ├── Share │ └── ICoreCmsShareServices.cs ├── Shop │ ├── ICoreCmsAreaServices.cs │ ├── ICoreCmsClerkServices.cs │ ├── ICoreCmsLogisticsServices.cs │ ├── ICoreCmsNoticeServices.cs │ ├── ICoreCmsPagesItemsServices.cs │ ├── ICoreCmsPagesServices.cs │ ├── ICoreCmsServiceDescriptionServices.cs │ ├── ICoreCmsSettingServices.cs │ ├── ICoreCmsShipServices.cs │ └── ICoreCmsStoreServices.cs ├── Stock │ ├── ICoreCmsStockLogServices.cs │ └── ICoreCmsStockServices.cs ├── System │ ├── ISysDictionaryDataServices.cs │ ├── ISysDictionaryServices.cs │ ├── ISysLoginRecordServices.cs │ ├── ISysMenuServices.cs │ ├── ISysNLogRecordsServices.cs │ ├── ISysOperRecordServices.cs │ ├── ISysOrganizationServices.cs │ ├── ISysRoleMenuServices.cs │ ├── ISysRoleServices.cs │ ├── ISysTaskLogServices.cs │ ├── ISysUserRoleServices.cs │ └── ISysUserServices.cs ├── User │ ├── ICoreCmsUserBalanceServices.cs │ ├── ICoreCmsUserBankCardServices.cs │ ├── ICoreCmsUserGradeServices.cs │ ├── ICoreCmsUserLogServices.cs │ ├── ICoreCmsUserPointLogServices.cs │ ├── ICoreCmsUserServices.cs │ ├── ICoreCmsUserShipServices.cs │ └── ICoreCmsUserTocashServices.cs ├── WeChat │ ├── ICoreCmsUserWeChatInfoServices.cs │ ├── ICoreCmsUserWeChatMsgSubscriptionServices.cs │ ├── ICoreCmsUserWeChatMsgSubscriptionSwitchServices.cs │ ├── ICoreCmsUserWeChatMsgTemplateServices.cs │ └── IWeChatAccessTokenServices.cs └── intelligentForms │ ├── ICoreCmsFormItemServices.cs │ ├── ICoreCmsFormServices.cs │ ├── ICoreCmsFormSubmitDetailServices.cs │ └── ICoreCmsFormSubmitServices.cs ├── CoreCms.Net.Loging ├── CoreCms.Net.Loging.csproj ├── LogLockHelper.cs └── NLogUtil.cs ├── CoreCms.Net.Mapping ├── AutoMapperConfiguration.cs ├── AutoMapperIProfile.cs └── CoreCms.Net.Mapping.csproj ├── CoreCms.Net.Middlewares ├── CoreCms.Net.Middlewares.csproj ├── ExceptionHandlerMiddForAdmin.cs ├── ExceptionHandlerMiddForClent.cs ├── IPLogMildd.cs ├── MiddlewareHelpers.cs ├── RecordAccessLogsMildd.cs ├── RequRespLogMildd.cs └── SwaggerBasicAuthMiddleware.cs ├── CoreCms.Net.Model ├── CoreCms.Net.Model.csproj ├── Entities │ ├── Advert │ │ ├── CoreCmsAdvertPosition.cs │ │ └── CoreCmsAdvertisement.cs │ ├── Agent │ │ ├── CoreCmsAgent.cs │ │ ├── CoreCmsAgentGoods.cs │ │ ├── CoreCmsAgentGoodsPartial.cs │ │ ├── CoreCmsAgentGrade.cs │ │ ├── CoreCmsAgentOrder.cs │ │ ├── CoreCmsAgentOrderPartial.cs │ │ ├── CoreCmsAgentPartial.cs │ │ └── CoreCmsAgentProducts.cs │ ├── Api │ │ └── CoreCmsApiAccessToken.cs │ ├── Article │ │ ├── CoreCmsArticle.cs │ │ ├── CoreCmsArticlePartial.cs │ │ └── CoreCmsArticleType.cs │ ├── Bill │ │ ├── CoreCmsBillAftersales.cs │ │ ├── CoreCmsBillAftersalesImages.cs │ │ ├── CoreCmsBillAftersalesItem.cs │ │ ├── CoreCmsBillAftersalesPartial.cs │ │ ├── CoreCmsBillDelivery.cs │ │ ├── CoreCmsBillDeliveryItem.cs │ │ ├── CoreCmsBillDeliveryPartial.cs │ │ ├── CoreCmsBillLading.cs │ │ ├── CoreCmsBillLadingPartial.cs │ │ ├── CoreCmsBillPayments.cs │ │ ├── CoreCmsBillPaymentsPartial.cs │ │ ├── CoreCmsBillRefund.cs │ │ ├── CoreCmsBillRefundPartial.cs │ │ ├── CoreCmsBillReship.cs │ │ ├── CoreCmsBillReshipItem.cs │ │ └── CoreCmsBillReshipPartial.cs │ ├── Cart │ │ └── CoreCmsCart.cs │ ├── Com │ │ └── CoreCmsLabel.cs │ ├── Distribution │ │ ├── CoreCmsDistribution.cs │ │ ├── CoreCmsDistributionCondition.cs │ │ ├── CoreCmsDistributionConditionPartial.cs │ │ ├── CoreCmsDistributionGrade.cs │ │ ├── CoreCmsDistributionOrder.cs │ │ ├── CoreCmsDistributionOrderPartial.cs │ │ ├── CoreCmsDistributionPartial.cs │ │ └── CoreCmsDistributionResult.cs │ ├── Expression │ │ ├── ParameterRebinder.cs │ │ └── PredicateBuilder.cs │ ├── Financial │ │ ├── CoreCmsInvoice.cs │ │ ├── CoreCmsInvoicePartial.cs │ │ ├── CoreCmsInvoiceRecord.cs │ │ └── CoreCmsPayments.cs │ ├── Form │ │ ├── CoreCmsForm.cs │ │ ├── CoreCmsFormItem.cs │ │ ├── CoreCmsFormItemPartial.cs │ │ ├── CoreCmsFormPartial.cs │ │ ├── CoreCmsFormSubmit.cs │ │ ├── CoreCmsFormSubmitDetail.cs │ │ └── CoreCmsFormSubmitPartial.cs │ ├── Good │ │ ├── CoreCmsBrand.cs │ │ ├── CoreCmsGoods.cs │ │ ├── CoreCmsGoodsBrowsing.cs │ │ ├── CoreCmsGoodsBrowsingPartial.cs │ │ ├── CoreCmsGoodsCategory.cs │ │ ├── CoreCmsGoodsCategoryExtend.cs │ │ ├── CoreCmsGoodsCategoryPartial.cs │ │ ├── CoreCmsGoodsCollection.cs │ │ ├── CoreCmsGoodsCollectionPartial.cs │ │ ├── CoreCmsGoodsComment.cs │ │ ├── CoreCmsGoodsCommentPartial.cs │ │ ├── CoreCmsGoodsGrade.cs │ │ ├── CoreCmsGoodsGradePartial.cs │ │ ├── CoreCmsGoodsImages.cs │ │ ├── CoreCmsGoodsParams.cs │ │ ├── CoreCmsGoodsPartial.cs │ │ ├── CoreCmsGoodsTypeSpec.cs │ │ ├── CoreCmsGoodsTypeSpecPartial.cs │ │ ├── CoreCmsGoodsTypeSpecValue.cs │ │ ├── CoreCmsProducts.cs │ │ ├── CoreCmsProductsDistribution.cs │ │ └── CoreCmsProductsPartial.cs │ ├── Message │ │ ├── CoreCmsMessage.cs │ │ ├── CoreCmsMessageCenter.cs │ │ └── CoreCmsSms.cs │ ├── Order │ │ ├── CoreCmsOrder.cs │ │ ├── CoreCmsOrderItem.cs │ │ ├── CoreCmsOrderItemPartial.cs │ │ ├── CoreCmsOrderLog.cs │ │ ├── CoreCmsOrderLogPartial.cs │ │ └── CoreCmsOrderPartial.cs │ ├── Pintuan │ │ ├── CoreCmsPintuanGoods.cs │ │ ├── CoreCmsPintuanRecord.cs │ │ ├── CoreCmsPintuanRecordPartial.cs │ │ ├── CoreCmsPintuanRule.cs │ │ └── CoreCmsPintuanRulePartial.cs │ ├── Promotion │ │ ├── CoreCmsCoupon.cs │ │ ├── CoreCmsCouponPartial.cs │ │ ├── CoreCmsPromotion.cs │ │ ├── CoreCmsPromotionCondition.cs │ │ ├── CoreCmsPromotionPartial.cs │ │ ├── CoreCmsPromotionRecord.cs │ │ └── CoreCmsPromotionResult.cs │ ├── Service │ │ ├── CoreCmsServices.cs │ │ ├── CoreCmsServicesPartial.cs │ │ ├── CoreCmsUserServicesOrder.cs │ │ ├── CoreCmsUserServicesOrderPartial.cs │ │ ├── CoreCmsUserServicesTicket.cs │ │ ├── CoreCmsUserServicesTicketPartial.cs │ │ ├── CoreCmsUserServicesTicketVerificationLog.cs │ │ └── CoreCmsUserServicesTicketVerificationLogPartial.cs │ ├── Shop │ │ ├── CoreCmsArea.cs │ │ ├── CoreCmsClerk.cs │ │ ├── CoreCmsImages.cs │ │ ├── CoreCmsLogistics.cs │ │ ├── CoreCmsNotice.cs │ │ ├── CoreCmsPages.cs │ │ ├── CoreCmsPagesItems.cs │ │ ├── CoreCmsServiceDescription.cs │ │ ├── CoreCmsSetting.cs │ │ ├── CoreCmsShip.cs │ │ ├── CoreCmsShipPartial.cs │ │ ├── CoreCmsStore.cs │ │ └── CoreCmsStorePartial.cs │ ├── Stock │ │ ├── CoreCmsStock.cs │ │ ├── CoreCmsStockLog.cs │ │ ├── CoreCmsStockLogPartial.cs │ │ └── CoreCmsStockPartial.cs │ ├── System │ │ ├── SysDictionary.cs │ │ ├── SysDictionaryData.cs │ │ ├── SysLoginRecord.cs │ │ ├── SysMenu.cs │ │ ├── SysNLogRecords.cs │ │ ├── SysOperRecord.cs │ │ ├── SysOrganization.cs │ │ ├── SysRole.cs │ │ ├── SysRoleMenu.cs │ │ ├── SysRoleMenuPartial.cs │ │ ├── SysTaskLog.cs │ │ ├── SysUser.cs │ │ ├── SysUserPartial.cs │ │ └── SysUserRole.cs │ ├── User │ │ ├── CoreCmsLoginLog.cs │ │ ├── CoreCmsUser.cs │ │ ├── CoreCmsUserBalance.cs │ │ ├── CoreCmsUserBalancePartial.cs │ │ ├── CoreCmsUserBankCard.cs │ │ ├── CoreCmsUserBankCardPartial.cs │ │ ├── CoreCmsUserGrade.cs │ │ ├── CoreCmsUserLog.cs │ │ ├── CoreCmsUserPartial.cs │ │ ├── CoreCmsUserPointLog.cs │ │ ├── CoreCmsUserPointLogPartial.cs │ │ ├── CoreCmsUserShip.cs │ │ ├── CoreCmsUserShipPartial.cs │ │ ├── CoreCmsUserTocash.cs │ │ ├── CoreCmsUserTocashPartial.cs │ │ └── CoreCmsUserToken.cs │ ├── View │ │ └── StoreClerkDto.cs │ └── WeChat │ │ ├── CoreCmsUserWeChatInfo.cs │ │ ├── CoreCmsUserWeChatMsgSubscription.cs │ │ ├── CoreCmsUserWeChatMsgSubscriptionSwitch.cs │ │ ├── CoreCmsUserWeChatMsgTemplate.cs │ │ ├── CoreCmsUserWeChatMsgTemplatePartial.cs │ │ ├── CoreCmsWeixinAuthor.cs │ │ ├── CoreCmsWeixinMediaMessage.cs │ │ ├── CoreCmsWeixinMenu.cs │ │ ├── CoreCmsWeixinMessage.cs │ │ └── WeChatAccessToken.cs ├── FromBody │ ├── FMAdvert.cs │ ├── FMAgent.cs │ ├── FMBillAftersales.cs │ ├── FMBillRefund.cs │ ├── FMBillReship.cs │ ├── FMCart.cs │ ├── FMCoupon.cs │ ├── FMData.cs │ ├── FMDistribution.cs │ ├── FMForm.cs │ ├── FMGoods.cs │ ├── FMGroup.cs │ ├── FMId.cs │ ├── FMInsert.cs │ ├── FMLogin.cs │ ├── FMOrder.cs │ ├── FMPage.cs │ ├── FMProducts.cs │ ├── FMReports.cs │ ├── FMSerializeArray.cs │ ├── FMSetting.cs │ ├── FMShare.cs │ ├── FMStock.cs │ ├── FMStore.cs │ ├── FMSysMenu.cs │ ├── FMSysOrganization.cs │ ├── FMTools.cs │ ├── FMUpdate.cs │ ├── FMUser.cs │ ├── FMWxPost.cs │ ├── FmPages.cs │ └── FmPinTuan.cs └── ViewModels │ ├── Api │ ├── KuaiDi100.cs │ └── ShowApi.cs │ ├── Basics │ ├── DbTableInfo.cs │ ├── DictionaryKeyValues.cs │ ├── ErrorViewModel.cs │ ├── IPageList.cs │ ├── LastTimeDetail.cs │ └── PageList.cs │ ├── DTO │ ├── AdvertDto.cs │ ├── Agent │ │ └── AgentRankingDTO.cs │ ├── AreaTreeDto.cs │ ├── AreasDto.cs │ ├── BillAftersalesDto.cs │ ├── BillPaymentsDto.cs │ ├── BillReshipDto.cs │ ├── CKEditorUploadedResult.cs │ ├── CartDto.cs │ ├── CouponDto.cs │ ├── Distribution │ │ ├── DistributionDto.cs │ │ └── DistributionRankingDTO.cs │ ├── FormDto.cs │ ├── ManagerDto.cs │ ├── ManagerLogDto.cs │ ├── OrderDTO.cs │ ├── PagesItemsDto.cs │ ├── RandUser.cs │ ├── SysMenuTreeDto.cs │ ├── TagPintuan.cs │ ├── UserDto.cs │ ├── WxGoodCategoryDto.cs │ ├── WxNameTypeDto.cs │ └── WxNameValueDto.cs │ ├── Echarts │ ├── EchartsSetOption.cs │ └── GetOrdersReportsDbSelectOut.cs │ ├── Excel │ └── CellValueItem.cs │ ├── LogInfo │ ├── LogInfo.cs │ └── RequestInfo.cs │ ├── Options │ └── FilesStorageOptions.cs │ ├── Pay │ ├── AlipayViewModel.cs │ └── WeChatPayViewModel.cs │ ├── QueryMuch │ └── QMAftersalesItems.cs │ ├── Sms │ └── SMSOptions.cs │ └── UI │ ├── AdminUiCallBack.cs │ ├── AdminUiMenu.cs │ ├── DTree.cs │ ├── EnumEntity.cs │ ├── ErrorViewModel.cs │ ├── ReportsBack.cs │ └── WebApiCallBack.cs ├── CoreCms.Net.RedisMQ ├── CoreCms.Net.RedisMQ.csproj └── Subscribe │ ├── AfterSalesReviewSubscribe.cs │ ├── LogingSubscribe.cs │ ├── OrderAgentOrDistributionSubscribe.cs │ ├── OrderAutomaticDeliverySubscribe.cs │ ├── OrderFinishCommandSubscribe.cs │ ├── OrderPrintSubscribe.cs │ ├── SendWxTemplateMessageSubscribe.cs │ ├── UserSubscribe.cs │ └── WeChatPayNoticeSubscribe.cs ├── CoreCms.Net.Repository ├── Advert │ ├── CoreCmsAdvertPositionRepository.cs │ └── CoreCmsAdvertisementRepository.cs ├── Agent │ ├── CoreCmsAgentGoodsRepository.cs │ ├── CoreCmsAgentGradeRepository.cs │ ├── CoreCmsAgentOrderRepository.cs │ ├── CoreCmsAgentProductsRepository.cs │ └── CoreCmsAgentRepository.cs ├── Api │ └── CoreCmsApiAccessTokenRepository.cs ├── Article │ ├── CoreCmsArticleRepository.cs │ └── CoreCmsArticleTypeRepository.cs ├── BaseRepository.cs ├── Bill │ ├── CoreCmsBillAftersalesImagesRepository.cs │ ├── CoreCmsBillAftersalesItemRepository.cs │ ├── CoreCmsBillAftersalesRepository.cs │ ├── CoreCmsBillDeliveryItemRepository.cs │ ├── CoreCmsBillDeliveryRepository.cs │ ├── CoreCmsBillLadingRepository.cs │ ├── CoreCmsBillPaymentsRepository.cs │ ├── CoreCmsBillRefundRepository.cs │ ├── CoreCmsBillReshipItemRepository.cs │ └── CoreCmsBillReshipRepository.cs ├── Cart │ └── CoreCmsCartRepository.cs ├── CodeGenerator │ └── CodeGeneratorRepository.cs ├── Com │ └── CoreCmsLabelRepository.cs ├── CoreCms.Net.Repository.csproj ├── Distribution │ ├── CoreCmsDistributionConditionRepository.cs │ ├── CoreCmsDistributionGradeRepository.cs │ ├── CoreCmsDistributionOrderRepository.cs │ ├── CoreCmsDistributionRepository.cs │ └── CoreCmsDistributionResultRepository.cs ├── Financial │ ├── CoreCmsInvoiceRecordRepository.cs │ ├── CoreCmsInvoiceRepository.cs │ ├── CoreCmsPaymentsRepository.cs │ └── CoreCmsReportsRepository.cs ├── Good │ ├── CoreCmsBrandRepository.cs │ ├── CoreCmsGoodsBrowsingRepository.cs │ ├── CoreCmsGoodsCategoryExtendRepository.cs │ ├── CoreCmsGoodsCategoryRepository.cs │ ├── CoreCmsGoodsCollectionRepository.cs │ ├── CoreCmsGoodsCommentRepository.cs │ ├── CoreCmsGoodsGradeRepository.cs │ ├── CoreCmsGoodsParamsRepository.cs │ ├── CoreCmsGoodsRepository.cs │ ├── CoreCmsGoodsTypeSpecRepository.cs │ ├── CoreCmsGoodsTypeSpecValueRepository.cs │ ├── CoreCmsProductsDistributionRepository.cs │ └── CoreCmsProductsRepository.cs ├── IntelligentForms │ ├── CoreCmsFormItemRepository.cs │ ├── CoreCmsFormRepository.cs │ ├── CoreCmsFormSubmitDetailRepository.cs │ └── CoreCmsFormSubmitRepository.cs ├── Message │ ├── CoreCmsMessageCenterRepository.cs │ ├── CoreCmsMessageRepository.cs │ └── CoreCmsSmsRepository.cs ├── Order │ ├── CoreCmsOrderItemRepository.cs │ ├── CoreCmsOrderLogRepository.cs │ └── CoreCmsOrderRepository.cs ├── Pay │ ├── AliPayRepository.cs │ ├── BalancePayRepository.cs │ ├── OfflinePayRepository.cs │ └── WeChatPayRepository.cs ├── Pintuan │ ├── CoreCmsPintuanGoodsRepository.cs │ ├── CoreCmsPintuanRecordRepository.cs │ └── CoreCmsPintuanRuleRepository.cs ├── Promotion │ ├── CoreCmsCouponRepository.cs │ ├── CoreCmsPromotionConditionRepository.cs │ ├── CoreCmsPromotionRecordRepository.cs │ ├── CoreCmsPromotionRepository.cs │ └── CoreCmsPromotionResultRepository.cs ├── Service │ ├── CoreCmsServicesRepository.cs │ ├── CoreCmsUserServicesOrderRepository.cs │ ├── CoreCmsUserServicesTicketRepository.cs │ └── CoreCmsUserServicesTicketVerificationLogRepository.cs ├── Shop │ ├── CoreCmsAreaRepository.cs │ ├── CoreCmsClerkRepository.cs │ ├── CoreCmsLogisticsRepository.cs │ ├── CoreCmsNoticeRepository.cs │ ├── CoreCmsPagesItemsRepository.cs │ ├── CoreCmsPagesRepository.cs │ ├── CoreCmsServiceDescriptionRepository.cs │ ├── CoreCmsSettingRepository.cs │ ├── CoreCmsShipRepository.cs │ └── CoreCmsStoreRepository.cs ├── SqlSugarExtensions.cs ├── Stock │ ├── CoreCmsStockLogRepository.cs │ └── CoreCmsStockRepository.cs ├── System │ ├── SysDictionaryDataRepository.cs │ ├── SysDictionaryRepository.cs │ ├── SysLoginRecordRepository.cs │ ├── SysMenuRepository.cs │ ├── SysNLogRecordsRepository.cs │ ├── SysOperRecordRepository.cs │ ├── SysOrganizationRepository.cs │ ├── SysRoleMenuRepository.cs │ ├── SysRoleRepository.cs │ ├── SysTaskLogRepository.cs │ ├── SysUserRepository.cs │ └── SysUserRoleRepository.cs ├── UnitOfWork │ └── UnitOfWork.cs ├── User │ ├── CoreCmsUserBalanceRepository.cs │ ├── CoreCmsUserBankCardRepository.cs │ ├── CoreCmsUserGradeRepository.cs │ ├── CoreCmsUserLogRepository.cs │ ├── CoreCmsUserPointLogRepository.cs │ ├── CoreCmsUserRepository.cs │ ├── CoreCmsUserShipRepository.cs │ └── CoreCmsUserTocashRepository.cs └── WeChat │ ├── CoreCmsUserWeChatInfoRepository.cs │ ├── CoreCmsUserWeChatMsgSubscriptionRepository.cs │ ├── CoreCmsUserWeChatMsgSubscriptionSwitchRepository.cs │ ├── CoreCmsUserWeChatMsgTemplateRepository.cs │ └── WeChatAccessTokenRepository.cs ├── CoreCms.Net.Services ├── Advert │ ├── CoreCmsAdvertPositionServices.cs │ └── CoreCmsAdvertisementServices.cs ├── Agent │ ├── CoreCmsAgentGoodsServices.cs │ ├── CoreCmsAgentGradeServices.cs │ ├── CoreCmsAgentOrderServices.cs │ ├── CoreCmsAgentProductsServices.cs │ └── CoreCmsAgentServices.cs ├── Api │ └── CoreCmsApiAccessTokenServices.cs ├── Article │ ├── CoreCmsArticleServices.cs │ └── CoreCmsArticleTypeServices.cs ├── BaseServices.cs ├── Bill │ ├── CoreCmsBillAftersalesImagesServices.cs │ ├── CoreCmsBillAftersalesItemServices.cs │ ├── CoreCmsBillAftersalesServices.cs │ ├── CoreCmsBillDeliveryItemServices.cs │ ├── CoreCmsBillDeliveryServices.cs │ ├── CoreCmsBillLadingServices.cs │ ├── CoreCmsBillPaymentsServices.cs │ ├── CoreCmsBillRefundServices.cs │ ├── CoreCmsBillReshipItemServices.cs │ └── CoreCmsBillReshipServices.cs ├── Cart │ └── CoreCmsCartServices.cs ├── CodeGenerator │ └── CodeGeneratorServices.cs ├── Com │ ├── CoreCmsLabelServices.cs │ └── ToolsServices.cs ├── CoreCms.Net.Services.csproj ├── Distribution │ ├── CoreCmsDistributionConditionServices.cs │ ├── CoreCmsDistributionGradeServices.cs │ ├── CoreCmsDistributionOrderServices.cs │ ├── CoreCmsDistributionResultServices.cs │ └── CoreCmsDistributionServices.cs ├── Financial │ ├── CoreCmsInvoiceRecordServices.cs │ ├── CoreCmsInvoiceServices.cs │ ├── CoreCmsPaymentsServices.cs │ └── CoreCmsReportsServices.cs ├── Good │ ├── CoreCmsBrandServices.cs │ ├── CoreCmsGoodsBrowsingServices.cs │ ├── CoreCmsGoodsCategoryExtendServices.cs │ ├── CoreCmsGoodsCategoryServices.cs │ ├── CoreCmsGoodsCollectionServices.cs │ ├── CoreCmsGoodsCommentServices.cs │ ├── CoreCmsGoodsGradeServices.cs │ ├── CoreCmsGoodsParamsServices.cs │ ├── CoreCmsGoodsServices.cs │ ├── CoreCmsGoodsTypeSpecServices.cs │ ├── CoreCmsGoodsTypeSpecValueServices.cs │ ├── CoreCmsProductsDistributionServices.cs │ └── CoreCmsProductsServices.cs ├── IntelligentForms │ ├── CoreCmsFormItemServices.cs │ ├── CoreCmsFormServices.cs │ ├── CoreCmsFormSubmitDetailServices.cs │ └── CoreCmsFormSubmitServices.cs ├── Message │ ├── CoreCmsMessageCenterServices.cs │ ├── CoreCmsMessageServices.cs │ └── CoreCmsSmsServices.cs ├── Order │ ├── CoreCmsOrderItemServices.cs │ ├── CoreCmsOrderLogServices.cs │ └── CoreCmsOrderServices.cs ├── Pay │ ├── AliPayServices.cs │ ├── BalancePayServices.cs │ ├── OfflinePayServices.cs │ └── WeChatPayServices.cs ├── Pintuan │ ├── CoreCmsPintuanGoodsServices.cs │ ├── CoreCmsPintuanRecordServices.cs │ └── CoreCmsPintuanRuleServices.cs ├── Promotion │ ├── CoreCmsCouponServices.cs │ ├── CoreCmsPromotionConditionServices.cs │ ├── CoreCmsPromotionRecordServices.cs │ ├── CoreCmsPromotionResultServices.cs │ └── CoreCmsPromotionServices.cs ├── Service │ ├── CoreCmsServicesServices.cs │ ├── CoreCmsUserServicesOrderServices.cs │ ├── CoreCmsUserServicesTicketServices.cs │ └── CoreCmsUserServicesTicketVerificationLogServices.cs ├── Share │ └── CoreCmsShareServices.cs ├── Shop │ ├── CoreCmsAreaServices.cs │ ├── CoreCmsClerkServices.cs │ ├── CoreCmsLogisticsServices.cs │ ├── CoreCmsNoticeServices.cs │ ├── CoreCmsPagesItemsServices.cs │ ├── CoreCmsPagesServices.cs │ ├── CoreCmsServiceDescriptionServices.cs │ ├── CoreCmsSettingServices.cs │ ├── CoreCmsShipServices.cs │ └── CoreCmsStoreServices.cs ├── Stock │ ├── CoreCmsStockLogServices.cs │ └── CoreCmsStockServices.cs ├── System │ ├── SysDictionaryDataServices.cs │ ├── SysDictionaryServices.cs │ ├── SysLoginRecordServices.cs │ ├── SysMenuServices.cs │ ├── SysNLogRecordsServices.cs │ ├── SysOperRecordServices.cs │ ├── SysOrganizationServices.cs │ ├── SysRoleMenuServices.cs │ ├── SysRoleServices.cs │ ├── SysTaskLogServices.cs │ ├── SysUserRoleServices.cs │ └── SysUserServices.cs ├── User │ ├── CoreCmsUserBalanceServices.cs │ ├── CoreCmsUserBankCardServices.cs │ ├── CoreCmsUserGradeServices.cs │ ├── CoreCmsUserLogServices.cs │ ├── CoreCmsUserPointLogServices.cs │ ├── CoreCmsUserServices.cs │ ├── CoreCmsUserShipServices.cs │ └── CoreCmsUserTocashServices.cs └── WeChat │ ├── CoreCmsUserWeChatInfoServices.cs │ ├── CoreCmsUserWeChatMsgSubscriptionServices.cs │ ├── CoreCmsUserWeChatMsgSubscriptionSwitchServices.cs │ ├── CoreCmsUserWeChatMsgTemplateServices.cs │ └── WeChatAccessTokenServices.cs ├── CoreCms.Net.Swagger ├── CoreCms.Net.Swagger.csproj ├── CustomApiVersion.cs └── CustomRouteAttribute.cs ├── CoreCms.Net.Task ├── AutoCancelOrderJob.cs ├── AutoCanclePintuanJob.cs ├── AutoSignOrderJob.cs ├── CompleteOrderJob.cs ├── CoreCms.Net.Task.csproj ├── EvaluateOrderJob.cs ├── HangfireDispose.cs ├── RefreshWeChatAccessTokenJob.cs ├── RemindOrderPayJob.cs └── RemoveOperationLogJob.cs ├── CoreCms.Net.Uni-App ├── CoreCms.Net.Uni-App.csproj ├── CoreShop │ ├── .hbuilderx │ │ └── launch.json │ ├── App.vue │ ├── common │ │ ├── mixins │ │ │ └── mixinsHelper.js │ │ ├── request │ │ │ ├── http.api.js │ │ │ └── http.interceptor.js │ │ ├── setting │ │ │ ├── constVarsHelper.js │ │ │ └── coreThemeHelper.js │ │ ├── store │ │ │ └── index.js │ │ └── utils │ │ │ ├── commonHelper.js │ │ │ ├── dbHelper.js │ │ │ ├── uploadHelper.js │ │ │ └── uqrcode.js │ ├── components │ │ ├── coreshop-copyright │ │ │ └── coreshop-copyright.vue │ │ ├── coreshop-fab │ │ │ └── coreshop-fab.vue │ │ ├── coreshop-login-modal │ │ │ └── coreshop-login-modal.vue │ │ ├── coreshop-modal-img │ │ │ └── coreshop-modal-img.vue │ │ ├── coreshop-navbar-slot │ │ │ └── coreshop-navbar-slot.vue │ │ ├── coreshop-page │ │ │ ├── coreshop-adpop.vue │ │ │ ├── coreshop-article.vue │ │ │ ├── coreshop-articleClassify.vue │ │ │ ├── coreshop-blank.vue │ │ │ ├── coreshop-content.vue │ │ │ ├── coreshop-coupon.vue │ │ │ ├── coreshop-goodTabBar.vue │ │ │ ├── coreshop-goods.vue │ │ │ ├── coreshop-groupPurchase.vue │ │ │ ├── coreshop-imgSingle.vue │ │ │ ├── coreshop-imgSlide.vue │ │ │ ├── coreshop-imgWindow.vue │ │ │ ├── coreshop-navBar.vue │ │ │ ├── coreshop-notice.vue │ │ │ ├── coreshop-pinTuan.vue │ │ │ ├── coreshop-record.vue │ │ │ ├── coreshop-search.vue │ │ │ ├── coreshop-service.vue │ │ │ ├── coreshop-tabbar.vue │ │ │ ├── coreshop-textarea.vue │ │ │ ├── coreshop-video.vue │ │ │ └── coreshop.vue │ │ ├── coreshop-share │ │ │ └── shareByWx.vue │ │ └── coreshop-spec │ │ │ └── coreshop-spec.vue │ ├── index.html │ ├── main.js │ ├── manifest.json │ ├── package-lock.json │ ├── pages.json │ ├── pages │ │ ├── activity │ │ │ ├── groupBuying │ │ │ │ ├── details │ │ │ │ │ ├── details.scss │ │ │ │ │ └── details.vue │ │ │ │ └── list │ │ │ │ │ ├── list.scss │ │ │ │ │ └── list.vue │ │ │ ├── pinTuan │ │ │ │ ├── details │ │ │ │ │ ├── details.scss │ │ │ │ │ └── details.vue │ │ │ │ └── list │ │ │ │ │ ├── list.scss │ │ │ │ │ └── list.vue │ │ │ └── seckill │ │ │ │ ├── details │ │ │ │ └── details.vue │ │ │ │ └── list │ │ │ │ ├── list.scss │ │ │ │ └── list.vue │ │ ├── article │ │ │ ├── details │ │ │ │ ├── details.scss │ │ │ │ └── details.vue │ │ │ └── list │ │ │ │ ├── list.scss │ │ │ │ └── list.vue │ │ ├── category │ │ │ ├── index │ │ │ │ ├── index.scss │ │ │ │ └── index.vue │ │ │ └── list │ │ │ │ ├── list.scss │ │ │ │ └── list.vue │ │ ├── coupon │ │ │ ├── coupon.scss │ │ │ └── coupon.vue │ │ ├── form │ │ │ └── details │ │ │ │ ├── details.scss │ │ │ │ └── details.vue │ │ ├── goods │ │ │ ├── goodComments │ │ │ │ └── goodComments.vue │ │ │ └── goodDetails │ │ │ │ └── goodDetails.vue │ │ ├── index │ │ │ ├── cart │ │ │ │ ├── cart.scss │ │ │ │ └── cart.vue │ │ │ ├── custom │ │ │ │ └── custom.vue │ │ │ ├── default │ │ │ │ └── default.vue │ │ │ └── member │ │ │ │ ├── member.scss │ │ │ │ └── member.vue │ │ ├── map │ │ │ └── map.vue │ │ ├── member │ │ │ ├── address │ │ │ │ ├── index │ │ │ │ │ └── index.vue │ │ │ │ └── list │ │ │ │ │ ├── list.scss │ │ │ │ │ └── list.vue │ │ │ ├── afterSales │ │ │ │ ├── detail │ │ │ │ │ ├── detail.scss │ │ │ │ │ └── detail.vue │ │ │ │ ├── list │ │ │ │ │ └── list.vue │ │ │ │ └── submit │ │ │ │ │ ├── submit.scss │ │ │ │ │ └── submit.vue │ │ │ ├── agent │ │ │ │ ├── agreement │ │ │ │ │ ├── agreement.scss │ │ │ │ │ └── agreement.vue │ │ │ │ ├── apply │ │ │ │ │ ├── apply.scss │ │ │ │ │ └── apply.vue │ │ │ │ ├── applyState │ │ │ │ │ ├── applyState.scss │ │ │ │ │ └── applyState.vue │ │ │ │ ├── commissionDetails │ │ │ │ │ ├── commissionDetails.scss │ │ │ │ │ └── commissionDetails.vue │ │ │ │ ├── index │ │ │ │ │ ├── index.scss │ │ │ │ │ └── index.vue │ │ │ │ ├── myStore │ │ │ │ │ ├── myStore.scss │ │ │ │ │ └── myStore.vue │ │ │ │ ├── order │ │ │ │ │ ├── order.scss │ │ │ │ │ └── order.vue │ │ │ │ ├── panel │ │ │ │ │ ├── panel.scss │ │ │ │ │ └── panel.vue │ │ │ │ ├── rankings │ │ │ │ │ ├── rankings.scss │ │ │ │ │ └── rankings.vue │ │ │ │ ├── shareLog │ │ │ │ │ ├── shareLog.scss │ │ │ │ │ └── shareLog.vue │ │ │ │ ├── storeSetting │ │ │ │ │ └── storeSetting.vue │ │ │ │ └── team │ │ │ │ │ ├── team.scss │ │ │ │ │ └── team.vue │ │ │ ├── balance │ │ │ │ ├── addBankCard │ │ │ │ │ └── addBankCard.vue │ │ │ │ ├── bankcard │ │ │ │ │ ├── bankcard.scss │ │ │ │ │ └── bankcard.vue │ │ │ │ ├── cashlist │ │ │ │ │ └── cashlist.vue │ │ │ │ ├── details │ │ │ │ │ └── details.vue │ │ │ │ ├── index │ │ │ │ │ ├── index.scss │ │ │ │ │ └── index.vue │ │ │ │ ├── recharge │ │ │ │ │ └── recharge.vue │ │ │ │ └── withdrawCash │ │ │ │ │ ├── withdrawCash.scss │ │ │ │ │ └── withdrawCash.vue │ │ │ ├── collection │ │ │ │ ├── index.scss │ │ │ │ └── index.vue │ │ │ ├── coupon │ │ │ │ ├── index.scss │ │ │ │ └── index.vue │ │ │ ├── distribution │ │ │ │ ├── agreement │ │ │ │ │ ├── agreement.scss │ │ │ │ │ └── agreement.vue │ │ │ │ ├── apply │ │ │ │ │ ├── apply.scss │ │ │ │ │ └── apply.vue │ │ │ │ ├── applyState │ │ │ │ │ ├── applyState.scss │ │ │ │ │ └── applyState.vue │ │ │ │ ├── commissionDetails │ │ │ │ │ ├── commissionDetails.scss │ │ │ │ │ └── commissionDetails.vue │ │ │ │ ├── index │ │ │ │ │ ├── index.scss │ │ │ │ │ └── index.vue │ │ │ │ ├── myStore │ │ │ │ │ ├── myStore.scss │ │ │ │ │ └── myStore.vue │ │ │ │ ├── order │ │ │ │ │ ├── order.scss │ │ │ │ │ └── order.vue │ │ │ │ ├── panel │ │ │ │ │ ├── panel.scss │ │ │ │ │ └── panel.vue │ │ │ │ ├── rankings │ │ │ │ │ ├── rankings.scss │ │ │ │ │ └── rankings.vue │ │ │ │ ├── shareLog │ │ │ │ │ ├── shareLog.scss │ │ │ │ │ └── shareLog.vue │ │ │ │ ├── storeSetting │ │ │ │ │ └── storeSetting.vue │ │ │ │ └── team │ │ │ │ │ ├── team.scss │ │ │ │ │ └── team.vue │ │ │ ├── history │ │ │ │ ├── index.scss │ │ │ │ └── index.vue │ │ │ ├── integral │ │ │ │ ├── index.scss │ │ │ │ └── index.vue │ │ │ ├── invite │ │ │ │ ├── index.scss │ │ │ │ ├── index.vue │ │ │ │ └── list.vue │ │ │ ├── invoice │ │ │ │ ├── index.scss │ │ │ │ └── index.vue │ │ │ ├── merchant │ │ │ │ ├── detail │ │ │ │ │ ├── detail.scss │ │ │ │ │ └── detail.vue │ │ │ │ ├── index │ │ │ │ │ ├── index.scss │ │ │ │ │ └── index.vue │ │ │ │ ├── search │ │ │ │ │ ├── index.scss │ │ │ │ │ └── index.vue │ │ │ │ ├── serviceVerification │ │ │ │ │ ├── index.vue │ │ │ │ │ └── list.vue │ │ │ │ ├── storeList │ │ │ │ │ ├── storeList.scss │ │ │ │ │ └── storeList.vue │ │ │ │ └── takeDelivery │ │ │ │ │ ├── index.vue │ │ │ │ │ └── list.vue │ │ │ ├── order │ │ │ │ ├── detail │ │ │ │ │ ├── detail.scss │ │ │ │ │ └── detail.vue │ │ │ │ ├── evaluate │ │ │ │ │ ├── evaluate.scss │ │ │ │ │ └── evaluate.vue │ │ │ │ ├── expressDelivery │ │ │ │ │ ├── expressDelivery.scss │ │ │ │ │ └── expressDelivery.vue │ │ │ │ ├── index │ │ │ │ │ └── index.vue │ │ │ │ └── invitationGroup │ │ │ │ │ ├── invitationGroup.scss │ │ │ │ │ └── invitationGroup.vue │ │ │ ├── serviceOrder │ │ │ │ ├── details │ │ │ │ │ ├── details.scss │ │ │ │ │ └── details.vue │ │ │ │ └── index │ │ │ │ │ └── index.vue │ │ │ └── setting │ │ │ │ ├── index │ │ │ │ └── index.vue │ │ │ │ ├── subscription │ │ │ │ └── index.vue │ │ │ │ └── userInfo │ │ │ │ ├── index.vue │ │ │ │ └── password.vue │ │ ├── payment │ │ │ ├── components │ │ │ │ └── coreshop-paymentsByWx.vue │ │ │ ├── pay │ │ │ │ ├── pay.scss │ │ │ │ └── pay.vue │ │ │ ├── result │ │ │ │ ├── result.scss │ │ │ │ └── result.vue │ │ │ └── waiting │ │ │ │ ├── waiting.scss │ │ │ │ └── waiting.vue │ │ ├── placeOrder │ │ │ ├── index │ │ │ │ ├── index.scss │ │ │ │ └── index.vue │ │ │ ├── invoice │ │ │ │ ├── invoice.scss │ │ │ │ └── invoice.vue │ │ │ └── storeList │ │ │ │ ├── storeList.scss │ │ │ │ └── storeList.vue │ │ ├── search │ │ │ └── search.vue │ │ ├── serviceGoods │ │ │ ├── details │ │ │ │ ├── details.scss │ │ │ │ └── details.vue │ │ │ └── index │ │ │ │ └── index.vue │ │ ├── share │ │ │ ├── jump │ │ │ │ └── jump.vue │ │ │ └── sharePoster │ │ │ │ ├── sharePoster.scss │ │ │ │ └── sharePoster.vue │ │ ├── storeMap │ │ │ ├── storeMap.scss │ │ │ └── storeMap.vue │ │ └── template.vue │ ├── static │ │ ├── images │ │ │ ├── common │ │ │ │ ├── address-line.png │ │ │ │ ├── anc.png │ │ │ │ ├── are.png │ │ │ │ ├── arg.png │ │ │ │ ├── bg.png │ │ │ │ ├── camera.png │ │ │ │ ├── del.png │ │ │ │ ├── empty-banner.png │ │ │ │ ├── empty.png │ │ │ │ ├── invoice.png │ │ │ │ ├── loading.gif │ │ │ │ ├── menu.png │ │ │ │ ├── seller-content.png │ │ │ │ ├── share-friend.png │ │ │ │ ├── share-poster.png │ │ │ │ ├── tab-ic-hom-selected.png │ │ │ │ ├── tab-ic-hom-unselected.png │ │ │ │ ├── tab-ic-me-selected.png │ │ │ │ ├── tab-ic-me-unselected.png │ │ │ │ ├── user_black.png │ │ │ │ └── yl.png │ │ │ ├── coupon │ │ │ │ ├── coupon-element.png │ │ │ │ └── element-ic.png │ │ │ ├── distribution │ │ │ │ ├── 01.png │ │ │ │ ├── 02.png │ │ │ │ ├── 03.png │ │ │ │ ├── distribution_icon1.png │ │ │ │ ├── distribution_icon2.png │ │ │ │ ├── distribution_icon3.png │ │ │ │ ├── distribution_icon4.png │ │ │ │ ├── distribution_icon5.png │ │ │ │ ├── distribution_icon6.png │ │ │ │ ├── distribution_icon7.png │ │ │ │ ├── distribution_icon8.png │ │ │ │ ├── wxh5.png │ │ │ │ └── wxxcx.png │ │ │ ├── good │ │ │ │ └── titlebg.png │ │ │ ├── indexMenus │ │ │ │ ├── index01.png │ │ │ │ ├── index01_1.png │ │ │ │ ├── index02.png │ │ │ │ ├── index02_1.png │ │ │ │ ├── index03.png │ │ │ │ ├── index03_1.png │ │ │ │ ├── index04.png │ │ │ │ └── index04_1.png │ │ │ ├── login │ │ │ │ └── nologin_bg.png │ │ │ ├── logo │ │ │ │ ├── logo.png │ │ │ │ └── logo2.png │ │ │ ├── map │ │ │ │ └── location.png │ │ │ ├── my │ │ │ │ ├── 1.png │ │ │ │ └── 2.png │ │ │ ├── payments │ │ │ │ ├── alipay.png │ │ │ │ ├── balancepay.png │ │ │ │ ├── offline.png │ │ │ │ ├── pay.png │ │ │ │ ├── wait-pay.png │ │ │ │ └── wechatpay.png │ │ │ └── pinTuan │ │ │ │ └── pinTuanListBg.png │ │ └── style │ │ │ ├── coreCommon.scss │ │ │ └── coreTheme.scss │ ├── uni.scss │ └── uview-ui │ │ ├── LICENSE │ │ ├── README.md │ │ ├── components │ │ ├── u-action-sheet │ │ │ └── u-action-sheet.vue │ │ ├── u-alert-tips │ │ │ └── u-alert-tips.vue │ │ ├── u-avatar-cropper │ │ │ ├── u-avatar-cropper.vue │ │ │ └── weCropper.js │ │ ├── u-avatar │ │ │ └── u-avatar.vue │ │ ├── u-back-top │ │ │ └── u-back-top.vue │ │ ├── u-badge │ │ │ └── u-badge.vue │ │ ├── u-button │ │ │ └── u-button.vue │ │ ├── u-calendar │ │ │ └── u-calendar.vue │ │ ├── u-car-keyboard │ │ │ └── u-car-keyboard.vue │ │ ├── u-card │ │ │ └── u-card.vue │ │ ├── u-cell-group │ │ │ └── u-cell-group.vue │ │ ├── u-cell-item │ │ │ └── u-cell-item.vue │ │ ├── u-checkbox-group │ │ │ └── u-checkbox-group.vue │ │ ├── u-checkbox │ │ │ └── u-checkbox.vue │ │ ├── u-circle-progress │ │ │ ├── u-circle-progress.vue │ │ │ └── u-line-progress │ │ │ │ └── u-line-progress.vue │ │ ├── u-col │ │ │ └── u-col.vue │ │ ├── u-collapse-item │ │ │ └── u-collapse-item.vue │ │ ├── u-collapse │ │ │ └── u-collapse.vue │ │ ├── u-column-notice │ │ │ └── u-column-notice.vue │ │ ├── u-count-down │ │ │ └── u-count-down.vue │ │ ├── u-count-to │ │ │ └── u-count-to.vue │ │ ├── u-divider │ │ │ └── u-divider.vue │ │ ├── u-dropdown-item │ │ │ └── u-dropdown-item.vue │ │ ├── u-dropdown │ │ │ └── u-dropdown.vue │ │ ├── u-empty │ │ │ └── u-empty.vue │ │ ├── u-field │ │ │ └── u-field.vue │ │ ├── u-form-item │ │ │ └── u-form-item.vue │ │ ├── u-form │ │ │ └── u-form.vue │ │ ├── u-full-screen │ │ │ └── u-full-screen.vue │ │ ├── u-gap │ │ │ └── u-gap.vue │ │ ├── u-grid-item │ │ │ └── u-grid-item.vue │ │ ├── u-grid │ │ │ └── u-grid.vue │ │ ├── u-icon │ │ │ └── u-icon.vue │ │ ├── u-image │ │ │ └── u-image.vue │ │ ├── u-index-anchor │ │ │ └── u-index-anchor.vue │ │ ├── u-index-list │ │ │ └── u-index-list.vue │ │ ├── u-input │ │ │ └── u-input.vue │ │ ├── u-keyboard │ │ │ └── u-keyboard.vue │ │ ├── u-lazy-load │ │ │ └── u-lazy-load.vue │ │ ├── u-line-progress │ │ │ └── u-line-progress.vue │ │ ├── u-line │ │ │ └── u-line.vue │ │ ├── u-link │ │ │ └── u-link.vue │ │ ├── u-loading-page │ │ │ └── u-loading-page.vue │ │ ├── u-loading │ │ │ └── u-loading.vue │ │ ├── u-loadmore │ │ │ └── u-loadmore.vue │ │ ├── u-mask │ │ │ └── u-mask.vue │ │ ├── u-message-input │ │ │ └── u-message-input.vue │ │ ├── u-modal │ │ │ └── u-modal.vue │ │ ├── u-navbar │ │ │ └── u-navbar.vue │ │ ├── u-no-network │ │ │ └── u-no-network.vue │ │ ├── u-notice-bar │ │ │ └── u-notice-bar.vue │ │ ├── u-number-box │ │ │ └── u-number-box.vue │ │ ├── u-number-keyboard │ │ │ └── u-number-keyboard.vue │ │ ├── u-parse │ │ │ ├── libs │ │ │ │ ├── CssHandler.js │ │ │ │ ├── MpHtmlParser.js │ │ │ │ ├── config.js │ │ │ │ ├── handler.wxs │ │ │ │ └── trees.vue │ │ │ └── u-parse.vue │ │ ├── u-picker │ │ │ └── u-picker.vue │ │ ├── u-popup │ │ │ └── u-popup.vue │ │ ├── u-radio-group │ │ │ └── u-radio-group.vue │ │ ├── u-radio │ │ │ └── u-radio.vue │ │ ├── u-rate │ │ │ └── u-rate.vue │ │ ├── u-read-more │ │ │ └── u-read-more.vue │ │ ├── u-row-notice │ │ │ └── u-row-notice.vue │ │ ├── u-row │ │ │ └── u-row.vue │ │ ├── u-search │ │ │ └── u-search.vue │ │ ├── u-section │ │ │ └── u-section.vue │ │ ├── u-select │ │ │ └── u-select.vue │ │ ├── u-skeleton │ │ │ └── u-skeleton.vue │ │ ├── u-slider │ │ │ └── u-slider.vue │ │ ├── u-steps │ │ │ └── u-steps.vue │ │ ├── u-sticky │ │ │ └── u-sticky.vue │ │ ├── u-subsection │ │ │ └── u-subsection.vue │ │ ├── u-swipe-action │ │ │ └── u-swipe-action.vue │ │ ├── u-swiper │ │ │ └── u-swiper.vue │ │ ├── u-switch │ │ │ └── u-switch.vue │ │ ├── u-tabbar │ │ │ └── u-tabbar.vue │ │ ├── u-table │ │ │ └── u-table.vue │ │ ├── u-tabs-swiper │ │ │ └── u-tabs-swiper.vue │ │ ├── u-tabs │ │ │ └── u-tabs.vue │ │ ├── u-tag │ │ │ └── u-tag.vue │ │ ├── u-td │ │ │ └── u-td.vue │ │ ├── u-th │ │ │ └── u-th.vue │ │ ├── u-time-line-item │ │ │ └── u-time-line-item.vue │ │ ├── u-time-line │ │ │ └── u-time-line.vue │ │ ├── u-toast │ │ │ └── u-toast.vue │ │ ├── u-top-tips │ │ │ └── u-top-tips.vue │ │ ├── u-tr │ │ │ └── u-tr.vue │ │ ├── u-upload │ │ │ └── u-upload.vue │ │ ├── u-verification-code │ │ │ └── u-verification-code.vue │ │ ├── u-waterfall │ │ │ └── u-waterfall.vue │ │ └── uview-v1 │ │ │ └── uview-v1.vue │ │ ├── iconfont.css │ │ ├── index.js │ │ ├── index.scss │ │ ├── libs │ │ ├── config │ │ │ ├── config.js │ │ │ └── zIndex.js │ │ ├── css │ │ │ ├── color.scss │ │ │ ├── common.scss │ │ │ ├── style.components.scss │ │ │ ├── style.h5.scss │ │ │ ├── style.mp.scss │ │ │ ├── style.nvue.scss │ │ │ └── style.vue.scss │ │ ├── function │ │ │ ├── $parent.js │ │ │ ├── addUnit.js │ │ │ ├── bem.js │ │ │ ├── color.js │ │ │ ├── colorGradient.js │ │ │ ├── debounce.js │ │ │ ├── deepClone.js │ │ │ ├── deepMerge.js │ │ │ ├── getParent.js │ │ │ ├── guid.js │ │ │ ├── md5.js │ │ │ ├── queryParams.js │ │ │ ├── random.js │ │ │ ├── randomArray.js │ │ │ ├── route.js │ │ │ ├── sys.js │ │ │ ├── test.js │ │ │ ├── throttle.js │ │ │ ├── timeFormat.js │ │ │ ├── timeFrom.js │ │ │ ├── toast.js │ │ │ ├── trim.js │ │ │ └── type2icon.js │ │ ├── mixin │ │ │ ├── mixin.js │ │ │ └── mpShare.js │ │ ├── request │ │ │ └── index.js │ │ ├── store │ │ │ └── index.js │ │ └── util │ │ │ ├── area.js │ │ │ ├── async-validator.js │ │ │ ├── city.js │ │ │ ├── emitter.js │ │ │ └── province.js │ │ ├── package.json │ │ └── theme.scss └── resource │ ├── psd │ ├── logo2.png │ ├── logo2.psd │ ├── swiper-1.png │ ├── swiper-1.psd │ ├── swiper-2.png │ ├── swiper-2.psd │ ├── swiper-3.png │ ├── swiper-3.psd │ ├── swiper-background-1.png │ ├── swiper-background-2.png │ └── swiper-background-3.png │ └── static │ └── images │ ├── agent │ ├── applyBg.jpg │ └── applyBg.psd │ ├── common │ ├── FLOWCY.jpg │ ├── camera.png │ ├── close.png │ ├── del.png │ ├── ic-location.png │ ├── ic-unfold.png │ ├── non_real_name.png │ ├── real_name.png │ └── reward.png │ ├── default │ ├── swiper-background-1.png │ ├── swiper-background-2.png │ └── swiper-background-3.png │ ├── distribution │ ├── card_bg.png │ ├── commission_bg1.jpg │ └── commission_card_bg.png │ ├── empty │ ├── address.png │ ├── authority.png │ ├── cart.png │ ├── collect.png │ ├── comment.png │ ├── coupon.png │ ├── data.png │ ├── history.png │ ├── message.png │ ├── messageList.png │ ├── news.png │ ├── order.png │ ├── page.png │ ├── search.png │ └── wifi.png │ ├── logo │ └── logo.png │ ├── merchant │ └── shop_headbg.png │ ├── my │ └── invite-bg.png │ └── reward │ ├── wx.png │ └── zfb.jpg ├── CoreCms.Net.Utility ├── CoreCms.Net.Utility.csproj ├── Extensions │ ├── ConvertObject.cs │ ├── ObjectExtensions.cs │ └── SerializeExtensions.cs └── Helper │ ├── AreaHelper.cs │ ├── ArticleHelper.cs │ ├── CommonHelper.cs │ ├── DateHelper.cs │ ├── EnumHelper.cs │ ├── ExcelHelper.cs │ ├── FormHelper.cs │ ├── GoodsHelper.cs │ ├── HttpHelper.cs │ ├── JsonFileHelper.cs │ ├── MessageHelper.cs │ ├── OrderHelper.cs │ ├── PinTuanHelper.cs │ ├── PromotionHelper.cs │ ├── ReportsHelper.cs │ ├── SKUHelper.cs │ ├── SMSHelper.cs │ ├── ShareHelper.cs │ ├── SysMenuHelper.cs │ ├── SysOrganizationHelper.cs │ ├── UpLoadHelper.cs │ └── UserHelper.cs ├── CoreCms.Net.WeChat.Service ├── Configuration │ ├── EventType.cs │ └── RequestMsgType.cs ├── CoreCms.Net.WeChat.Service.csproj ├── Enums │ └── ReturnCode.cs ├── Mediator │ ├── ImageMessageEventCommandHandler.cs │ ├── TextMessageEventCommandHandler.cs │ └── VoiceMessageEventCommandHandler.cs ├── Models │ ├── DecodedPhoneNumber.cs │ ├── DecodedRunData.cs │ ├── EncryptPostModel.cs │ ├── IEncryptPostModel.cs │ ├── PostModel.cs │ ├── SendWxTemplateMessage.cs │ ├── WaterMark.cs │ ├── WeChatApiCallBack.cs │ └── WeChatUserInfo.cs ├── Options │ └── WechatOptions.cs ├── Services │ └── HttpClients │ │ ├── IWechatApiHttpClientFactory.cs │ │ └── WechatApiHttpClientFactory.cs └── Utilities │ ├── CheckSignature.cs │ ├── Cryptography.cs │ ├── DateTimeHelper.cs │ ├── DocumentExtensions.cs │ ├── EncryptHelper.cs │ ├── RequestUtility.cs │ ├── WXBizMsgCrypt.cs │ ├── WxOfficialHelper.cs │ └── XmlUtility.cs ├── CoreCms.Net.Web.Admin ├── .config │ └── dotnet-tools.json ├── Controllers │ ├── Advert │ │ ├── CoreCmsAdvertPositionController.cs │ │ └── CoreCmsAdvertisementController.cs │ ├── Agent │ │ ├── CoreCmsAgentController.cs │ │ ├── CoreCmsAgentGoodsController.cs │ │ ├── CoreCmsAgentGradeController.cs │ │ ├── CoreCmsAgentOrderController.cs │ │ └── CoreCmsAgentSettingController.cs │ ├── Article │ │ ├── CoreCmsArticleController.cs │ │ └── CoreCmsArticleTypeController.cs │ ├── Com │ │ ├── LoginController.cs │ │ └── ToolsController.cs │ ├── Distribution │ │ ├── CoreCmsDistributionController.cs │ │ ├── CoreCmsDistributionGradeController.cs │ │ ├── CoreCmsDistributionOrderController.cs │ │ ├── CoreCmsDistributionResultController.cs │ │ └── CoreCmsDistributionSettingController.cs │ ├── Financial │ │ ├── CoreCmsBillPaymentsController.cs │ │ ├── CoreCmsBillRefundController.cs │ │ ├── CoreCmsInvoiceController.cs │ │ └── CoreCmsPaymentsController.cs │ ├── Good │ │ ├── CoreCmsBrandController.cs │ │ ├── CoreCmsGoodsCategoryController.cs │ │ ├── CoreCmsGoodsCommentController.cs │ │ ├── CoreCmsGoodsController.cs │ │ ├── CoreCmsGoodsParamsController.cs │ │ ├── CoreCmsGoodsTypeSpecController.cs │ │ └── CoreCmsProductsController.cs │ ├── IntelligentForms │ │ ├── CoreCmsFormController.cs │ │ └── CoreCmsFormSubmitController.cs │ ├── Message │ │ ├── CoreCmsMessageCenterController.cs │ │ ├── CoreCmsSmsController.cs │ │ └── CoreCmsSmsSettingController.cs │ ├── Order │ │ ├── CoreCmsBillAftersalesController.cs │ │ ├── CoreCmsBillDeliveryController.cs │ │ ├── CoreCmsBillLadingController.cs │ │ ├── CoreCmsBillReshipController.cs │ │ └── CoreCmsOrderController.cs │ ├── PinTuan │ │ ├── CoreCmsPintuanRecordController.cs │ │ └── CoreCmsPintuanRuleController.cs │ ├── Promotion │ │ └── CoreCmsPromotionController.cs │ ├── Reports │ │ └── CoreCmsReportsController.cs │ ├── ServiceGoods │ │ ├── CoreCmsServicesController.cs │ │ └── CoreCmsUserServicesOrderController.cs │ ├── Shop │ │ ├── CoreCmsAreaController.cs │ │ ├── CoreCmsLogisticsController.cs │ │ ├── CoreCmsNoticeController.cs │ │ ├── CoreCmsPagesController.cs │ │ ├── CoreCmsPagesItemsController.cs │ │ ├── CoreCmsServiceDescriptionController.cs │ │ ├── CoreCmsSettingController.cs │ │ ├── CoreCmsShipController.cs │ │ └── CoreCmsStoreController.cs │ ├── Stock │ │ ├── CoreCmsStockController.cs │ │ └── CoreCmsStockLogController.cs │ ├── System │ │ ├── CodeGeneratorController.cs │ │ ├── SysDictionaryController.cs │ │ ├── SysDictionaryDataController.cs │ │ ├── SysLoginRecordController.cs │ │ ├── SysMenuController.cs │ │ ├── SysNLogRecordsController.cs │ │ ├── SysOperRecordController.cs │ │ ├── SysOrganizationController.cs │ │ ├── SysRoleController.cs │ │ ├── SysRoleMenuController.cs │ │ ├── SysTaskLogController.cs │ │ ├── SysUserController.cs │ │ └── SysUserRoleController.cs │ ├── User │ │ ├── CoreCmsUserBalanceController.cs │ │ ├── CoreCmsUserController.cs │ │ ├── CoreCmsUserGradeController.cs │ │ └── CoreCmsUserTocashController.cs │ └── WeChat │ │ ├── CoreCmsUserWeChatInfoController.cs │ │ └── CoreCmsUserWeChatMsgTemplateController.cs ├── CoreCms.Net.Web.Admin.csproj ├── Doc.xml ├── Dockerfile ├── Infrastructure │ ├── ApiExplorerIgnores.cs │ ├── GlobalExceptionsFilterForAdmin.cs │ └── RequiredErrorForAdmin.cs ├── NLog.config ├── Program.cs ├── Properties │ └── launchSettings.json ├── WxPayCert │ └── 此处用于存放微信支付证书.txt ├── appsettings.Development.json ├── appsettings.json ├── compilerconfig.json ├── compilerconfig.json.defaults ├── illegalWord │ ├── IllegalKeywords.txt │ └── 说明.txt └── wwwroot │ ├── files │ ├── 2021-05-01 │ │ └── 20210501075941520-CoreCmsBillDelivery导出(查询结果).xls │ └── 2021-05-02 │ │ └── 20210502104200309-数据库表导出.xls │ ├── index.html │ ├── lib │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ ├── ckeditor5 │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── ckeditor.js │ │ ├── ckeditor.js.map │ │ ├── index.html │ │ ├── sample │ │ │ ├── css │ │ │ │ └── sample.css │ │ │ └── img │ │ │ │ ├── bg.png │ │ │ │ ├── github.svg │ │ │ │ ├── logo.svg │ │ │ │ └── umbrellas.jpg │ │ └── translations │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── ast.js │ │ │ ├── az.js │ │ │ ├── bg.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── de-ch.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-gb.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── gu.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── kk.js │ │ │ ├── km.js │ │ │ ├── kn.js │ │ │ ├── ko.js │ │ │ ├── ku.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── ne.js │ │ │ ├── nl.js │ │ │ ├── no.js │ │ │ ├── oc.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── si.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-latn.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tk.js │ │ │ ├── tr.js │ │ │ ├── tt.js │ │ │ ├── ug.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ └── zh.js │ ├── custom │ │ ├── css │ │ │ ├── iconfont.css │ │ │ ├── iconfont.eot │ │ │ ├── iconfont.svg │ │ │ ├── iconfont.ttf │ │ │ ├── iconfont.woff │ │ │ ├── iconfont.woff2 │ │ │ ├── style.css │ │ │ ├── style.less │ │ │ └── style.min.css │ │ ├── element │ │ │ ├── fonts │ │ │ │ ├── element-icons.ttf │ │ │ │ └── element-icons.woff │ │ │ ├── index.css │ │ │ ├── index.js │ │ │ └── main.js │ │ └── js │ │ │ ├── main.js │ │ │ ├── sortable.min.js │ │ │ ├── vue.min.js │ │ │ └── vuedraggable.min.js │ ├── jquery │ │ ├── LICENSE.txt │ │ ├── doT.min.js │ │ ├── jquery-2.1.4.js │ │ ├── jquery-2.1.4.min.js │ │ ├── jquery-3.3.1.js │ │ ├── jquery-3.3.1.min.js │ │ ├── jquery-3.3.1.min.map │ │ ├── jquery.fileDownload.js │ │ ├── jquery.jcarousellite.min.js │ │ ├── jquery.unobtrusive-ajax.js │ │ ├── jquery.unobtrusive-ajax.min.js │ │ ├── jquery.validate-vsdoc.js │ │ ├── jquery.validate.js │ │ ├── jquery.validate.min.js │ │ ├── jquery.validate.unobtrusive.js │ │ ├── jquery.validate.unobtrusive.min.js │ │ └── lazyloadv3.js │ ├── layui │ │ ├── css │ │ │ └── layui.css │ │ ├── font │ │ │ ├── iconfont.eot │ │ │ ├── iconfont.svg │ │ │ ├── iconfont.ttf │ │ │ ├── iconfont.woff │ │ │ └── iconfont.woff2 │ │ └── layui.js │ ├── layuiAdmin │ │ ├── config.js │ │ ├── controller │ │ │ ├── Cropper.css │ │ │ ├── Cropper.js │ │ │ ├── breadcrumb.js │ │ │ ├── common.js │ │ │ ├── contextMenu.js │ │ │ ├── contlist.js │ │ │ ├── coredropdown.css │ │ │ ├── coredropdown.js │ │ │ ├── cropperImg.js │ │ │ ├── iconPicker.js │ │ │ ├── iconSelected.js │ │ │ ├── tableX.js │ │ │ ├── treeTable.css │ │ │ ├── treeTable.js │ │ │ ├── xmSelect.js │ │ │ ├── zTree.js │ │ │ └── zTree │ │ │ │ └── css │ │ │ │ ├── metroStyle │ │ │ │ ├── img │ │ │ │ │ ├── line_conn.png │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── metro.gif │ │ │ │ │ └── metro.png │ │ │ │ └── metroStyle.css │ │ │ │ └── zTreeStyle │ │ │ │ ├── img │ │ │ │ ├── diy │ │ │ │ │ ├── 1_close.png │ │ │ │ │ ├── 1_open.png │ │ │ │ │ ├── 2.png │ │ │ │ │ ├── 3.png │ │ │ │ │ ├── 4.png │ │ │ │ │ ├── 5.png │ │ │ │ │ ├── 6.png │ │ │ │ │ ├── 7.png │ │ │ │ │ ├── 8.png │ │ │ │ │ └── 9.png │ │ │ │ ├── line_conn.gif │ │ │ │ ├── loading.gif │ │ │ │ ├── zTreeStandard.gif │ │ │ │ └── zTreeStandard.png │ │ │ │ └── zTreeStyle.css │ │ ├── index.es5.js │ │ ├── index.es5.min.js │ │ ├── index.js │ │ ├── lib │ │ │ ├── admin.js │ │ │ ├── extend │ │ │ │ ├── coreHelper.js │ │ │ │ ├── dltable.js │ │ │ │ ├── dtree.js │ │ │ │ ├── echarts.js │ │ │ │ ├── echartsTheme.js │ │ │ │ ├── treeGrid.css │ │ │ │ └── treeGrid.js │ │ │ └── view.js │ │ └── style │ │ │ ├── admin.css │ │ │ ├── dtree │ │ │ ├── dtree.css │ │ │ ├── dtree.js │ │ │ ├── font │ │ │ │ ├── dtreefont.css │ │ │ │ ├── dtreefont.eot │ │ │ │ ├── dtreefont.svg │ │ │ │ ├── dtreefont.ttf │ │ │ │ ├── dtreefont.woff │ │ │ │ └── icons.json │ │ │ └── 开发者日志.txt │ │ │ ├── login.css │ │ │ ├── res │ │ │ ├── bg-none.jpg │ │ │ ├── layui-logo.jpg │ │ │ ├── logo-black.png │ │ │ ├── logo.png │ │ │ ├── logo.psd │ │ │ ├── noImage.jpg │ │ │ ├── noImage.psd │ │ │ ├── one-big.png │ │ │ ├── one-small.png │ │ │ ├── template │ │ │ │ ├── character.jpg │ │ │ │ ├── huge.jpg │ │ │ │ └── portrait.png │ │ │ ├── two-small.png │ │ │ ├── userwx_1.jpg │ │ │ ├── userwx_2.jpg │ │ │ ├── userwx_3.jpg │ │ │ ├── userwx_4.jpg │ │ │ ├── userwx_5.jpg │ │ │ └── userwx_6.jpg │ │ │ └── template.css │ ├── lodop │ │ ├── CLodop_Setup_for_Win32NT.exe │ │ ├── LodopFuncs.js │ │ ├── install_lodop32.exe │ │ └── install_lodop64.exe │ └── render-html-to-pdf │ │ ├── html2canvas.bak.js │ │ ├── html2canvas.js │ │ ├── html2canvas.min.js │ │ ├── html2canvas.svg.js │ │ ├── html2canvas.svg.min.js │ │ └── jsPdf.debug.js │ ├── robots.txt │ ├── static │ ├── css │ │ ├── documentEditor.css │ │ ├── documentEditor.less │ │ ├── documentEditor.min.css │ │ ├── login.css │ │ ├── overWrite.css │ │ ├── overWrite.less │ │ └── overWrite.min.css │ ├── images │ │ └── common │ │ │ ├── coreshop.png │ │ │ ├── coreshop.psd │ │ │ ├── empty-banner.png │ │ │ ├── empty.png │ │ │ ├── favicon.ico │ │ │ ├── ic-car.png │ │ │ ├── image-four-column.png │ │ │ ├── image-one-column.png │ │ │ ├── image-one-left.png │ │ │ ├── image-three-column.png │ │ │ ├── logo.png │ │ │ ├── logo2.png │ │ │ ├── logoMin.png │ │ │ ├── model-title.png │ │ │ ├── model-title.psd │ │ │ ├── one-big.png │ │ │ ├── one-small.png │ │ │ ├── two-small.png │ │ │ ├── userwx_1.jpg │ │ │ ├── userwx_2.jpg │ │ │ ├── userwx_3.jpg │ │ │ ├── userwx_4.jpg │ │ │ ├── userwx_5.jpg │ │ │ └── userwx_6.jpg │ └── js │ │ └── common.js │ └── views │ ├── agent │ ├── agentGoods │ │ ├── create.html │ │ ├── details.html │ │ ├── edit.html │ │ └── index.html │ ├── agentGrade │ │ ├── create.html │ │ ├── edit.html │ │ └── index.html │ ├── agentOrder │ │ ├── details.html │ │ └── index.html │ ├── agents │ │ ├── details.html │ │ ├── edit.html │ │ └── index.html │ └── setting │ │ └── index.html │ ├── common │ ├── getArticleTypes.html │ ├── getArticles.html │ ├── getForms.html │ ├── getGoodAndSku.html │ ├── getGoodId.html │ ├── getGoodIds.html │ ├── getGoodList.html │ ├── getGroupIds.html │ ├── getNoticeIds.html │ ├── getPingTuanIds.html │ ├── getProductsIds.html │ ├── getQQMap.html │ ├── getServiceIds.html │ └── getUpLoad.html │ ├── content │ ├── advert │ │ ├── advertisement │ │ │ ├── create.html │ │ │ ├── edit.html │ │ │ ├── getArticle.html │ │ │ ├── getArticleType.html │ │ │ ├── getGoods.html │ │ │ └── index.html │ │ └── advertposition │ │ │ ├── create.html │ │ │ ├── edit.html │ │ │ └── index.html │ ├── article │ │ ├── articles │ │ │ ├── create.html │ │ │ ├── edit.html │ │ │ └── index.html │ │ └── articletype │ │ │ ├── create.html │ │ │ ├── edit.html │ │ │ └── index.html │ ├── customform │ │ ├── form │ │ │ ├── create.html │ │ │ ├── details.html │ │ │ ├── edit.html │ │ │ ├── index.html │ │ │ └── qrCode.html │ │ └── formsubmit │ │ │ ├── details.html │ │ │ ├── edit.html │ │ │ └── index.html │ ├── notice │ │ ├── create.html │ │ ├── edit.html │ │ └── index.html │ ├── reports │ │ ├── goods.html │ │ ├── goodscollection.html │ │ ├── order.html │ │ └── payments.html │ └── stock │ │ ├── products │ │ ├── details.html │ │ └── index.html │ │ ├── stocklog │ │ └── index.html │ │ └── stocks │ │ ├── create.html │ │ ├── details.html │ │ └── index.html │ ├── distribution │ ├── distributor │ │ ├── details.html │ │ ├── edit.html │ │ └── index.html │ ├── grade │ │ ├── conditionCreate.html │ │ ├── conditionEdit.html │ │ ├── create.html │ │ ├── edit.html │ │ ├── index.html │ │ ├── resultCreate.html │ │ └── resultEdit.html │ ├── order │ │ ├── details.html │ │ └── index.html │ └── setting │ │ └── index.html │ ├── financial │ ├── billpayments │ │ ├── details.html │ │ └── index.html │ ├── billrefund │ │ ├── audit.html │ │ ├── details.html │ │ └── index.html │ ├── invoice │ │ ├── edit.html │ │ └── index.html │ ├── payments │ │ ├── edit.html │ │ └── index.html │ ├── userbalance │ │ └── index.html │ └── usertocash │ │ └── index.html │ ├── good │ ├── goods │ │ ├── batchModifyPrice.html │ │ ├── batchModifyStock.html │ │ ├── create.html │ │ ├── delLabel.html │ │ ├── details.html │ │ ├── edit.html │ │ ├── getLabel.html │ │ └── index.html │ ├── goodsbrand │ │ ├── create.html │ │ ├── edit.html │ │ └── index.html │ ├── goodscategory │ │ ├── create.html │ │ ├── edit.html │ │ └── index.html │ ├── goodscomment │ │ ├── details.html │ │ ├── edit.html │ │ └── index.html │ ├── goodsparams │ │ ├── create.html │ │ ├── details.html │ │ ├── edit.html │ │ └── index.html │ ├── goodstypespec │ │ ├── create.html │ │ ├── details.html │ │ ├── edit.html │ │ └── index.html │ └── servicegoods │ │ ├── create.html │ │ ├── details.html │ │ ├── edit.html │ │ └── index.html │ ├── index.html │ ├── layout.html │ ├── order │ ├── billaftersales │ │ ├── details.html │ │ ├── edit.html │ │ └── index.html │ ├── billdelivery │ │ ├── details.html │ │ ├── edit.html │ │ └── index.html │ ├── billlading │ │ ├── edit.html │ │ └── index.html │ ├── billreship │ │ ├── details.html │ │ └── index.html │ ├── orders │ │ ├── details.html │ │ ├── distribution.html │ │ ├── edit.html │ │ ├── index.html │ │ ├── pay.html │ │ ├── ship.html │ │ ├── shopping.html │ │ ├── tcorderdetails.html │ │ └── union.html │ └── servicesOrder │ │ ├── create.html │ │ ├── details.html │ │ ├── edit.html │ │ └── index.html │ ├── promotion │ ├── coupon │ │ ├── couponlist.html │ │ ├── create.html │ │ ├── edit.html │ │ └── index.html │ ├── group │ │ ├── create.html │ │ ├── edit.html │ │ ├── index.html │ │ └── resultcreate.html │ ├── pintuan │ │ ├── pintuanrecord │ │ │ └── index.html │ │ └── pintuanrule │ │ │ ├── create.html │ │ │ ├── edit.html │ │ │ └── index.html │ └── promotion │ │ ├── conditioncreate.html │ │ ├── conditionedit.html │ │ ├── create.html │ │ ├── edit.html │ │ ├── index.html │ │ ├── resultcreate.html │ │ └── resultedit.html │ ├── shop │ ├── area │ │ ├── create.html │ │ ├── edit.html │ │ └── index.html │ ├── logistics │ │ └── index.html │ ├── message │ │ ├── messagecenter │ │ │ └── index.html │ │ ├── smslog │ │ │ └── index.html │ │ ├── smssetting │ │ │ └── index.html │ │ └── wechatappletsmessage │ │ │ └── index.html │ ├── pages │ │ ├── create.html │ │ ├── design.html │ │ ├── edit.html │ │ ├── index.html │ │ └── qrCode.html │ ├── pagesitems │ │ ├── create.html │ │ ├── details.html │ │ ├── edit.html │ │ └── index.html │ ├── servicedescription │ │ ├── create.html │ │ ├── details.html │ │ ├── edit.html │ │ └── index.html │ ├── setting │ │ └── index.html │ ├── ship │ │ ├── create.html │ │ ├── details.html │ │ ├── edit.html │ │ └── index.html │ └── store │ │ ├── clerkCreate.html │ │ ├── clerkedit.html │ │ ├── create.html │ │ ├── edit.html │ │ └── index.html │ ├── system │ ├── about.html │ ├── get.html │ ├── logs │ │ ├── sysloginrecord │ │ │ ├── details.html │ │ │ └── index.html │ │ ├── sysnlogrecords │ │ │ ├── details.html │ │ │ └── index.html │ │ └── systasklog │ │ │ ├── details.html │ │ │ └── index.html │ ├── more.html │ ├── setManager │ │ ├── info.html │ │ └── password.html │ ├── sysCodeGenerator │ │ └── index.html │ ├── sysdictionary │ │ ├── create.html │ │ ├── createData.html │ │ ├── details.html │ │ ├── edit.html │ │ ├── editData.html │ │ └── index.html │ ├── sysmenu │ │ ├── create.html │ │ ├── details.html │ │ ├── edit.html │ │ └── index.html │ ├── sysorganization │ │ ├── create.html │ │ ├── createUser.html │ │ ├── details.html │ │ ├── edit.html │ │ ├── editUser.html │ │ ├── index.html │ │ └── index2.html │ ├── sysrole │ │ ├── create.html │ │ ├── edit.html │ │ └── index.html │ ├── sysuser │ │ ├── create.html │ │ ├── edit.html │ │ └── index.html │ └── theme.html │ ├── temp.html │ ├── template │ └── tips │ │ ├── 404.html │ │ ├── error.html │ │ └── test.html │ └── user │ ├── login.html │ ├── userInfo │ ├── create.html │ ├── detailsBalanceLog.html │ ├── detailsPointLog.html │ ├── edit.html │ ├── editBalance.html │ ├── editPoint.html │ └── index.html │ ├── usergrade │ ├── create.html │ ├── details.html │ ├── edit.html │ └── index.html │ └── wechatuserinfo │ ├── details.html │ └── index.html ├── CoreCms.Net.Web.WebApi ├── .config │ └── dotnet-tools.json ├── Controllers │ ├── AdvertController.cs │ ├── AgentController.cs │ ├── ArticleController.cs │ ├── CartController.cs │ ├── CommonController.cs │ ├── CouponController.cs │ ├── DemoController.cs │ ├── DistributionController.cs │ ├── FormController.cs │ ├── GoodController.cs │ ├── GroupController.cs │ ├── NoticeController.cs │ ├── OrderController.cs │ ├── PageController.cs │ ├── PayNotify │ │ ├── AliPayController.cs │ │ └── WeChatPayController.cs │ ├── PaymentsController.cs │ ├── PinTuanController.cs │ ├── ServiceController.cs │ ├── StoreController.cs │ ├── UserController.cs │ ├── WeChatAppletsMessageController.cs │ └── WeChatOAuth │ │ └── WxOpenController.cs ├── CoreCms.Net.Web.WebApi.csproj ├── Doc.xml ├── Dockerfile ├── Infrastructure │ ├── ApiExplorerIgnores.cs │ ├── GlobalExceptionsFilterForClent.cs │ └── RequiredErrorForClent.cs ├── NLog.config ├── Program.cs ├── Properties │ └── launchSettings.json ├── WxPayCert │ └── 此处用于存放微信支付证书.txt ├── appsettings.Development.json ├── appsettings.json ├── illegalWord │ ├── IllegalKeywords.txt │ └── 说明.txt └── wwwroot │ ├── favicon.ico │ ├── fonts │ └── SourceHanSansK-Normal.ttf │ ├── index.html │ ├── robots.txt │ └── static │ ├── images │ └── logo.png │ ├── poster │ └── 此处会存放临时带背景海报.txt │ └── qrCode │ └── weChat │ └── 此处会存放用户唯一二维码用于生成带背景海报.txt ├── CoreShopCommunity.sln ├── LICENSE ├── README.md ├── docker-compose.yaml └── 数据库 ├── MySql ├── 20211015 │ ├── coreshopmysql20211015带演示数据(Navicat导出).sql │ ├── coreshopmysql20211015带演示数据(SQLyog导出).sql │ └── coreshopmysql20211015带演示数据(阿里云dms导出).sql ├── 20211025 │ ├── coreshopmysql20211025带演示数据(Navicat导出).sql │ └── coreshopmysql20211025带演示数据(阿里云dms导出).sql └── 数据库更新日志.txt └── SqlServer ├── 20211025 └── CoreShop20211025带商品数据.bak ├── 20211119 └── 20211119带商品演示数据.bak └── 数据库更新日志.txt /.gitee/ISSUE_TEMPLATE.zh-CN.md: -------------------------------------------------------------------------------- 1 | ## 请详细填写以下内容: 2 | 3 | ### 遇到问题的原因: 4 | 5 | 6 | ### 开发环境: 7 | 8 | 9 | ### 复显步骤: 10 | 11 | 12 | ### 期望达到的效果: 13 | 14 | 15 | ### 多张全屏大图: 16 | 17 | 18 | --- 19 | 20 | 如需上传图片,可直接截图后此处粘贴即可,不需要点击上传按钮上传。 -------------------------------------------------------------------------------- /.gitee/PULL_REQUEST_TEMPLATE.zh-CN.md: -------------------------------------------------------------------------------- 1 | ## 该Pull Request关联的Issue: 2 | 3 | ### 修改描述: 4 | 5 | 6 | ### 测试用例: 7 | 8 | 9 | ### 修复效果的截屏: 10 | 11 | 12 | --- 13 | 14 | 如需上传图片,可直接截图后此处粘贴即可,不需要点击上传按钮上传。 -------------------------------------------------------------------------------- /.gitee/coreshop/images/Admin/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/.gitee/coreshop/images/Admin/01.png -------------------------------------------------------------------------------- /.gitee/coreshop/images/Admin/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/.gitee/coreshop/images/Admin/02.png -------------------------------------------------------------------------------- /.gitee/coreshop/images/Admin/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/.gitee/coreshop/images/Admin/03.png -------------------------------------------------------------------------------- /.gitee/coreshop/images/Admin/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/.gitee/coreshop/images/Admin/04.png -------------------------------------------------------------------------------- /.gitee/coreshop/images/Admin/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/.gitee/coreshop/images/Admin/05.png -------------------------------------------------------------------------------- /.gitee/coreshop/images/Admin/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/.gitee/coreshop/images/Admin/06.png -------------------------------------------------------------------------------- /.gitee/coreshop/images/Admin/07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/.gitee/coreshop/images/Admin/07.png -------------------------------------------------------------------------------- /.gitee/coreshop/images/Admin/08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/.gitee/coreshop/images/Admin/08.png -------------------------------------------------------------------------------- /.gitee/coreshop/images/Admin/09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/.gitee/coreshop/images/Admin/09.png -------------------------------------------------------------------------------- /.gitee/coreshop/images/Admin/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/.gitee/coreshop/images/Admin/10.png -------------------------------------------------------------------------------- /.gitee/coreshop/images/Admin/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/.gitee/coreshop/images/Admin/11.png -------------------------------------------------------------------------------- /.gitee/coreshop/images/Admin/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/.gitee/coreshop/images/Admin/12.png -------------------------------------------------------------------------------- /.gitee/coreshop/images/Logo/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/.gitee/coreshop/images/Logo/logo.png -------------------------------------------------------------------------------- /.gitee/coreshop/images/PayeeCode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/.gitee/coreshop/images/PayeeCode.jpg -------------------------------------------------------------------------------- /.gitee/coreshop/images/QRCode/android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/.gitee/coreshop/images/QRCode/android.png -------------------------------------------------------------------------------- /.gitee/coreshop/images/QRCode/h5qCode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/.gitee/coreshop/images/QRCode/h5qCode.jpg -------------------------------------------------------------------------------- /.gitee/coreshop/images/QRCode/wxqCode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/.gitee/coreshop/images/QRCode/wxqCode.jpg -------------------------------------------------------------------------------- /.gitee/coreshop/images/WeChat/01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/.gitee/coreshop/images/WeChat/01.jpg -------------------------------------------------------------------------------- /.gitee/coreshop/images/WeChat/02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/.gitee/coreshop/images/WeChat/02.jpg -------------------------------------------------------------------------------- /.gitee/coreshop/images/WeChat/03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/.gitee/coreshop/images/WeChat/03.jpg -------------------------------------------------------------------------------- /.gitee/coreshop/images/WeChat/04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/.gitee/coreshop/images/WeChat/04.jpg -------------------------------------------------------------------------------- /.gitee/coreshop/images/WeChat/05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/.gitee/coreshop/images/WeChat/05.jpg -------------------------------------------------------------------------------- /CoreCms.Net.Auth/CoreCms.Net.Auth.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net8.0 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /CoreCms.Net.Caching/AutoMate/MemoryCache/ICachingProvider.cs: -------------------------------------------------------------------------------- 1 | namespace CoreCms.Net.Caching.AutoMate.MemoryCache 2 | { 3 | /// 4 | /// 简单的缓存接口,只有查询和添加,以后会进行扩展 5 | /// 6 | public interface ICachingProvider 7 | { 8 | object Get(string cacheKey); 9 | 10 | void Set(string cacheKey, object cacheValue, int timeSpan); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CoreCms.Net.Caching/CoreCms.Net.Caching.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net8.0 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /CoreCms.Net.Configuration/AppSettingsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Configuration/AppSettingsHelper.cs -------------------------------------------------------------------------------- /CoreCms.Net.Configuration/CoreCms.Net.Configuration.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net8.0 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /CoreCms.Net.Filter/CoreCms.Net.Filter.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net8.0 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /CoreCms.Net.IRepository/Api/ICoreCmsApiAccessTokenRepository.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IRepository 14 | { 15 | /// 16 | /// 第三方授权记录表 工厂接口 17 | /// 18 | public interface ICoreCmsApiAccessTokenRepository : IBaseRepository 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IRepository/Article/ICoreCmsArticleTypeRepository.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | 12 | using CoreCms.Net.Model.Entities; 13 | 14 | namespace CoreCms.Net.IRepository 15 | { 16 | /// 17 | /// 文章分类表 工厂接口 18 | /// 19 | public interface ICoreCmsArticleTypeRepository : IBaseRepository 20 | { 21 | } 22 | } -------------------------------------------------------------------------------- /CoreCms.Net.IRepository/Bill/ICoreCmsBillAftersalesItemRepository.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IRepository 14 | { 15 | /// 16 | /// 售后单明细表 工厂接口 17 | /// 18 | public interface ICoreCmsBillAftersalesItemRepository : IBaseRepository 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IRepository/Bill/ICoreCmsBillDeliveryItemRepository.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IRepository 14 | { 15 | /// 16 | /// 发货单详情表 工厂接口 17 | /// 18 | public interface ICoreCmsBillDeliveryItemRepository : IBaseRepository 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IRepository/Bill/ICoreCmsBillReshipItemRepository.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IRepository 14 | { 15 | /// 16 | /// 退货单明细表 工厂接口 17 | /// 18 | public interface ICoreCmsBillReshipItemRepository : IBaseRepository 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IRepository/Com/ICoreCmsLabelRepository.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IRepository 14 | { 15 | /// 16 | /// 标签表 工厂接口 17 | /// 18 | public interface ICoreCmsLabelRepository : IBaseRepository 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IRepository/CoreCms.Net.IRepository.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net8.0 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /CoreCms.Net.IRepository/Financial/ICoreCmsInvoiceRecordRepository.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IRepository 14 | { 15 | /// 16 | /// 发票信息记录 工厂接口 17 | /// 18 | public interface ICoreCmsInvoiceRecordRepository : IBaseRepository 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IRepository/Financial/ICoreCmsPaymentsRepository.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IRepository 14 | { 15 | /// 16 | /// 支付方式表 工厂接口 17 | /// 18 | public interface ICoreCmsPaymentsRepository : IBaseRepository 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IRepository/Good/ICoreCmsBrandRepository.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IRepository 14 | { 15 | /// 16 | /// 品牌表 工厂接口 17 | /// 18 | public interface ICoreCmsBrandRepository : IBaseRepository 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IRepository/Good/ICoreCmsGoodsCategoryExtendRepository.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IRepository 14 | { 15 | /// 16 | /// 商品分类扩展表 工厂接口 17 | /// 18 | public interface ICoreCmsGoodsCategoryExtendRepository : IBaseRepository 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IRepository/Good/ICoreCmsGoodsGradeRepository.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IRepository 14 | { 15 | /// 16 | /// 商品会员价表 工厂接口 17 | /// 18 | public interface ICoreCmsGoodsGradeRepository : IBaseRepository 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IRepository/Good/ICoreCmsGoodsParamsRepository.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IRepository 14 | { 15 | /// 16 | /// 商品参数表 工厂接口 17 | /// 18 | public interface ICoreCmsGoodsParamsRepository : IBaseRepository 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IRepository/Good/ICoreCmsGoodsTypeSpecValueRepository.cs: -------------------------------------------------------------------------------- 1 | using CoreCms.Net.Model.Entities; 2 | 3 | namespace CoreCms.Net.IRepository 4 | { 5 | /// 6 | /// 商品类型属性值表 工厂接口 7 | /// 8 | public interface ICoreCmsGoodsTypeSpecValueRepository : IBaseRepository 9 | { 10 | } 11 | } -------------------------------------------------------------------------------- /CoreCms.Net.IRepository/Good/ICoreCmsProductsDistributionRepository.cs: -------------------------------------------------------------------------------- 1 | using CoreCms.Net.Model.Entities; 2 | 3 | namespace CoreCms.Net.IRepository 4 | { 5 | /// 6 | /// 货品三级佣金表 工厂接口 7 | /// 8 | public interface ICoreCmsProductsDistributionRepository : IBaseRepository 9 | { 10 | } 11 | } -------------------------------------------------------------------------------- /CoreCms.Net.IRepository/IntelligentForms/ICoreCmsFormItemRepository.cs: -------------------------------------------------------------------------------- 1 | using CoreCms.Net.Model.Entities; 2 | 3 | namespace CoreCms.Net.IRepository 4 | { 5 | /// 6 | /// 表单项表 工厂接口 7 | /// 8 | public interface ICoreCmsFormItemRepository : IBaseRepository 9 | { 10 | } 11 | } -------------------------------------------------------------------------------- /CoreCms.Net.IRepository/IntelligentForms/ICoreCmsFormSubmitDetailRepository.cs: -------------------------------------------------------------------------------- 1 | using CoreCms.Net.Model.Entities; 2 | 3 | namespace CoreCms.Net.IRepository 4 | { 5 | /// 6 | /// 提交表单保存大文本值表 工厂接口 7 | /// 8 | public interface ICoreCmsFormSubmitDetailRepository : IBaseRepository 9 | { 10 | } 11 | } -------------------------------------------------------------------------------- /CoreCms.Net.IRepository/Message/ICoreCmsMessageCenterRepository.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IRepository 14 | { 15 | /// 16 | /// 消息配置表 工厂接口 17 | /// 18 | public interface ICoreCmsMessageCenterRepository : IBaseRepository 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IRepository/Message/ICoreCmsSmsRepository.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IRepository 14 | { 15 | /// 16 | /// 短信发送日志 工厂接口 17 | /// 18 | public interface ICoreCmsSmsRepository : IBaseRepository 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IRepository/Order/ICoreCmsOrderLogRepository.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IRepository 14 | { 15 | /// 16 | /// 订单记录表 工厂接口 17 | /// 18 | public interface ICoreCmsOrderLogRepository : IBaseRepository 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IRepository/Pay/IAliPayRepository.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IRepository 14 | { 15 | /// 16 | /// 支付宝支付 工厂接口 17 | /// 18 | public interface IAliPayRepository : IBaseRepository 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IRepository/Pay/IBalancePayRepository.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IRepository 14 | { 15 | /// 16 | /// 余额支付 工厂接口 17 | /// 18 | public interface IBalancePayRepository : IBaseRepository 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IRepository/Pay/IOfflinePayRepository.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IRepository 14 | { 15 | /// 16 | /// 线下支付 工厂接口 17 | /// 18 | public interface IOfflinePayRepository : IBaseRepository 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IRepository/Pay/IWeChatPayRepository.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IRepository 14 | { 15 | /// 16 | /// 微信支付 工厂接口 17 | /// 18 | public interface IWeChatPayRepository : IBaseRepository 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IRepository/Pintuan/ICoreCmsPintuanGoodsRepository.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IRepository 14 | { 15 | /// 16 | /// 拼团商品表 工厂接口 17 | /// 18 | public interface ICoreCmsPinTuanGoodsRepository : IBaseRepository 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IRepository/Promotion/ICoreCmsPromotionConditionRepository.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IRepository 14 | { 15 | /// 16 | /// 促销条件表 工厂接口 17 | /// 18 | public interface ICoreCmsPromotionConditionRepository : IBaseRepository 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IRepository/Promotion/ICoreCmsPromotionRecordRepository.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IRepository 14 | { 15 | /// 16 | /// 促销活动记录表 工厂接口 17 | /// 18 | public interface ICoreCmsPromotionRecordRepository : IBaseRepository 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IRepository/Promotion/ICoreCmsPromotionResultRepository.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IRepository 14 | { 15 | /// 16 | /// 促销结果表 工厂接口 17 | /// 18 | public interface ICoreCmsPromotionResultRepository : IBaseRepository 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IRepository/Shop/ICoreCmsLogisticsRepository.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IRepository 14 | { 15 | /// 16 | /// 物流公司表 工厂接口 17 | /// 18 | public interface ICoreCmsLogisticsRepository : IBaseRepository 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IRepository/Shop/ICoreCmsPagesItemsRepository.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IRepository 14 | { 15 | /// 16 | /// 单页内容 工厂接口 17 | /// 18 | public interface ICoreCmsPagesItemsRepository : IBaseRepository 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IRepository/Shop/ICoreCmsSettingRepository.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IRepository 14 | { 15 | /// 16 | /// 店铺设置表 工厂接口 17 | /// 18 | public interface ICoreCmsSettingRepository : IBaseRepository 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IRepository/System/ISysDictionaryDataRepository.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IRepository 14 | { 15 | /// 16 | /// 数据字典项表 工厂接口 17 | /// 18 | public interface ISysDictionaryDataRepository : IBaseRepository 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IRepository/System/ISysDictionaryRepository.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IRepository 14 | { 15 | /// 16 | /// 数据字典表 工厂接口 17 | /// 18 | public interface ISysDictionaryRepository : IBaseRepository 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IRepository/System/ISysLoginRecordRepository.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IRepository 14 | { 15 | /// 16 | /// 登录日志表 工厂接口 17 | /// 18 | public interface ISysLoginRecordRepository : IBaseRepository 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IRepository/System/ISysOperRecordRepository.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IRepository 14 | { 15 | /// 16 | /// 操作日志表 工厂接口 17 | /// 18 | public interface ISysOperRecordRepository : IBaseRepository 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IRepository/System/ISysOrganizationRepository.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IRepository 14 | { 15 | /// 16 | /// 组织机构表 工厂接口 17 | /// 18 | public interface ISysOrganizationRepository : IBaseRepository 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IRepository/System/ISysRoleRepository.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IRepository 14 | { 15 | /// 16 | /// 角色表 工厂接口 17 | /// 18 | public interface ISysRoleRepository : IBaseRepository 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IRepository/System/ISysUserRepository.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IRepository 14 | { 15 | /// 16 | /// 用户表 工厂接口 17 | /// 18 | public interface ISysUserRepository : IBaseRepository 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IRepository/System/ISysUserRoleRepository.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IRepository 14 | { 15 | /// 16 | /// 用户角色关联表 工厂接口 17 | /// 18 | public interface ISysUserRoleRepository : IBaseRepository 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IRepository/UnitOfWork/IUnitOfWork.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | 12 | using SqlSugar; 13 | 14 | namespace CoreCms.Net.IRepository.UnitOfWork 15 | { 16 | public interface IUnitOfWork 17 | { 18 | SqlSugarScope GetDbClient(); 19 | 20 | void BeginTran(); 21 | 22 | void CommitTran(); 23 | void RollbackTran(); 24 | } 25 | } -------------------------------------------------------------------------------- /CoreCms.Net.IRepository/User/ICoreCmsUserBankCardRepository.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IRepository 14 | { 15 | /// 16 | /// 银行卡信息 工厂接口 17 | /// 18 | public interface ICoreCmsUserBankCardRepository : IBaseRepository 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IRepository/User/ICoreCmsUserGradeRepository.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IRepository 14 | { 15 | /// 16 | /// 用户等级表 工厂接口 17 | /// 18 | public interface ICoreCmsUserGradeRepository : IBaseRepository 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IRepository/User/ICoreCmsUserLogRepository.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IRepository 14 | { 15 | /// 16 | /// 用户日志 工厂接口 17 | /// 18 | public interface ICoreCmsUserLogRepository : IBaseRepository 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IRepository/User/ICoreCmsUserPointLogRepository.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IRepository 14 | { 15 | /// 16 | /// 用户积分记录表 工厂接口 17 | /// 18 | public interface ICoreCmsUserPointLogRepository : IBaseRepository 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IRepository/WeChat/ICoreCmsUserWeChatInfoRepository.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IRepository 14 | { 15 | /// 16 | /// 用户表 工厂接口 17 | /// 18 | public interface ICoreCmsUserWeChatInfoRepository : IBaseRepository 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IRepository/WeChat/IWeChatAccessTokenRepository.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/7/28 20:42:38 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IRepository 14 | { 15 | /// 16 | /// 微信授权交互 工厂接口 17 | /// 18 | public interface IWeChatAccessTokenRepository : IBaseRepository 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IServices/Advert/ICoreCmsAdvertPositionServices.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | using CoreCms.Net.Model.Entities; 11 | 12 | namespace CoreCms.Net.IServices 13 | { 14 | /// 15 | /// 广告位置表 服务工厂接口 16 | /// 17 | public interface ICoreCmsAdvertPositionServices : IBaseServices 18 | { 19 | 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /CoreCms.Net.IServices/Advert/ICoreCmsAdvertisementServices.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | using CoreCms.Net.Model.Entities; 11 | 12 | namespace CoreCms.Net.IServices 13 | { 14 | /// 15 | /// 广告表 服务工厂接口 16 | /// 17 | public interface ICoreCmsAdvertisementServices : IBaseServices 18 | { 19 | 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /CoreCms.Net.IServices/Api/ICoreCmsApiAccessTokenServices.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | 12 | using CoreCms.Net.Model.Entities; 13 | 14 | namespace CoreCms.Net.IServices 15 | { 16 | /// 17 | /// 第三方授权记录表 服务工厂接口 18 | /// 19 | public interface ICoreCmsApiAccessTokenServices : IBaseServices 20 | { 21 | } 22 | } -------------------------------------------------------------------------------- /CoreCms.Net.IServices/Article/ICoreCmsArticleTypeServices.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IServices 14 | { 15 | /// 16 | /// 文章分类表 服务工厂接口 17 | /// 18 | public interface ICoreCmsArticleTypeServices : IBaseServices 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IServices/Bill/ICoreCmsBillAftersalesImagesServices.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IServices 14 | { 15 | /// 16 | /// 商品图片关联表 服务工厂接口 17 | /// 18 | public interface ICoreCmsBillAftersalesImagesServices : IBaseServices 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IServices/Bill/ICoreCmsBillAftersalesItemServices.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IServices 14 | { 15 | /// 16 | /// 售后单明细表 服务工厂接口 17 | /// 18 | public interface ICoreCmsBillAftersalesItemServices : IBaseServices 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IServices/Bill/ICoreCmsBillDeliveryItemServices.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IServices 14 | { 15 | /// 16 | /// 发货单详情表 服务工厂接口 17 | /// 18 | public interface ICoreCmsBillDeliveryItemServices : IBaseServices 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IServices/Bill/ICoreCmsBillReshipItemServices.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IServices 14 | { 15 | /// 16 | /// 退货单明细表 服务工厂接口 17 | /// 18 | public interface ICoreCmsBillReshipItemServices : IBaseServices 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IServices/Com/ICoreCmsLabelServices.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IServices 14 | { 15 | /// 16 | /// 标签表 服务工厂接口 17 | /// 18 | public interface ICoreCmsLabelServices : IBaseServices 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IServices/CoreCms.Net.IServices.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net8.0 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /CoreCms.Net.IServices/Financial/ICoreCmsInvoiceRecordServices.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IServices 14 | { 15 | /// 16 | /// 发票信息记录 服务工厂接口 17 | /// 18 | public interface ICoreCmsInvoiceRecordServices : IBaseServices 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IServices/Financial/ICoreCmsPaymentsServices.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IServices 14 | { 15 | /// 16 | /// 支付方式表 服务工厂接口 17 | /// 18 | public interface ICoreCmsPaymentsServices : IBaseServices 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IServices/Good/ICoreCmsBrandServices.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IServices 14 | { 15 | /// 16 | /// 品牌表 服务工厂接口 17 | /// 18 | public interface ICoreCmsBrandServices : IBaseServices 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IServices/Good/ICoreCmsGoodsCategoryExtendServices.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IServices 14 | { 15 | /// 16 | /// 商品分类扩展表 服务工厂接口 17 | /// 18 | public interface ICoreCmsGoodsCategoryExtendServices : IBaseServices 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IServices/Good/ICoreCmsGoodsGradeServices.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IServices 14 | { 15 | /// 16 | /// 商品会员价表 服务工厂接口 17 | /// 18 | public interface ICoreCmsGoodsGradeServices : IBaseServices 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IServices/Good/ICoreCmsGoodsParamsServices.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IServices 14 | { 15 | /// 16 | /// 商品参数表 服务工厂接口 17 | /// 18 | public interface ICoreCmsGoodsParamsServices : IBaseServices 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IServices/Good/ICoreCmsGoodsTypeSpecValueServices.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IServices 14 | { 15 | /// 16 | /// 商品类型属性值表 服务工厂接口 17 | /// 18 | public interface ICoreCmsGoodsTypeSpecValueServices : IBaseServices 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IServices/Good/ICoreCmsProductsDistributionServices.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IServices 14 | { 15 | /// 16 | /// 货品三级佣金表 服务工厂接口 17 | /// 18 | public interface ICoreCmsProductsDistributionServices : IBaseServices 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IServices/Order/ICoreCmsOrderLogServices.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IServices 14 | { 15 | /// 16 | /// 订单记录表 服务工厂接口 17 | /// 18 | public interface ICoreCmsOrderLogServices : IBaseServices 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IServices/Shop/ICoreCmsPagesItemsServices.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IServices 14 | { 15 | /// 16 | /// 单页内容 服务工厂接口 17 | /// 18 | public interface ICoreCmsPagesItemsServices : IBaseServices 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IServices/System/ISysDictionaryDataServices.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IServices 14 | { 15 | /// 16 | /// 数据字典项表 服务工厂接口 17 | /// 18 | public interface ISysDictionaryDataServices : IBaseServices 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IServices/System/ISysDictionaryServices.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IServices 14 | { 15 | /// 16 | /// 数据字典表 服务工厂接口 17 | /// 18 | public interface ISysDictionaryServices : IBaseServices 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IServices/System/ISysLoginRecordServices.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IServices 14 | { 15 | /// 16 | /// 登录日志表 服务工厂接口 17 | /// 18 | public interface ISysLoginRecordServices : IBaseServices 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IServices/System/ISysNLogRecordsServices.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IServices 14 | { 15 | /// 16 | /// Nlog记录表 服务工厂接口 17 | /// 18 | public interface ISysNLogRecordsServices : IBaseServices 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IServices/System/ISysOperRecordServices.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | 12 | using CoreCms.Net.Model.Entities; 13 | 14 | namespace CoreCms.Net.IServices 15 | { 16 | /// 17 | /// 操作日志表 服务工厂接口 18 | /// 19 | public interface ISysOperRecordServices : IBaseServices 20 | { 21 | } 22 | } -------------------------------------------------------------------------------- /CoreCms.Net.IServices/System/ISysOrganizationServices.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IServices 14 | { 15 | /// 16 | /// 组织机构表 服务工厂接口 17 | /// 18 | public interface ISysOrganizationServices : IBaseServices 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IServices/System/ISysRoleServices.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IServices 14 | { 15 | /// 16 | /// 角色表 服务工厂接口 17 | /// 18 | public interface ISysRoleServices : IBaseServices 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IServices/System/ISysTaskLogServices.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IServices 14 | { 15 | /// 16 | /// 定时任务日志 服务工厂接口 17 | /// 18 | public interface ISysTaskLogServices : IBaseServices 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IServices/System/ISysUserRoleServices.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IServices 14 | { 15 | /// 16 | /// 用户角色关联表 服务工厂接口 17 | /// 18 | public interface ISysUserRoleServices : IBaseServices 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IServices/User/ICoreCmsUserGradeServices.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IServices 14 | { 15 | /// 16 | /// 用户等级表 服务工厂接口 17 | /// 18 | public interface ICoreCmsUserGradeServices : IBaseServices 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IServices/User/ICoreCmsUserLogServices.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IServices 14 | { 15 | /// 16 | /// 用户日志 服务工厂接口 17 | /// 18 | public interface ICoreCmsUserLogServices : IBaseServices 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IServices/WeChat/ICoreCmsUserWeChatInfoServices.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IServices 14 | { 15 | /// 16 | /// 用户表 服务工厂接口 17 | /// 18 | public interface ICoreCmsUserWeChatInfoServices : IBaseServices 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IServices/WeChat/IWeChatAccessTokenServices.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/7/28 20:42:38 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IServices 14 | { 15 | /// 16 | /// 微信授权交互 服务工厂接口 17 | /// 18 | public interface IWeChatAccessTokenServices : IBaseServices 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IServices/intelligentForms/ICoreCmsFormItemServices.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IServices 14 | { 15 | /// 16 | /// 表单项表 服务工厂接口 17 | /// 18 | public interface ICoreCmsFormItemServices : IBaseServices 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.IServices/intelligentForms/ICoreCmsFormSubmitDetailServices.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | using CoreCms.Net.Model.Entities; 12 | 13 | namespace CoreCms.Net.IServices 14 | { 15 | /// 16 | /// 提交表单保存大文本值表 服务工厂接口 17 | /// 18 | public interface ICoreCmsFormSubmitDetailServices : IBaseServices 19 | { 20 | } 21 | } -------------------------------------------------------------------------------- /CoreCms.Net.Loging/CoreCms.Net.Loging.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net8.0 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /CoreCms.Net.Mapping/AutoMapperIProfile.cs: -------------------------------------------------------------------------------- 1 | namespace CoreCms.Net.Mapping 2 | { 3 | internal interface AutoMapperIProfile 4 | { 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /CoreCms.Net.Mapping/CoreCms.Net.Mapping.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net8.0 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /CoreCms.Net.Middlewares/CoreCms.Net.Middlewares.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net8.0 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /CoreCms.Net.Model/CoreCms.Net.Model.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net8.0 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /CoreCms.Net.Model/FromBody/FMData.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | namespace CoreCms.Net.Model.FromBody 12 | { 13 | public class FMData 14 | { 15 | public string data { get; set; } 16 | } 17 | } -------------------------------------------------------------------------------- /CoreCms.Net.Model/FromBody/FMSysOrganization.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | namespace CoreCms.Net.Model.FromBody 12 | { 13 | public class FMDoSetSysOrganizationLeaderPost 14 | { 15 | public int leaderId { get; set; } 16 | public int organizationId { get; set; } 17 | } 18 | } -------------------------------------------------------------------------------- /CoreCms.Net.Model/FromBody/FmPinTuan.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | 12 | namespace CoreCms.Net.Model.FromBody 13 | { 14 | /// 15 | /// 根据订单id取拼团信息提交参数 16 | /// 17 | public class FMGetPinTuanTeamPost 18 | { 19 | public string orderId { get; set; } = ""; 20 | public int teamId { get; set; } = 0; 21 | } 22 | } -------------------------------------------------------------------------------- /CoreCms.Net.Model/ViewModels/DTO/AdvertDto.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | 12 | namespace CoreCms.Net.Model.ViewModels.DTO 13 | { 14 | public class AdvertDto 15 | { 16 | } 17 | } -------------------------------------------------------------------------------- /CoreCms.Net.Model/ViewModels/DTO/WxNameTypeDto.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | 12 | namespace CoreCms.Net.Model.ViewModels.DTO 13 | { 14 | /// 15 | /// wx返回Name/Type格式实体 16 | /// 17 | public class WxNameTypeDto 18 | { 19 | public string name { get; set; } 20 | 21 | public int type { get; set; } 22 | } 23 | } -------------------------------------------------------------------------------- /CoreCms.Net.Model/ViewModels/DTO/WxNameValueDto.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms 3 | * ProjectName: 核心内容管理系统 4 | * Web: https://www.corecms.net 5 | * Author: 大灰灰 6 | * Email: jianweie@163.com 7 | * CreateTime: 2021/1/31 21:45:10 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | 12 | namespace CoreCms.Net.Model.ViewModels.DTO 13 | { 14 | /// 15 | /// name/value实体返回 16 | /// 17 | public class WxNameValueDto 18 | { 19 | public string name { get; set; } 20 | 21 | public string value { get; set; } 22 | } 23 | } -------------------------------------------------------------------------------- /CoreCms.Net.Repository/SqlSugarExtensions.cs: -------------------------------------------------------------------------------- 1 | using SqlSugar; 2 | 3 | namespace CoreCms.Net.Repository 4 | { 5 | internal static class SqlSugarExtensions 6 | { 7 | internal static ISugarQueryable WithNoLockOrNot(this ISugarQueryable query,bool @lock = false) 8 | { 9 | if (@lock) 10 | { 11 | query = query.With(SqlWith.NoLock); 12 | } 13 | 14 | return query; 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /CoreCms.Net.Swagger/CoreCms.Net.Swagger.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net8.0 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreCms.Net.Uni-App.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net8.0 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/.hbuilderx/launch.json: -------------------------------------------------------------------------------- 1 | { // launch.json 配置了启动调试时相关设置,configurations下节点名称可为 app-plus/h5/mp-weixin/mp-baidu/mp-alipay/mp-qq/mp-toutiao/mp-360/ 2 | // launchtype项可配置值为local或remote, local代表前端连本地云函数,remote代表前端连云端云函数 3 | "version": "0.0", 4 | "configurations": [{ 5 | "default" : 6 | { 7 | "launchtype" : "local" 8 | }, 9 | "mp-weixin" : 10 | { 11 | "launchtype" : "local" 12 | }, 13 | "type" : "uniCloud" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/common/setting/coreThemeHelper.js: -------------------------------------------------------------------------------- 1 | /** 2 | * 很多无法css实现的换肤效果,通过此模块实现 3 | * 使用方法,在代码中直接使用 this.$coreTheme.mainNabBar.background 4 | * @version 1.0.0 5 | */ 6 | 7 | //通用头部背景样式 8 | export const mainNabBar = { 9 | background: { 10 | //颜色 11 | backgroundColor: '#e54d42', 12 | // 导航栏背景图 13 | // background: 'url(https://cdn.uviewui.com/uview/swiper/1.jpg) no-repeat', 14 | // 还可以设置背景图size属性 15 | // backgroundSize: 'cover', 16 | 17 | // 渐变色 18 | //backgroundImage: 'linear-gradient(45deg, rgb(28, 187, 180), rgb(141, 198, 63))' 19 | }, 20 | //通用头部文字颜色 21 | titleColor: "#fff", 22 | //通用头部文字颜色 23 | backIconColor: "#fff", 24 | }; 25 | 26 | -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/components/coreshop-copyright/coreshop-copyright.vue: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Powered by CoreShop 5 | 6 | 7 | 备案号:{{shopBeiAn}} 8 | 9 | 10 | 11 | 12 | 21 | 23 | -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/components/coreshop-page/coreshop-blank.vue: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 21 | 22 | 24 | -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/components/coreshop-page/coreshop-content.vue: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 25 | 29 | -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/components/coreshop-page/coreshop-imgSlide.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/components/coreshop-page/coreshop-imgSlide.vue -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "lockfileVersion": 1 3 | } 4 | -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/pages/activity/groupBuying/details/details.scss: -------------------------------------------------------------------------------- 1 | .coreshop-good-footer-fixed .tabbar .btn-group { width: 50%; padding: 10rpx; 2 | button { padding: 0rpx; flex: 1; margin: 0rpx; max-width: none; } 3 | } 4 | -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/pages/activity/groupBuying/list/list.scss: -------------------------------------------------------------------------------- 1 | .goods-item { margin-bottom: 2rpx; 2 | .cu-progress { width: 225rpx; } 3 | .progress-text { color: #999999; font-size: 20rpx; margin-left: 25rpx; } 4 | .buy-btn { position: absolute; right: 0; bottom: -20rpx; } 5 | .btn-ing { background: linear-gradient(45deg,#f43f3b,#ed1c24); box-shadow: 0px 7rpx 6rpx 0px rgba(229, 138, 0, 0.22); color: #ffffff; } 6 | } 7 | .goods-item .btn-end, 8 | .goods-item .btn-nostart { background: #eeeeee; color: #999999; } 9 | .activity-goods-box { 10 | .goods-right { width: 480rpx; } 11 | } 12 | -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/pages/activity/pinTuan/list/list.scss: -------------------------------------------------------------------------------- 1 | .group-wrap { background: url('/static/images/pinTuan/pinTuanListBg.png') no-repeat; background-size: 100% 374rpx; } 2 | .group-head { padding: 0 25rpx; height: 100rpx; 3 | .group-head__title { font-size: 32rpx; font-family: PingFang SC; font-weight: 500; color: rgba(255, 255, 255, 1); } 4 | .group-head__notice { font-size: 26rpx; font-family: PingFang SC; font-weight: 500; color: rgba(255, 255, 255, 1); } 5 | } 6 | -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/pages/article/details/details.scss: -------------------------------------------------------------------------------- 1 | 2 | .article-title { font-size: 32upx; color: #333; margin: 20upx 0upx; position: relative; text-align: center; } 3 | .article-time { margin-top: 10rpx; font-size: 22rpx; text-align: center; } 4 | 5 | .u-content { margin-top: 20rpx; color: $u-content-color; font-size: 28rpx; line-height: 1.8; } 6 | .u-content p { color: $u-tips-color; } 7 | -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/pages/article/list/list.scss: -------------------------------------------------------------------------------- 1 | .help-bg { height: 350rpx; background-image: url('/static/images/common/bg.png'); background-size: cover; background-position: center; border-radius: 0 0 50rpx 50rpx; } 2 | .help-body { margin-top: -300rpx; padding: 25rpx; 3 | .help-h3 { font-size: 45rpx; color: #FFFFFF !important; margin: 20rpx 20rpx; } 4 | .help-content-box { background-color: #fff; min-height: 150rpx; } 5 | } 6 | 7 | 8 | .u-page-item { font-size: 28rpx; color: #333; padding: 10rpx 0rpx; } 9 | .u-card-wrap { background-color: $u-bg-color; padding: 1px; } 10 | .u-body-item { font-size: 28rpx; color: #333; padding: 20rpx 10rpx; } 11 | .u-body-item image { width: 50rpx; flex: 0 0 50rpx; height: 50rpx; border-radius: 8rpx; margin-right: 12rpx; } 12 | -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/pages/coupon/coupon.scss: -------------------------------------------------------------------------------- 1 | page { background: #fff; } 2 | .coreshop-coupon { 3 | .coreshop-coupon-card-view { position: relative; position: relative; margin: 27.27rpx 27.27rpx 0; 4 | .card-num-view { position: relative; background: #FFECED; border-radius: 0 0 14.54rpx 14.54rpx; border-top: 2rpx dashed #dedbdb; padding: 10.9rpx 27.27rpx; color: #999898; 5 | .btnUnfold { position: absolute; right: 27.27rpx; top: 14.54rpx; } 6 | } 7 | .card-num-view::before { content: ''; position: absolute; width: 36.36rpx; height: 36.36rpx; background: #ffffff; border-radius: 50%; top: -18.18rpx; left: -18.18rpx; } 8 | .card-num-view::after { content: ''; position: absolute; width: 36.36rpx; height: 36.36rpx; background: #ffffff; border-radius: 50%; top: -18.18rpx; right: -18.18rpx; } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/pages/member/address/list/list.scss: -------------------------------------------------------------------------------- 1 | .item { padding: 40rpx 20rpx; background: #fff; margin-bottom: 10rpx; 2 | .top { display: flex; font-weight: bold; font-size: 34rpx; 3 | .phone { margin-left: 60rpx; } 4 | .tag { display: flex; font-weight: normal; align-items: center; 5 | text { display: block; width: 60rpx; height: 34rpx; line-height: 34rpx; color: #ffffff; font-size: 20rpx; border-radius: 6rpx; text-align: center; margin-left: 30rpx; background-color: #3191fd; } 6 | .red { background-color: red; } 7 | } 8 | } 9 | .bottom { display: flex; margin-top: 20rpx; font-size: 28rpx; justify-content: space-between; color: #999999; } 10 | } 11 | -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/pages/member/afterSales/detail/detail.scss: -------------------------------------------------------------------------------- 1 | .goods-img-item { width: 174rpx; height: 174rpx; padding: 14rpx; position: relative; } 2 | .goods-img-item:nth-child(4n) { margin-right: 0; } 3 | .goods-img-item image { width: 100%; height: 100%; } 4 | -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/pages/member/agent/agreement/agreement.scss: -------------------------------------------------------------------------------- 1 | .page-body { background: #FFFFFF; border-top-left-radius: 38rpx; border-top-right-radius: 38rpx; margin: 25rpx; padding: 25rpx; } 2 | .u-content { margin-top: 20rpx; color: $u-content-color; font-size: 28rpx; line-height: 1.8; } 3 | .u-content p { color: $u-tips-color; } 4 | -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/pages/member/agent/agreement/agreement.vue: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 27 | 30 | -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/pages/member/agent/apply/apply.scss: -------------------------------------------------------------------------------- 1 | page { background: #fff; } 2 | .head-box { width: 100%; position: relative; 3 | .head-img-wrap { width: 750rpx; height: 400rpx; overflow: hidden; 4 | .head-img { width: 100%; } 5 | } 6 | } 7 | 8 | 9 | // 表单 10 | .apply-form { width: 730rpx; background: #ffffff; border-radius: 20rpx; padding: 30rpx; margin: 10rpx; 11 | .apply-tip { margin: 50rpx 0rpx; } 12 | .agreement { margin-top: 20rpx; 13 | .agreement-text { font-size: 24rpx; font-weight: 500; color: #b095ff; 14 | .text-underline { text-decoration: underline; } 15 | } 16 | } 17 | .save-btn { width: 690rpx; height: 86rpx; background: linear-gradient(45deg, #0081ff, #1cbbb4); box-shadow: 0px 7rpx 11rpx 2rpx rgba(124, 103, 214, 0.34); border-radius: 43rpx; font-weight: 500; color: #ffffff; margin: 30rpx auto; } 18 | } 19 | -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/pages/member/agent/applyState/applyState.scss: -------------------------------------------------------------------------------- 1 | page { background: #FFFFFF; } 2 | 3 | .coreshop-status-image-view { position: relative; text-align: center; margin-top: 90.9rpx; margin-bottom: 18.18rpx; background: #FFFFFF; 4 | image { width: 472.72rpx; } 5 | } -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/pages/member/agent/index/index.scss: -------------------------------------------------------------------------------- 1 | .page-body { background: #FFFFFF; border-top-left-radius: 38rpx; border-top-right-radius: 38rpx; margin: 25rpx; padding: 25rpx; margin-bottom: 150rpx; } 2 | .u-content { margin-top: 20rpx; color: $u-content-color; font-size: 28rpx; line-height: 1.8; } 3 | .u-content p { color: $u-tips-color; } 4 | -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/pages/member/balance/index/index.scss: -------------------------------------------------------------------------------- 1 | .withdrawcash-top { padding: 40upx 26upx; background-color: #FF7159; color: #fff; } 2 | .withdrawcash-title { font-size: 28upx; display: block } 3 | .withdrawcash-num { font-size: 70upx; display: block; margin-top: 20upx; margin-left: 50upx; } 4 | -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/pages/member/balance/withdrawCash/withdrawCash.scss: -------------------------------------------------------------------------------- 1 | .coreshop-cell-hd-title { color: #333; } 2 | .coreshop-cell-item { border: none; } 3 | .coreshop-cell-item-bd { color: #666; font-size: 26upx; } 4 | .withdrawcash-input { display: flex; align-items: center; font-size: 50upx; border-bottom: 2upx solid #e8e8e8; padding-bottom: 20upx; width: 95%; max-width: 95%; 5 | text { font-size: 40upx; } 6 | input { display: inline-block; min-width: 500upx; padding-left: 20upx; } 7 | } -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/pages/member/collection/index.scss: -------------------------------------------------------------------------------- 1 | .title { font-size: 28rpx; color: $core-content-color; } 2 | .desc { font-size: 24rpx; color: $core-content-color; } 3 | -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/pages/member/coupon/index.scss: -------------------------------------------------------------------------------- 1 | page { background: #fff; } 2 | .coreshop-coupon { 3 | .coreshop-coupon-card-view { position: relative; position: relative; margin: 27.27rpx 27.27rpx 0; 4 | .card-num-view { position: relative; background: #FFECED; border-radius: 0 0 14.54rpx 14.54rpx; border-top: 2rpx dashed #dedbdb; padding: 10.9rpx 27.27rpx; color: #999898; 5 | .btnUnfold { position: absolute; right: 27.27rpx; top: 14.54rpx; } 6 | } 7 | .card-num-view::before { content: ''; position: absolute; width: 36.36rpx; height: 36.36rpx; background: #ffffff; border-radius: 50%; top: -18.18rpx; left: -18.18rpx; } 8 | .card-num-view::after { content: ''; position: absolute; width: 36.36rpx; height: 36.36rpx; background: #ffffff; border-radius: 50%; top: -18.18rpx; right: -18.18rpx; } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/pages/member/distribution/agreement/agreement.scss: -------------------------------------------------------------------------------- 1 | .page-body { background: #FFFFFF; border-top-left-radius: 38rpx; border-top-right-radius: 38rpx; margin: 25rpx; padding: 25rpx; 2 | .u-content { margin-top: 20rpx; color: $u-content-color; font-size: 28rpx; line-height: 1.8; 3 | p { color: $u-tips-color; } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/pages/member/distribution/agreement/agreement.vue: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 27 | 30 | -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/pages/member/distribution/apply/apply.scss: -------------------------------------------------------------------------------- 1 | .contentBody { background-color: #FF7159; height: calc(100vh - 100px); padding-top: 50rpx; 2 | .apply-content { margin: 40rpx auto; padding: 26rpx 0; border-radius: 30rpx; box-shadow: 0 0 10px #aaa; width: 670rpx; min-height: 400rpx; background-color: #fff; } 3 | .agreement { text-decoration: underline; color: #FF7159; } 4 | } 5 | -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/pages/member/distribution/applyState/applyState.scss: -------------------------------------------------------------------------------- 1 | page { background: #FFFFFF; } 2 | .coreshop-status-image-view { position: relative; text-align: center; margin-top: 90.9rpx; margin-bottom: 18.18rpx; background: #FFFFFF; 3 | image { width: 472.72rpx; } 4 | } 5 | -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/pages/member/distribution/index/index.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/pages/member/history/index.scss: -------------------------------------------------------------------------------- 1 | .title {font-size: 28rpx; color: $core-content-color; } 2 | .desc { font-size: 24rpx; color: $core-content-color; } 3 | -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/pages/member/integral/index.scss: -------------------------------------------------------------------------------- 1 | page { background-color: #fff; } 2 | .integral-top { width: 690rpx; height: 301rpx; background-image: url('/static/images/common/bg.png'); background-size: cover; background-position: center; text-align: center; width: 698rpx; margin: 10rpx auto 20rpx; border-radius: 12rpx; padding: 40rpx 0; box-shadow: 1rpx 5rpx 16rpx 0px rgba(229,77,66, 0.81); } 3 | -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/pages/member/merchant/detail/detail.scss: -------------------------------------------------------------------------------- 1 | .cu-steps .coreshop-list-item.select .icon-view { border: 7.27rpx solid #19be6b; } 2 | .cu-steps .coreshop-list-item.select:before { border-color: #19be6b; } 3 | -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/pages/member/order/detail/detail.scss: -------------------------------------------------------------------------------- 1 | .delivery-box { padding: 20rpx 0rpx 20rpx 0rpx; } 2 | .coreshop-cell-group .coreshop-cell-item .coreshop-cell-item-ft .coreshop-cell-ft-view { position: relative; overflow: hidden; color: #666; font-size: 24rpx; text-align: left; white-space: nowrap; } 3 | -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/pages/member/order/expressDelivery/expressDelivery.scss: -------------------------------------------------------------------------------- 1 | .wrap { padding: 24rpx 24rpx 24rpx 40rpx; 2 | .u-order-title { color: #333333; font-weight: bold; font-size: 32rpx; } 3 | .u-order-title.unacive { color: rgb(150, 150, 150); } 4 | .u-order-desc { color: rgb(150, 150, 150); font-size: 28rpx; margin-bottom: 6rpx; } 5 | .u-order-time { color: rgb(200, 200, 200); font-size: 26rpx; } 6 | } 7 | -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/pages/payment/pay/pay.scss: -------------------------------------------------------------------------------- 1 | .coreshop-list.menu-avatar > .coreshop-list-item .content { position: absolute; left: 106rpx; width: calc(100% - 96rpx - 60rpx - 120rpx - 20rpx); line-height: 1.6em; } 2 | .coreshop-list.menu-avatar > .coreshop-list-item .action { width: auto; text-align: center; margin-right: 30rpx; } 3 | -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/pages/payment/waiting/waiting.scss: -------------------------------------------------------------------------------- 1 | .content { position: relative; height: 80vh; 2 | .content-c { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; 3 | .load-img { width: 100upx; height: 100upx; } 4 | .load-text { font-size: 26upx; } 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/pages/placeOrder/invoice/invoice.scss: -------------------------------------------------------------------------------- 1 | .cu-form-group .title { min-width: calc(4em + 15px); } 2 | 3 | .coreshop-bottomBox .coreshop-btn { width: 100%; } 4 | .cheque { position: relative; } 5 | .cheque-content { position: absolute; left: 15rpx; top: 90rpx; z-index: 10; width: calc(100% - 30rpx);; background-color: #fff; box-shadow: 0 0 0.666667vw 0.4vw rgba(0, 0, 0, .13); border-radius: 10rpx; padding: 20rpx; } 6 | .tips-item { margin-bottom: 20rpx; } 7 | .tips-name { font-size: 32rpx; line-height: 35rpx; color: #333; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; margin-bottom: 10rpx; } 8 | .sub-div { display: flex; width: 100%; justify-content: space-between; height: 30rpx; font-size: 24rpx; line-height: 30rpx; color: #999; } 9 | .num { display: inline-block; } 10 | -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/pages/placeOrder/storeList/storeList.scss: -------------------------------------------------------------------------------- 1 | .coreshop-list { margin: 20rpx; 2 | &.menu-avatar { 3 | & > .coreshop-list-item { height: auto; 4 | & > .coreshop-avatar { position: absolute; left: 15rpx; } 5 | .content { position: initial; width: calc(100% - 96rpx - 120rpx - 20rpx); } 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/pages/serviceGoods/details/details.scss: -------------------------------------------------------------------------------- 1 | .coreshop-limited-seckill-box .coreshop-time-right { position: absolute; right: 30rpx; top: 10rpx; } 2 | -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/pages/share/sharePoster/sharePoster.scss: -------------------------------------------------------------------------------- 1 | .share-top { margin-bottom: 50upx; padding-top: 50upx; text-align: center; 2 | .share-img { box-shadow: 0 0 20upx #ccc; width: 80%; } 3 | } 4 | .share-bot { width: 80%; margin: 0 auto; } 5 | -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/pages/storeMap/storeMap.scss: -------------------------------------------------------------------------------- 1 | .content { width: 100%; /* #ifdef H5 */ height: calc(100vh - 44px); /* #endif */ } 2 | .map-body { width: 100%; height: 700rpx; position: relative; } 3 | .store-list { background-color: #fff; height: calc(100vh - 44px - 700rpx); 4 | .coreshop-list-item { min-height: 160rpx; 5 | .action { width: 130rpx; } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/static/images/common/address-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/static/images/common/address-line.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/static/images/common/anc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/static/images/common/anc.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/static/images/common/are.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/static/images/common/are.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/static/images/common/arg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/static/images/common/arg.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/static/images/common/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/static/images/common/bg.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/static/images/common/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/static/images/common/camera.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/static/images/common/del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/static/images/common/del.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/static/images/common/empty-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/static/images/common/empty-banner.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/static/images/common/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/static/images/common/empty.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/static/images/common/invoice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/static/images/common/invoice.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/static/images/common/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/static/images/common/loading.gif -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/static/images/common/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/static/images/common/menu.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/static/images/common/seller-content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/static/images/common/seller-content.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/static/images/common/share-friend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/static/images/common/share-friend.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/static/images/common/share-poster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/static/images/common/share-poster.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/static/images/common/tab-ic-hom-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/static/images/common/tab-ic-hom-selected.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/static/images/common/tab-ic-hom-unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/static/images/common/tab-ic-hom-unselected.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/static/images/common/tab-ic-me-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/static/images/common/tab-ic-me-selected.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/static/images/common/tab-ic-me-unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/static/images/common/tab-ic-me-unselected.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/static/images/common/user_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/static/images/common/user_black.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/static/images/common/yl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/static/images/common/yl.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/static/images/coupon/coupon-element.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/static/images/coupon/coupon-element.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/static/images/coupon/element-ic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/static/images/coupon/element-ic.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/static/images/distribution/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/static/images/distribution/01.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/static/images/distribution/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/static/images/distribution/02.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/static/images/distribution/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/static/images/distribution/03.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/static/images/distribution/distribution_icon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/static/images/distribution/distribution_icon1.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/static/images/distribution/distribution_icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/static/images/distribution/distribution_icon2.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/static/images/distribution/distribution_icon3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/static/images/distribution/distribution_icon3.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/static/images/distribution/distribution_icon4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/static/images/distribution/distribution_icon4.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/static/images/distribution/distribution_icon5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/static/images/distribution/distribution_icon5.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/static/images/distribution/distribution_icon6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/static/images/distribution/distribution_icon6.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/static/images/distribution/distribution_icon7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/static/images/distribution/distribution_icon7.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/static/images/distribution/distribution_icon8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/static/images/distribution/distribution_icon8.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/static/images/distribution/wxh5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/static/images/distribution/wxh5.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/static/images/distribution/wxxcx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/static/images/distribution/wxxcx.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/static/images/good/titlebg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/static/images/good/titlebg.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/static/images/indexMenus/index01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/static/images/indexMenus/index01.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/static/images/indexMenus/index01_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/static/images/indexMenus/index01_1.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/static/images/indexMenus/index02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/static/images/indexMenus/index02.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/static/images/indexMenus/index02_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/static/images/indexMenus/index02_1.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/static/images/indexMenus/index03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/static/images/indexMenus/index03.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/static/images/indexMenus/index03_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/static/images/indexMenus/index03_1.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/static/images/indexMenus/index04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/static/images/indexMenus/index04.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/static/images/indexMenus/index04_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/static/images/indexMenus/index04_1.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/static/images/login/nologin_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/static/images/login/nologin_bg.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/static/images/logo/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/static/images/logo/logo.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/static/images/logo/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/static/images/logo/logo2.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/static/images/map/location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/static/images/map/location.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/static/images/my/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/static/images/my/1.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/static/images/my/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/static/images/my/2.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/static/images/payments/alipay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/static/images/payments/alipay.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/static/images/payments/balancepay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/static/images/payments/balancepay.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/static/images/payments/offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/static/images/payments/offline.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/static/images/payments/pay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/static/images/payments/pay.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/static/images/payments/wait-pay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/static/images/payments/wait-pay.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/static/images/payments/wechatpay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/static/images/payments/wechatpay.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/static/images/pinTuan/pinTuanListBg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/static/images/pinTuan/pinTuanListBg.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/uview-ui/components/u-loading-page/u-loading-page.vue: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 22 | 23 | 26 | -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/uview-ui/components/u-parse/libs/handler.wxs: -------------------------------------------------------------------------------- 1 | var inline = { 2 | abbr: 1, 3 | b: 1, 4 | big: 1, 5 | code: 1, 6 | del: 1, 7 | em: 1, 8 | i: 1, 9 | ins: 1, 10 | label: 1, 11 | q: 1, 12 | small: 1, 13 | span: 1, 14 | strong: 1, 15 | sub: 1, 16 | sup: 1 17 | } 18 | module.exports = { 19 | use: function(item) { 20 | return !item.c && !inline[item.name] && (item.attrs.style || '').indexOf('display:inline') == -1 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/uview-ui/components/u-tr/u-tr.vue: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 18 | 19 | 26 | -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/uview-ui/components/uview-v1/uview-v1.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/CoreShop/uview-ui/components/uview-v1/uview-v1.vue -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/uview-ui/index.scss: -------------------------------------------------------------------------------- 1 | // 引入公共基础类 2 | @import "./libs/css/common.scss"; 3 | @import "./libs/css/color.scss"; 4 | 5 | // 非nvue的样式 6 | /* #ifndef APP-NVUE */ 7 | @import "./libs/css/style.vue.scss"; 8 | /* #endif */ 9 | 10 | // nvue的特有样式 11 | /* #ifdef APP-NVUE */ 12 | @import "./libs/css/style.nvue.scss"; 13 | /* #endif */ 14 | 15 | // 小程序特有的样式 16 | /* #ifdef MP */ 17 | @import "./libs/css/style.mp.scss"; 18 | /* #endif */ 19 | 20 | // H5特有的样式 21 | /* #ifdef H5 */ 22 | @import "./libs/css/style.h5.scss"; 23 | /* #endif */ -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/uview-ui/libs/config/config.js: -------------------------------------------------------------------------------- 1 | // 此版本发布于2022-04-19 2 | let version = '1.8.6'; 3 | 4 | export default { 5 | v: version, 6 | version: version, 7 | // 主题名称 8 | type: [ 9 | 'primary', 10 | 'success', 11 | 'info', 12 | 'error', 13 | 'warning' 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/uview-ui/libs/config/zIndex.js: -------------------------------------------------------------------------------- 1 | // uniapp在H5中各API的z-index值如下: 2 | /** 3 | * actionsheet: 999 4 | * modal: 999 5 | * navigate: 998 6 | * tabbar: 998 7 | * toast: 999 8 | */ 9 | 10 | export default { 11 | toast: 10090, 12 | noNetwork: 10080, 13 | // popup包含popup,actionsheet,keyboard,picker的值 14 | popup: 10075, 15 | mask: 10070, 16 | navbar: 980, 17 | topTips: 975, 18 | sticky: 970, 19 | indexListSticky: 965, 20 | } -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/uview-ui/libs/css/style.components.scss: -------------------------------------------------------------------------------- 1 | // 定义混入指令,用于在非nvue环境下的flex定义,因为nvue没有display属性,会报错 2 | @mixin vue-flex($direction: row) { 3 | /* #ifndef APP-NVUE */ 4 | display: flex; 5 | flex-direction: $direction; 6 | /* #endif */ 7 | } -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/uview-ui/libs/css/style.h5.scss: -------------------------------------------------------------------------------- 1 | /* H5的时候,隐藏滚动条 */ 2 | ::-webkit-scrollbar { 3 | display: none; 4 | width: 0 !important; 5 | height: 0 !important; 6 | -webkit-appearance: none; 7 | background: transparent; 8 | } 9 | -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/uview-ui/libs/css/style.nvue.scss: -------------------------------------------------------------------------------- 1 | .nvue { 2 | font-size: 24rpx; 3 | } -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/uview-ui/libs/function/$parent.js: -------------------------------------------------------------------------------- 1 | // 获取父组件的参数,因为支付宝小程序不支持provide/inject的写法 2 | // this.$parent在非H5中,可以准确获取到父组件,但是在H5中,需要多次this.$parent.$parent.xxx 3 | // 这里默认值等于undefined有它的含义,因为最顶层元素(组件)的$parent就是undefined,意味着不传name 4 | // 值(默认为undefined),就是查找最顶层的$parent 5 | export default function $parent(name = undefined) { 6 | let parent = this.$parent; 7 | // 通过while历遍,这里主要是为了H5需要多层解析的问题 8 | while (parent) { 9 | // 父组件 10 | if (parent.$options && parent.$options.name !== name) { 11 | // 如果组件的name不相等,继续上一级寻找 12 | parent = parent.$parent; 13 | } else { 14 | return parent; 15 | } 16 | } 17 | return false; 18 | } -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/uview-ui/libs/function/addUnit.js: -------------------------------------------------------------------------------- 1 | import validation from './test.js'; 2 | 3 | // 添加单位,如果有rpx,%,px等单位结尾或者值为auto,直接返回,否则加上rpx单位结尾 4 | export default function addUnit(value = 'auto', unit = 'rpx') { 5 | value = String(value); 6 | // 用uView内置验证规则中的number判断是否为数值 7 | return validation.number(value) ? `${value}${unit}` : value; 8 | } -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/uview-ui/libs/function/bem.js: -------------------------------------------------------------------------------- 1 | function bem(name, conf) { 2 | 3 | } 4 | 5 | module.exports.bem = bem; 6 | -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/uview-ui/libs/function/debounce.js: -------------------------------------------------------------------------------- 1 | let timeout = null; 2 | 3 | /** 4 | * 防抖原理:一定时间内,只有最后一次操作,再过wait毫秒后才执行函数 5 | * 6 | * @param {Function} func 要执行的回调函数 7 | * @param {Number} wait 延时的时间 8 | * @param {Boolean} immediate 是否立即执行 9 | * @return null 10 | */ 11 | function debounce(func, wait = 500, immediate = false) { 12 | // 清除定时器 13 | if (timeout !== null) clearTimeout(timeout); 14 | // 立即执行,此类情况一般用不到 15 | if (immediate) { 16 | var callNow = !timeout; 17 | timeout = setTimeout(function() { 18 | timeout = null; 19 | }, wait); 20 | if (callNow) typeof func === 'function' && func(); 21 | } else { 22 | // 设置定时器,当最后一次操作后,timeout不会再被清除,所以在延时wait毫秒后执行func回调方法 23 | timeout = setTimeout(function() { 24 | typeof func === 'function' && func(); 25 | }, wait); 26 | } 27 | } 28 | 29 | export default debounce 30 | -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/uview-ui/libs/function/deepClone.js: -------------------------------------------------------------------------------- 1 | // 判断arr是否为一个数组,返回一个bool值 2 | function isArray (arr) { 3 | return Object.prototype.toString.call(arr) === '[object Array]'; 4 | } 5 | 6 | // 深度克隆 7 | function deepClone (obj) { 8 | // 对常见的“非”值,直接返回原来值 9 | if([null, undefined, NaN, false].includes(obj)) return obj; 10 | if(typeof obj !== "object" && typeof obj !== 'function') { 11 | //原始类型直接返回 12 | return obj; 13 | } 14 | var o = isArray(obj) ? [] : {}; 15 | for(let i in obj) { 16 | if(obj.hasOwnProperty(i)){ 17 | o[i] = typeof obj[i] === "object" ? deepClone(obj[i]) : obj[i]; 18 | } 19 | } 20 | return o; 21 | } 22 | 23 | export default deepClone; 24 | -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/uview-ui/libs/function/random.js: -------------------------------------------------------------------------------- 1 | function random(min, max) { 2 | if (min >= 0 && max > 0 && max >= min) { 3 | let gab = max - min + 1; 4 | return Math.floor(Math.random() * gab + min); 5 | } else { 6 | return 0; 7 | } 8 | } 9 | 10 | export default random; 11 | -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/uview-ui/libs/function/randomArray.js: -------------------------------------------------------------------------------- 1 | // 打乱数组 2 | function randomArray(array = []) { 3 | // 原理是sort排序,Math.random()产生0<= x < 1之间的数,会导致x-0.05大于或者小于0 4 | return array.sort(() => Math.random() - 0.5); 5 | } 6 | 7 | export default randomArray 8 | -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/uview-ui/libs/function/sys.js: -------------------------------------------------------------------------------- 1 | export function os() { 2 | return uni.getSystemInfoSync().platform; 3 | }; 4 | 5 | export function sys() { 6 | return uni.getSystemInfoSync(); 7 | } 8 | 9 | 10 | -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/uview-ui/libs/function/throttle.js: -------------------------------------------------------------------------------- 1 | let timer, flag; 2 | /** 3 | * 节流原理:在一定时间内,只能触发一次 4 | * 5 | * @param {Function} func 要执行的回调函数 6 | * @param {Number} wait 延时的时间 7 | * @param {Boolean} immediate 是否立即执行 8 | * @return null 9 | */ 10 | function throttle(func, wait = 500, immediate = true) { 11 | if (immediate) { 12 | if (!flag) { 13 | flag = true; 14 | // 如果是立即执行,则在wait毫秒内开始时执行 15 | typeof func === 'function' && func(); 16 | timer = setTimeout(() => { 17 | flag = false; 18 | }, wait); 19 | } 20 | } else { 21 | if (!flag) { 22 | flag = true 23 | // 如果是非立即执行,则在wait毫秒内的结束处执行 24 | timer = setTimeout(() => { 25 | flag = false 26 | typeof func === 'function' && func(); 27 | }, wait); 28 | } 29 | 30 | } 31 | }; 32 | export default throttle 33 | -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/uview-ui/libs/function/toast.js: -------------------------------------------------------------------------------- 1 | function toast(title, duration = 1500) { 2 | uni.showToast({ 3 | title: title, 4 | icon: 'none', 5 | duration: duration 6 | }) 7 | } 8 | 9 | export default toast 10 | -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/uview-ui/libs/function/trim.js: -------------------------------------------------------------------------------- 1 | function trim(str, pos = 'both') { 2 | if (pos == 'both') { 3 | return str.replace(/^\s+|\s+$/g, ""); 4 | } else if (pos == "left") { 5 | return str.replace(/^\s*/, ''); 6 | } else if (pos == 'right') { 7 | return str.replace(/(\s*$)/g, ""); 8 | } else if (pos == 'all') { 9 | return str.replace(/\s+/g, ""); 10 | } else { 11 | return str; 12 | } 13 | } 14 | 15 | export default trim 16 | -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/uview-ui/libs/mixin/mpShare.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | onLoad() { 3 | // 设置默认的转发参数 4 | this.$u.mpShare = { 5 | title: '', // 默认为小程序名称 6 | path: '', // 默认为当前页面路径 7 | imageUrl: '' // 默认为当前页面的截图 8 | } 9 | }, 10 | onShareAppMessage() { 11 | return this.$u.mpShare 12 | }, 13 | // #ifdef MP-WEIXIN 14 | onShareTimeline() { 15 | return this.$u.mpShare 16 | } 17 | // #endif 18 | } 19 | -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/uview-ui/libs/store/index.js: -------------------------------------------------------------------------------- 1 | // 暂时不用vuex模块方式实现,将该方法直接放入到/store/index.js中 2 | const module = { 3 | actions: { 4 | $uStore({rootState}, params) { 5 | let nameArr = params.name.split('.'); 6 | if(nameArr.length >= 2) { 7 | let obj = rootState[nameArr[0]]; 8 | for(let i = 1; i < nameArr.length - 1; i ++) { 9 | obj = obj[nameArr[i]]; 10 | } 11 | obj[nameArr[nameArr.length - 1]] = params.value; 12 | } else { 13 | rootState[params.name] = params.value; 14 | } 15 | } 16 | } 17 | } 18 | 19 | export default module -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/CoreShop/uview-ui/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "uView", 3 | "version": "1.8.6", 4 | "description": "uView UI,是uni-app生态优秀的UI框架,全面的组件和便捷的工具会让您信手拈来,如鱼得水", 5 | "main": "index.js", 6 | "keywords": [ 7 | "uview", 8 | "ui", 9 | "uni-app" 10 | ], 11 | "scripts": { 12 | "test": "echo \"Error: no test specified\" && exit 1" 13 | }, 14 | "repository": { 15 | "type": "git", 16 | "url": "" 17 | }, 18 | "devDependencies": { 19 | "node-sass": "^4.14.0", 20 | "sass-loader": "^8.0.2" 21 | }, 22 | "author": "uView", 23 | "license": "MIT", 24 | "id": "uview-v1", 25 | "dcloudext": { 26 | "category": [ 27 | "前端组件", 28 | "通用组件" 29 | ] 30 | } 31 | } -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/resource/psd/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/resource/psd/logo2.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/resource/psd/logo2.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/resource/psd/logo2.psd -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/resource/psd/swiper-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/resource/psd/swiper-1.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/resource/psd/swiper-1.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/resource/psd/swiper-1.psd -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/resource/psd/swiper-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/resource/psd/swiper-2.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/resource/psd/swiper-2.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/resource/psd/swiper-2.psd -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/resource/psd/swiper-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/resource/psd/swiper-3.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/resource/psd/swiper-3.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/resource/psd/swiper-3.psd -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/resource/psd/swiper-background-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/resource/psd/swiper-background-1.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/resource/psd/swiper-background-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/resource/psd/swiper-background-2.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/resource/psd/swiper-background-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/resource/psd/swiper-background-3.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/resource/static/images/agent/applyBg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/resource/static/images/agent/applyBg.jpg -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/resource/static/images/agent/applyBg.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/resource/static/images/agent/applyBg.psd -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/resource/static/images/common/FLOWCY.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/resource/static/images/common/FLOWCY.jpg -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/resource/static/images/common/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/resource/static/images/common/camera.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/resource/static/images/common/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/resource/static/images/common/close.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/resource/static/images/common/del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/resource/static/images/common/del.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/resource/static/images/common/ic-location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/resource/static/images/common/ic-location.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/resource/static/images/common/ic-unfold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/resource/static/images/common/ic-unfold.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/resource/static/images/common/non_real_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/resource/static/images/common/non_real_name.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/resource/static/images/common/real_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/resource/static/images/common/real_name.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/resource/static/images/common/reward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/resource/static/images/common/reward.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/resource/static/images/default/swiper-background-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/resource/static/images/default/swiper-background-1.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/resource/static/images/default/swiper-background-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/resource/static/images/default/swiper-background-2.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/resource/static/images/default/swiper-background-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/resource/static/images/default/swiper-background-3.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/resource/static/images/distribution/card_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/resource/static/images/distribution/card_bg.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/resource/static/images/distribution/commission_bg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/resource/static/images/distribution/commission_bg1.jpg -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/resource/static/images/distribution/commission_card_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/resource/static/images/distribution/commission_card_bg.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/resource/static/images/empty/address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/resource/static/images/empty/address.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/resource/static/images/empty/authority.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/resource/static/images/empty/authority.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/resource/static/images/empty/cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/resource/static/images/empty/cart.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/resource/static/images/empty/collect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/resource/static/images/empty/collect.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/resource/static/images/empty/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/resource/static/images/empty/comment.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/resource/static/images/empty/coupon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/resource/static/images/empty/coupon.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/resource/static/images/empty/data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/resource/static/images/empty/data.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/resource/static/images/empty/history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/resource/static/images/empty/history.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/resource/static/images/empty/message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/resource/static/images/empty/message.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/resource/static/images/empty/messageList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/resource/static/images/empty/messageList.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/resource/static/images/empty/news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/resource/static/images/empty/news.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/resource/static/images/empty/order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/resource/static/images/empty/order.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/resource/static/images/empty/page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/resource/static/images/empty/page.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/resource/static/images/empty/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/resource/static/images/empty/search.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/resource/static/images/empty/wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/resource/static/images/empty/wifi.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/resource/static/images/logo/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/resource/static/images/logo/logo.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/resource/static/images/merchant/shop_headbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/resource/static/images/merchant/shop_headbg.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/resource/static/images/my/invite-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/resource/static/images/my/invite-bg.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/resource/static/images/reward/wx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/resource/static/images/reward/wx.png -------------------------------------------------------------------------------- /CoreCms.Net.Uni-App/resource/static/images/reward/zfb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Uni-App/resource/static/images/reward/zfb.jpg -------------------------------------------------------------------------------- /CoreCms.Net.Utility/CoreCms.Net.Utility.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net8.0 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /CoreCms.Net.Utility/Helper/OrderHelper.cs: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | * Project: CoreCms.Net * 3 | * Web: https://CoreCms.Net * 4 | * ProjectName: 核心内容管理系统 * 5 | * Author: 大灰灰 * 6 | * Email: JianWeie@163.com * 7 | * CreateTime: 2020-04-09 0:01:28 8 | * Description: 暂无 9 | ***********************************************************************/ 10 | 11 | 12 | namespace CoreCms.Net.Utility.Helper 13 | { 14 | public class OrderHelper 15 | { 16 | 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CoreCms.Net.WeChat.Service/CoreCms.Net.WeChat.Service.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net8.0 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /CoreCms.Net.WeChat.Service/Services/HttpClients/IWechatApiHttpClientFactory.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using SKIT.FlurlHttpClient.Wechat.Api; 6 | 7 | namespace CoreCms.Net.WeChat.Service.HttpClients 8 | { 9 | public interface IWeChatApiHttpClientFactory 10 | { 11 | /// 12 | /// 微信公众号请求 13 | /// 14 | /// 15 | WechatApiClient CreateWeXinClient(); 16 | 17 | /// 18 | /// 微信小程序请求 19 | /// 20 | /// 21 | WechatApiClient CreateWxOpenClient(); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/.config/dotnet-tools.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "isRoot": true, 4 | "tools": { 5 | "dotnet-ef": { 6 | "version": "3.1.1", 7 | "commands": [ 8 | "dotnet-ef" 9 | ] 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM mcr.microsoft.com/dotnet/aspnet:5.0 2 | 3 | RUN apt-get update && apt-get install -y libgdiplus 4 | 5 | WORKDIR /app 6 | 7 | EXPOSE 80 8 | 9 | COPY ./ /app 10 | 11 | ENV TZ=Asia/Shanghai 12 | 13 | ENTRYPOINT ["dotnet", "CoreCms.Net.Web.Admin.dll"] -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/Program.cs -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "iisSettings": { 3 | "windowsAuthentication": false, 4 | "anonymousAuthentication": true, 5 | "iisExpress": { 6 | "applicationUrl": "http://localhost:1987", 7 | "sslPort": 0 8 | } 9 | }, 10 | "profiles": { 11 | "IIS Express": { 12 | "commandName": "IISExpress", 13 | "launchBrowser": true, 14 | "environmentVariables": { 15 | "ASPNETCORE_ENVIRONMENT": "Development" 16 | } 17 | }, 18 | "CoreCms.Net.Web.Admin": { 19 | "commandName": "Project", 20 | "launchBrowser": true, 21 | "environmentVariables": { 22 | "ASPNETCORE_ENVIRONMENT": "Development" 23 | }, 24 | "applicationUrl": "http://localhost:1987" 25 | } 26 | } 27 | } -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/WxPayCert/此处用于存放微信支付证书.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/WxPayCert/此处用于存放微信支付证书.txt -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/illegalWord/说明.txt: -------------------------------------------------------------------------------- 1 | 此文件夹为过滤敏感词存放词库所用。词库内容请保持“|”分隔 -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/files/2021-05-01/20210501075941520-CoreCmsBillDelivery导出(查询结果).xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/wwwroot/files/2021-05-01/20210501075941520-CoreCmsBillDelivery导出(查询结果).xls -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/files/2021-05-02/20210502104200309-数据库表导出.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/wwwroot/files/2021-05-02/20210502104200309-数据库表导出.xls -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/ckeditor5/README.md: -------------------------------------------------------------------------------- 1 | CKEditor 5 decoupled document editor build v29.0.0 2 | ================================================== 3 | 4 | In order to start using CKEditor 5 Builds, configure or customize them, please visit http://docs.ckeditor.com/ckeditor5/latest/builds/index.html 5 | 6 | ## License 7 | 8 | Licensed under the terms of [GNU General Public License Version 2 or later](http://www.gnu.org/licenses/gpl.html). 9 | For full details about the license, please check the LICENSE.md file. 10 | -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/ckeditor5/sample/img/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/wwwroot/lib/ckeditor5/sample/img/bg.png -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/ckeditor5/sample/img/umbrellas.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/wwwroot/lib/ckeditor5/sample/img/umbrellas.jpg -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/ckeditor5/translations/af.js: -------------------------------------------------------------------------------- 1 | !function(e){const i=e.af=e.af||{};i.dictionary=Object.assign(i.dictionary||{},{"Align center":"Belyn in die middel","Align left":"Belyn links","Align right":"Belyn regs","Block quote":"Blok-aanhaling",Bold:"Vetgedruk",Cancel:"Kanselleer","Cannot upload file:":"Lêer nie opgelaai nie:","Could not insert image at the current position.":"Beeld kan nie in die posisie toegevoeg word nie.","Could not obtain resized image URL.":"","Insert image or file":"Voeg beeld of lêer in","Inserting image failed":"",Italic:"Skuinsgedruk",Justify:"Belyn beide kante","Remove color":"",Save:"Berg","Selecting resized image failed":"","Show more items":"",Strikethrough:"Deurgetrek","Text alignment":"Teksbelyning","Text alignment toolbar":"",Underline:"Onderstreep"}),i.getPluralForm=function(e){return 1!=e}}(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/ckeditor5/translations/gu.js: -------------------------------------------------------------------------------- 1 | !function(n){const o=n.gu=n.gu||{};o.dictionary=Object.assign(o.dictionary||{},{"Block quote":" વિચાર ટાંકો",Bold:"ઘાટુ - બોલ્ડ્","Cannot upload file:":"ફાઇલ અપલોડ ન થઇ શકી",Italic:"ત્રાંસુ - ઇટલિક્",Strikethrough:"",Underline:"નીચે લિટી - અન્ડરલાઇન્"}),o.getPluralForm=function(n){return 1!=n}}(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/ckeditor5/translations/kk.js: -------------------------------------------------------------------------------- 1 | !function(n){const t=n.kk=n.kk||{};t.dictionary=Object.assign(t.dictionary||{},{"Align center":"Ортадан туралау","Align left":"Солға туралау","Align right":"Оңға туралау",Justify:"","Text alignment":"Мәтінді туралау","Text alignment toolbar":"Мәтінді туралау құралдар тақтасы"}),t.getPluralForm=function(n){return 1!=n}}(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/ckeditor5/translations/ms.js: -------------------------------------------------------------------------------- 1 | !function(n){const i=n.ms=n.ms||{};i.dictionary=Object.assign(i.dictionary||{},{"Cannot upload file:":"Gagal memuat naik fail"}),i.getPluralForm=function(n){return 0}}(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/ckeditor5/translations/oc.js: -------------------------------------------------------------------------------- 1 | !function(o){const n=o.oc=o.oc||{};n.dictionary=Object.assign(n.dictionary||{},{Bold:"Gras",Cancel:"Anullar",Italic:"Italica","Remove color":"",Save:"Enregistrar","Show more items":"",Strikethrough:"",Underline:""}),n.getPluralForm=function(o){return o>1}}(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/ckeditor5/translations/tt.js: -------------------------------------------------------------------------------- 1 | !function(o){const t=o.tt=o.tt||{};t.dictionary=Object.assign(t.dictionary||{},{Bold:"Калын",Cancel:"",Italic:"",Redo:"Кабатла","Remove color":"",Save:"Сакла","Show more items":"",Strikethrough:"",Underline:"",Undo:""}),t.getPluralForm=function(o){return 0}}(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/custom/css/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/wwwroot/lib/custom/css/iconfont.eot -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/custom/css/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/wwwroot/lib/custom/css/iconfont.ttf -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/custom/css/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/wwwroot/lib/custom/css/iconfont.woff -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/custom/css/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/wwwroot/lib/custom/css/iconfont.woff2 -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/custom/element/fonts/element-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/wwwroot/lib/custom/element/fonts/element-icons.ttf -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/custom/element/fonts/element-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/wwwroot/lib/custom/element/fonts/element-icons.woff -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/layui/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/wwwroot/lib/layui/font/iconfont.eot -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/layui/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/wwwroot/lib/layui/font/iconfont.ttf -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/layui/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/wwwroot/lib/layui/font/iconfont.woff -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/layui/font/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/wwwroot/lib/layui/font/iconfont.woff2 -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/controller/common.js: -------------------------------------------------------------------------------- 1 | /** layuiAdmin.pro-v1.7.0 LPPL License */ 2 | ; layui.define(function (e) { 3 | var i = (layui.$, layui.layer, layui.laytpl, layui.setter, layui.view, layui.admin); i.events.logout = function () { 4 | i.exit(); 5 | //i.req({ 6 | // url: "./json/user/logout.js", type: "get", data: {}, done: function (e) { 7 | // i.exit() 8 | // } 9 | //}) 10 | }, e("common", {}) 11 | }); -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/controller/zTree/css/metroStyle/img/line_conn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/controller/zTree/css/metroStyle/img/line_conn.png -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/controller/zTree/css/metroStyle/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/controller/zTree/css/metroStyle/img/loading.gif -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/controller/zTree/css/metroStyle/img/metro.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/controller/zTree/css/metroStyle/img/metro.gif -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/controller/zTree/css/metroStyle/img/metro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/controller/zTree/css/metroStyle/img/metro.png -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/controller/zTree/css/zTreeStyle/img/diy/1_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/controller/zTree/css/zTreeStyle/img/diy/1_close.png -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/controller/zTree/css/zTreeStyle/img/diy/1_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/controller/zTree/css/zTreeStyle/img/diy/1_open.png -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/controller/zTree/css/zTreeStyle/img/diy/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/controller/zTree/css/zTreeStyle/img/diy/2.png -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/controller/zTree/css/zTreeStyle/img/diy/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/controller/zTree/css/zTreeStyle/img/diy/3.png -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/controller/zTree/css/zTreeStyle/img/diy/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/controller/zTree/css/zTreeStyle/img/diy/4.png -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/controller/zTree/css/zTreeStyle/img/diy/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/controller/zTree/css/zTreeStyle/img/diy/5.png -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/controller/zTree/css/zTreeStyle/img/diy/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/controller/zTree/css/zTreeStyle/img/diy/6.png -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/controller/zTree/css/zTreeStyle/img/diy/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/controller/zTree/css/zTreeStyle/img/diy/7.png -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/controller/zTree/css/zTreeStyle/img/diy/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/controller/zTree/css/zTreeStyle/img/diy/8.png -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/controller/zTree/css/zTreeStyle/img/diy/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/controller/zTree/css/zTreeStyle/img/diy/9.png -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/controller/zTree/css/zTreeStyle/img/line_conn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/controller/zTree/css/zTreeStyle/img/line_conn.gif -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/controller/zTree/css/zTreeStyle/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/controller/zTree/css/zTreeStyle/img/loading.gif -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/controller/zTree/css/zTreeStyle/img/zTreeStandard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/controller/zTree/css/zTreeStyle/img/zTreeStandard.gif -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/controller/zTree/css/zTreeStyle/img/zTreeStandard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/controller/zTree/css/zTreeStyle/img/zTreeStandard.png -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/lib/extend/treeGrid.css: -------------------------------------------------------------------------------- 1 | .layui-tree-head{ 2 | cursor: pointer; 3 | } -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/lib/extend/treeGrid.js: -------------------------------------------------------------------------------- 1 | /** 2 | 3 | @Name:treeGrid树状表格 4 | @Author:lrd 5 | */ 6 | layui.config({ 7 | base: 'layuiAdmin/lib/extend/' 8 | }).extend({ 9 | dltable:'dltable' 10 | }).define(['laytpl', 'laypage','dltable', 'layer', 'form'], function(exports){ 11 | "use strict"; 12 | var $ = layui.jquery; 13 | var layer = layui.layer; 14 | var dltable = layui.dltable; 15 | var MOD_NAME='treeGrid'; 16 | var treeGrid=$.extend({},dltable); 17 | treeGrid._render=treeGrid.render; 18 | treeGrid.render=function(param){//重写渲染方法 19 | param.isTree=true;//是树表格 20 | treeGrid._render(param); 21 | }; 22 | exports(MOD_NAME, treeGrid); 23 | }); -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/style/dtree/font/dtreefont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/style/dtree/font/dtreefont.eot -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/style/dtree/font/dtreefont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/style/dtree/font/dtreefont.ttf -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/style/dtree/font/dtreefont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/style/dtree/font/dtreefont.woff -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/style/res/bg-none.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/style/res/bg-none.jpg -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/style/res/layui-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/style/res/layui-logo.jpg -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/style/res/logo-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/style/res/logo-black.png -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/style/res/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/style/res/logo.png -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/style/res/logo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/style/res/logo.psd -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/style/res/noImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/style/res/noImage.jpg -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/style/res/noImage.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/style/res/noImage.psd -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/style/res/one-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/style/res/one-big.png -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/style/res/one-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/style/res/one-small.png -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/style/res/template/character.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/style/res/template/character.jpg -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/style/res/template/huge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/style/res/template/huge.jpg -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/style/res/template/portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/style/res/template/portrait.png -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/style/res/two-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/style/res/two-small.png -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/style/res/userwx_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/style/res/userwx_1.jpg -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/style/res/userwx_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/style/res/userwx_2.jpg -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/style/res/userwx_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/style/res/userwx_3.jpg -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/style/res/userwx_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/style/res/userwx_4.jpg -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/style/res/userwx_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/style/res/userwx_5.jpg -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/style/res/userwx_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/wwwroot/lib/layuiAdmin/style/res/userwx_6.jpg -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/lodop/CLodop_Setup_for_Win32NT.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/wwwroot/lib/lodop/CLodop_Setup_for_Win32NT.exe -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/lodop/install_lodop32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/wwwroot/lib/lodop/install_lodop32.exe -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/lodop/install_lodop64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.Admin/wwwroot/lib/lodop/install_lodop64.exe -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/lib/render-html-to-pdf/html2canvas.svg.js: -------------------------------------------------------------------------------- 1 | /* 2 | html2canvas 0.5.0-beta4 3 | Copyright (c) 2017 Niklas von Hertzen 4 | 2017-06-14 Custom build by Erik Koopmans, featuring latest bugfixes and features 5 | 6 | Released under MIT License 7 | */ 8 | 9 | (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o 3 | Copyright (c) 2017 Niklas von Hertzen 4 | 2017-06-14 Custom build by Erik Koopmans, featuring latest bugfixes and features 5 | 6 | Released under MIT License 7 | */ 8 | !function a(b,c,d){function e(g,h){if(!c[g]){if(!b[g]){var i="function"==typeof require&&require;if(!h&&i)return i(g,!0);if(f)return f(g,!0);var j=new Error("Cannot find module '"+g+"'");throw j.code="MODULE_NOT_FOUND",j}var k=c[g]={exports:{}};b[g][0].call(k.exports,function(a){var c=b[g][1][a];return e(c?c:a)},k,k.exports,a,b,c,d)}return c[g].exports}for(var f="function"==typeof require&&require,g=0;g授权 2 | -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/views/system/more.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 获得产品 7 | 8 | 9 | 10 | 11 | 12 | 设置主题 13 | 14 | 15 | 16 | 17 | 18 | 本地便签 19 | 20 | 21 | -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/views/template/tips/404.html: -------------------------------------------------------------------------------- 1 | 404 页面不存在 2 | 3 | 4 | 5 | 6 | 7 | 8 | 4 9 | 0 10 | 4 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/views/template/tips/error.html: -------------------------------------------------------------------------------- 1 | 出错了 2 | 3 | 4 | 5 | 6 | 7 | 8 | 好像出错了呢 9 | 10 | 11 | -------------------------------------------------------------------------------- /CoreCms.Net.Web.Admin/wwwroot/views/template/tips/test.html: -------------------------------------------------------------------------------- 1 | 出错了 2 | 3 | 4 | 5 | 6 | 7 | 8 | 好像出错了呢 9 | 10 | 11 | -------------------------------------------------------------------------------- /CoreCms.Net.Web.WebApi/.config/dotnet-tools.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "isRoot": true, 4 | "tools": { 5 | "dotnet-ef": { 6 | "version": "3.1.2", 7 | "commands": [ 8 | "dotnet-ef" 9 | ] 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /CoreCms.Net.Web.WebApi/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM mcr.microsoft.com/dotnet/aspnet:5.0 2 | 3 | WORKDIR /app 4 | 5 | EXPOSE 80 6 | 7 | COPY ./ /app 8 | 9 | ENV TZ=Asia/Shanghai 10 | 11 | RUN sed -i 's/MinProtocol = TLSv1.2/MinProtocol = TLSv1/g' /etc/ssl/openssl.cnf 12 | RUN sed -i 's/MinProtocol = TLSv1.2/MinProtocol = TLSv1/g' /usr/lib/ssl/openssl.cnf 13 | 14 | ENTRYPOINT ["dotnet", "CoreCms.Net.Web.WebApi.dll"] -------------------------------------------------------------------------------- /CoreCms.Net.Web.WebApi/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.WebApi/Program.cs -------------------------------------------------------------------------------- /CoreCms.Net.Web.WebApi/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "iisSettings": { 3 | "windowsAuthentication": false, 4 | "anonymousAuthentication": true, 5 | "iisExpress": { 6 | "applicationUrl": "http://localhost:2015", 7 | "sslPort": 0 8 | } 9 | }, 10 | "$schema": "http://json.schemastore.org/launchsettings.json", 11 | "profiles": { 12 | "IIS Express": { 13 | "commandName": "IISExpress", 14 | "launchBrowser": true, 15 | "environmentVariables": { 16 | "ASPNETCORE_ENVIRONMENT": "Development" 17 | } 18 | }, 19 | "CoreCms.Net.Web.WebApi": { 20 | "commandName": "Project", 21 | "launchBrowser": true, 22 | "environmentVariables": { 23 | "ASPNETCORE_ENVIRONMENT": "Development" 24 | }, 25 | "applicationUrl": "http://localhost:2015" 26 | } 27 | } 28 | } -------------------------------------------------------------------------------- /CoreCms.Net.Web.WebApi/WxPayCert/此处用于存放微信支付证书.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.WebApi/WxPayCert/此处用于存放微信支付证书.txt -------------------------------------------------------------------------------- /CoreCms.Net.Web.WebApi/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /CoreCms.Net.Web.WebApi/illegalWord/说明.txt: -------------------------------------------------------------------------------- 1 | 此文件夹为过滤敏感词存放词库所用。词库内容请保持“|”分隔 -------------------------------------------------------------------------------- /CoreCms.Net.Web.WebApi/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.WebApi/wwwroot/favicon.ico -------------------------------------------------------------------------------- /CoreCms.Net.Web.WebApi/wwwroot/fonts/SourceHanSansK-Normal.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.WebApi/wwwroot/fonts/SourceHanSansK-Normal.ttf -------------------------------------------------------------------------------- /CoreCms.Net.Web.WebApi/wwwroot/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent:* 2 | Disallow:/ -------------------------------------------------------------------------------- /CoreCms.Net.Web.WebApi/wwwroot/static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.WebApi/wwwroot/static/images/logo.png -------------------------------------------------------------------------------- /CoreCms.Net.Web.WebApi/wwwroot/static/poster/此处会存放临时带背景海报.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.WebApi/wwwroot/static/poster/此处会存放临时带背景海报.txt -------------------------------------------------------------------------------- /CoreCms.Net.Web.WebApi/wwwroot/static/qrCode/weChat/此处会存放用户唯一二维码用于生成带背景海报.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/CoreCms.Net.Web.WebApi/wwwroot/static/qrCode/weChat/此处会存放用户唯一二维码用于生成带背景海报.txt -------------------------------------------------------------------------------- /数据库/SqlServer/20211025/CoreShop20211025带商品数据.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/数据库/SqlServer/20211025/CoreShop20211025带商品数据.bak -------------------------------------------------------------------------------- /数据库/SqlServer/20211119/20211119带商品演示数据.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreUnion/CoreShop/4c1f71bee05a34ef5593d7fc18c38ef6f053a7a5/数据库/SqlServer/20211119/20211119带商品演示数据.bak --------------------------------------------------------------------------------