├── .gitee ├── ISSUE_TEMPLATE.zh-CN.md └── PULL_REQUEST_TEMPLATE.zh-CN.md ├── .gitignore ├── LICENSE ├── README.en.md ├── README.md ├── abpshop ├── .dockerignore ├── .gitattributes ├── .gitignore ├── AbpShop.sln ├── AbpShop.sln.DotSettings ├── common.props ├── src │ ├── AbpShop.Application.Contracts │ │ ├── AbpShop.Application.Contracts.csproj │ │ ├── AbpShopApplicationContractsModule.cs │ │ ├── AbpShopDtoExtensions.cs │ │ ├── Dto │ │ │ ├── FilterRequestDto.cs │ │ │ └── Merchant │ │ │ │ ├── CommunityDto.cs │ │ │ │ └── CreateUpdateCommunityDto.cs │ │ ├── IAppService │ │ │ └── ICommunityAppService.cs │ │ └── Permissions │ │ │ ├── AbpShopPermissionDefinitionProvider.cs │ │ │ └── AbpShopPermissions.cs │ ├── AbpShop.Application │ │ ├── AbpShop.Application.csproj │ │ ├── AbpShopAppService.cs │ │ ├── AbpShopApplicationAutoMapperProfile.cs │ │ ├── AbpShopApplicationModule.cs │ │ ├── AppSerivce │ │ │ └── CommunityAppService.cs │ │ └── Third │ │ │ └── WeChat │ │ │ ├── ReturnCode.cs │ │ │ ├── WeChatRestApi.cs │ │ │ └── WechatDto.cs │ ├── AbpShop.DbMigrator │ │ ├── AbpShop.DbMigrator.csproj │ │ ├── AbpShopDbMigratorModule.cs │ │ ├── DbMigratorHostedService.cs │ │ ├── Program.cs │ │ └── appsettings.json │ ├── AbpShop.Domain.Shared │ │ ├── AbpShop.Domain.Shared.csproj │ │ ├── AbpShopDomainErrorCodes.cs │ │ ├── AbpShopDomainSharedModule.cs │ │ ├── Localization │ │ │ ├── AbpShop │ │ │ │ ├── cs.json │ │ │ │ ├── en.json │ │ │ │ ├── pl-PL.json │ │ │ │ ├── pt-BR.json │ │ │ │ ├── ru.json │ │ │ │ ├── sl.json │ │ │ │ ├── tr.json │ │ │ │ ├── vi.json │ │ │ │ ├── zh-Hans.json │ │ │ │ └── zh-Hant.json │ │ │ └── AbpShopResource.cs │ │ └── MultiTenancy │ │ │ └── MultiTenancyConsts.cs │ ├── AbpShop.Domain │ │ ├── AbpShop.Domain.csproj │ │ ├── AbpShopConsts.cs │ │ ├── AbpShopDomainModule.cs │ │ ├── Data │ │ │ ├── AbpShopDbMigrationService.cs │ │ │ ├── IAbpShopDbSchemaMigrator.cs │ │ │ └── NullAbpShopDbSchemaMigrator.cs │ │ ├── IdentityServer │ │ │ └── IdentityServerDataSeedContributor.cs │ │ ├── Merchant │ │ │ └── Community.cs │ │ ├── ObjectExtending │ │ │ └── AbpShopDomainObjectExtensions.cs │ │ ├── Settings │ │ │ ├── AbpShopSettingDefinitionProvider.cs │ │ │ └── AbpShopSettings.cs │ │ ├── Shop │ │ │ ├── AbpArticle.cs │ │ │ ├── AbpArticleCategory.cs │ │ │ ├── AbpArticleContent.cs │ │ │ ├── AbpCache.cs │ │ │ ├── AbpDiy.cs │ │ │ ├── AbpExpress.cs │ │ │ ├── AbpQrcode.cs │ │ │ ├── AbpRoutineAccessToken.cs │ │ │ ├── AbpRoutineFormId.cs │ │ │ ├── AbpRoutineQrcode.cs │ │ │ ├── AbpShippingTemplates.cs │ │ │ ├── AbpShippingTemplatesFree.cs │ │ │ ├── AbpShippingTemplatesRegion.cs │ │ │ ├── AbpSmsRecord.cs │ │ │ ├── AbpStoreBargain.cs │ │ │ ├── AbpStoreBargainUser.cs │ │ │ ├── AbpStoreBargainUserHelp.cs │ │ │ ├── AbpStoreCart.cs │ │ │ ├── AbpStoreCategory.cs │ │ │ ├── AbpStoreCombination.cs │ │ │ ├── AbpStoreCoupon.cs │ │ │ ├── AbpStoreCouponIssue.cs │ │ │ ├── AbpStoreCouponIssueUser.cs │ │ │ ├── AbpStoreCouponProduct.cs │ │ │ ├── AbpStoreCouponUser.cs │ │ │ ├── AbpStoreOrder.cs │ │ │ ├── AbpStoreOrderCartInfo.cs │ │ │ ├── AbpStoreOrderStatus.cs │ │ │ ├── AbpStorePink.cs │ │ │ ├── AbpStoreProduct.cs │ │ │ ├── AbpStoreProductAttr.cs │ │ │ ├── AbpStoreProductAttrResult.cs │ │ │ ├── AbpStoreProductAttrValue.cs │ │ │ ├── AbpStoreProductCate.cs │ │ │ ├── AbpStoreProductCoupon.cs │ │ │ ├── AbpStoreProductDescription.cs │ │ │ ├── AbpStoreProductRelation.cs │ │ │ ├── AbpStoreProductReply.cs │ │ │ ├── AbpStoreProductRule.cs │ │ │ ├── AbpStoreSeckill.cs │ │ │ ├── AbpStoreSeckillTime.cs │ │ │ ├── AbpStoreService.cs │ │ │ ├── AbpStoreServiceLog.cs │ │ │ ├── AbpStoreVisit.cs │ │ │ ├── AbpSystemAdmin.cs │ │ │ ├── AbpSystemAttachment.cs │ │ │ ├── AbpSystemAttachmentCategory.cs │ │ │ ├── AbpSystemCity.cs │ │ │ ├── AbpSystemConfig.cs │ │ │ ├── AbpSystemConfigTab.cs │ │ │ ├── AbpSystemFile.cs │ │ │ ├── AbpSystemGroup.cs │ │ │ ├── AbpSystemGroupData.cs │ │ │ ├── AbpSystemLog.cs │ │ │ ├── AbpSystemMenus.cs │ │ │ ├── AbpSystemNotice.cs │ │ │ ├── AbpSystemNoticeAdmin.cs │ │ │ ├── AbpSystemRole.cs │ │ │ ├── AbpSystemStore.cs │ │ │ ├── AbpSystemStoreStaff.cs │ │ │ ├── AbpSystemUserLevel.cs │ │ │ ├── AbpSystemUserTask.cs │ │ │ ├── AbpTemplateMessage.cs │ │ │ ├── AbpUser.cs │ │ │ ├── AbpUserAddress.cs │ │ │ ├── AbpUserBill.cs │ │ │ ├── AbpUserEnter.cs │ │ │ ├── AbpUserExtract.cs │ │ │ ├── AbpUserGroup.cs │ │ │ ├── AbpUserLabel.cs │ │ │ ├── AbpUserLabelRelation.cs │ │ │ ├── AbpUserLevel.cs │ │ │ ├── AbpUserNotice.cs │ │ │ ├── AbpUserNoticeSee.cs │ │ │ ├── AbpUserRecharge.cs │ │ │ ├── AbpUserSign.cs │ │ │ ├── AbpUserTaskFinish.cs │ │ │ ├── AbpUserToken.cs │ │ │ ├── AbpUserVisit.cs │ │ │ ├── AbpWechatKey.cs │ │ │ ├── AbpWechatMedia.cs │ │ │ ├── AbpWechatMessage.cs │ │ │ ├── AbpWechatNewsCategory.cs │ │ │ ├── AbpWechatQrcode.cs │ │ │ ├── AbpWechatReply.cs │ │ │ └── AbpWechatUser.cs │ │ └── Users │ │ │ └── AppUser.cs │ ├── AbpShop.EntityFrameworkCore.DbMigrations │ │ ├── AbpShop.EntityFrameworkCore.DbMigrations.csproj │ │ ├── EntityFrameworkCore │ │ │ ├── AbpShopEntityFrameworkCoreDbMigrationsModule.cs │ │ │ ├── AbpShopMigrationsDbContext.cs │ │ │ ├── AbpShopMigrationsDbContextFactory.cs │ │ │ └── EntityFrameworkCoreAbpShopDbSchemaMigrator.cs │ │ └── Migrations │ │ │ ├── 20200514061737_Initial.Designer.cs │ │ │ ├── 20200514061737_Initial.cs │ │ │ ├── 20200820082756_Initial app db.Designer.cs │ │ │ ├── 20200820082756_Initial app db.cs │ │ │ └── AbpShopMigrationsDbContextModelSnapshot.cs │ ├── AbpShop.EntityFrameworkCore │ │ ├── AbpShop.EntityFrameworkCore.csproj │ │ └── EntityFrameworkCore │ │ │ ├── AbpShopDbContext.cs │ │ │ ├── AbpShopDbContextModelCreatingExtensions.cs │ │ │ ├── AbpShopEfCoreEntityExtensionMappings.cs │ │ │ └── AbpShopEntityFrameworkCoreModule.cs │ ├── AbpShop.HttpApi.Client │ │ ├── AbpShop.HttpApi.Client.csproj │ │ └── AbpShopHttpApiClientModule.cs │ ├── AbpShop.HttpApi.Host │ │ ├── AbpShop.HttpApi.Host.csproj │ │ ├── AbpShopHttpApiHostModule.cs │ │ ├── Controllers │ │ │ └── HomeController.cs │ │ ├── Dockerfile │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Startup.cs │ │ ├── abp.resourcemapping.js │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── gulpfile.js │ │ ├── package.json │ │ ├── tempkey.rsa │ │ ├── wwwroot │ │ │ └── libs │ │ │ │ ├── @fortawesome │ │ │ │ └── fontawesome-free │ │ │ │ │ ├── css │ │ │ │ │ ├── all.css │ │ │ │ │ └── v4-shims.css │ │ │ │ │ └── webfonts │ │ │ │ │ ├── fa-brands-400.eot │ │ │ │ │ ├── fa-brands-400.svg │ │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ │ ├── fa-brands-400.woff │ │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ │ ├── fa-regular-400.eot │ │ │ │ │ ├── fa-regular-400.svg │ │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ │ ├── fa-regular-400.woff │ │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ │ ├── fa-solid-900.eot │ │ │ │ │ ├── fa-solid-900.svg │ │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ │ ├── fa-solid-900.woff │ │ │ │ │ └── fa-solid-900.woff2 │ │ │ │ ├── abp │ │ │ │ ├── core │ │ │ │ │ ├── abp.css │ │ │ │ │ └── abp.js │ │ │ │ ├── jquery │ │ │ │ │ └── abp.jquery.js │ │ │ │ └── utils │ │ │ │ │ ├── abp-utils.umd.js │ │ │ │ │ ├── abp-utils.umd.js.map │ │ │ │ │ ├── abp-utils.umd.min.js │ │ │ │ │ └── abp-utils.umd.min.js.map │ │ │ │ ├── bootstrap-datepicker │ │ │ │ ├── bootstrap-datepicker.css.map │ │ │ │ ├── bootstrap-datepicker.min.css │ │ │ │ ├── bootstrap-datepicker.min.js │ │ │ │ └── locales │ │ │ │ │ ├── bootstrap-datepicker-en-CA.min.js │ │ │ │ │ ├── bootstrap-datepicker.ar-tn.min.js │ │ │ │ │ ├── bootstrap-datepicker.ar.min.js │ │ │ │ │ ├── bootstrap-datepicker.az.min.js │ │ │ │ │ ├── bootstrap-datepicker.bg.min.js │ │ │ │ │ ├── bootstrap-datepicker.bm.min.js │ │ │ │ │ ├── bootstrap-datepicker.bn.min.js │ │ │ │ │ ├── bootstrap-datepicker.br.min.js │ │ │ │ │ ├── bootstrap-datepicker.bs.min.js │ │ │ │ │ ├── bootstrap-datepicker.ca.min.js │ │ │ │ │ ├── bootstrap-datepicker.cs.min.js │ │ │ │ │ ├── bootstrap-datepicker.cy.min.js │ │ │ │ │ ├── bootstrap-datepicker.da.min.js │ │ │ │ │ ├── bootstrap-datepicker.de.min.js │ │ │ │ │ ├── bootstrap-datepicker.el.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-AU.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-CA.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-GB.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-IE.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-NZ.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-ZA.min.js │ │ │ │ │ ├── bootstrap-datepicker.eo.min.js │ │ │ │ │ ├── bootstrap-datepicker.es.min.js │ │ │ │ │ ├── bootstrap-datepicker.et.min.js │ │ │ │ │ ├── bootstrap-datepicker.eu.min.js │ │ │ │ │ ├── bootstrap-datepicker.fa.min.js │ │ │ │ │ ├── bootstrap-datepicker.fi.min.js │ │ │ │ │ ├── bootstrap-datepicker.fo.min.js │ │ │ │ │ ├── bootstrap-datepicker.fr-CH.min.js │ │ │ │ │ ├── bootstrap-datepicker.fr.min.js │ │ │ │ │ ├── bootstrap-datepicker.gl.min.js │ │ │ │ │ ├── bootstrap-datepicker.he.min.js │ │ │ │ │ ├── bootstrap-datepicker.hi.min.js │ │ │ │ │ ├── bootstrap-datepicker.hr.min.js │ │ │ │ │ ├── bootstrap-datepicker.hu.min.js │ │ │ │ │ ├── bootstrap-datepicker.hy.min.js │ │ │ │ │ ├── bootstrap-datepicker.id.min.js │ │ │ │ │ ├── bootstrap-datepicker.is.min.js │ │ │ │ │ ├── bootstrap-datepicker.it-CH.min.js │ │ │ │ │ ├── bootstrap-datepicker.it.min.js │ │ │ │ │ ├── bootstrap-datepicker.ja.min.js │ │ │ │ │ ├── bootstrap-datepicker.ka.min.js │ │ │ │ │ ├── bootstrap-datepicker.kh.min.js │ │ │ │ │ ├── bootstrap-datepicker.kk.min.js │ │ │ │ │ ├── bootstrap-datepicker.km.min.js │ │ │ │ │ ├── bootstrap-datepicker.ko.min.js │ │ │ │ │ ├── bootstrap-datepicker.kr.min.js │ │ │ │ │ ├── bootstrap-datepicker.lt.min.js │ │ │ │ │ ├── bootstrap-datepicker.lv.min.js │ │ │ │ │ ├── bootstrap-datepicker.me.min.js │ │ │ │ │ ├── bootstrap-datepicker.mk.min.js │ │ │ │ │ ├── bootstrap-datepicker.mn.min.js │ │ │ │ │ ├── bootstrap-datepicker.ms.min.js │ │ │ │ │ ├── bootstrap-datepicker.nl-BE.min.js │ │ │ │ │ ├── bootstrap-datepicker.nl.min.js │ │ │ │ │ ├── bootstrap-datepicker.no.min.js │ │ │ │ │ ├── bootstrap-datepicker.oc.min.js │ │ │ │ │ ├── bootstrap-datepicker.pl.min.js │ │ │ │ │ ├── bootstrap-datepicker.pt-BR.min.js │ │ │ │ │ ├── bootstrap-datepicker.pt.min.js │ │ │ │ │ ├── bootstrap-datepicker.ro.min.js │ │ │ │ │ ├── bootstrap-datepicker.rs-latin.min.js │ │ │ │ │ ├── bootstrap-datepicker.rs.min.js │ │ │ │ │ ├── bootstrap-datepicker.ru.min.js │ │ │ │ │ ├── bootstrap-datepicker.si.min.js │ │ │ │ │ ├── bootstrap-datepicker.sk.min.js │ │ │ │ │ ├── bootstrap-datepicker.sl.min.js │ │ │ │ │ ├── bootstrap-datepicker.sq.min.js │ │ │ │ │ ├── bootstrap-datepicker.sr-latin.min.js │ │ │ │ │ ├── bootstrap-datepicker.sr.min.js │ │ │ │ │ ├── bootstrap-datepicker.sv.min.js │ │ │ │ │ ├── bootstrap-datepicker.sw.min.js │ │ │ │ │ ├── bootstrap-datepicker.ta.min.js │ │ │ │ │ ├── bootstrap-datepicker.tg.min.js │ │ │ │ │ ├── bootstrap-datepicker.th.min.js │ │ │ │ │ ├── bootstrap-datepicker.tk.min.js │ │ │ │ │ ├── bootstrap-datepicker.tr.min.js │ │ │ │ │ ├── bootstrap-datepicker.uk.min.js │ │ │ │ │ ├── bootstrap-datepicker.uz-cyrl.min.js │ │ │ │ │ ├── bootstrap-datepicker.uz-latn.min.js │ │ │ │ │ ├── bootstrap-datepicker.vi.min.js │ │ │ │ │ ├── bootstrap-datepicker.zh-CN.min.js │ │ │ │ │ └── bootstrap-datepicker.zh-TW.min.js │ │ │ │ ├── bootstrap │ │ │ │ ├── css │ │ │ │ │ └── bootstrap.css │ │ │ │ └── js │ │ │ │ │ └── bootstrap.bundle.js │ │ │ │ ├── datatables.net-bs4 │ │ │ │ ├── css │ │ │ │ │ └── dataTables.bootstrap4.css │ │ │ │ └── js │ │ │ │ │ └── dataTables.bootstrap4.js │ │ │ │ ├── datatables.net │ │ │ │ └── js │ │ │ │ │ └── jquery.dataTables.js │ │ │ │ ├── jquery-form │ │ │ │ └── jquery.form.min.js │ │ │ │ ├── jquery-validation-unobtrusive │ │ │ │ └── jquery.validate.unobtrusive.js │ │ │ │ ├── jquery-validation │ │ │ │ ├── jquery.validate.js │ │ │ │ └── localization │ │ │ │ │ ├── messages_ar.js │ │ │ │ │ ├── messages_az.js │ │ │ │ │ ├── messages_bg.js │ │ │ │ │ ├── messages_bn_BD.js │ │ │ │ │ ├── messages_ca.js │ │ │ │ │ ├── messages_cs.js │ │ │ │ │ ├── messages_da.js │ │ │ │ │ ├── messages_de.js │ │ │ │ │ ├── messages_el.js │ │ │ │ │ ├── messages_es.js │ │ │ │ │ ├── messages_es_AR.js │ │ │ │ │ ├── messages_es_PE.js │ │ │ │ │ ├── messages_et.js │ │ │ │ │ ├── messages_eu.js │ │ │ │ │ ├── messages_fa.js │ │ │ │ │ ├── messages_fi.js │ │ │ │ │ ├── messages_fr.js │ │ │ │ │ ├── messages_ge.js │ │ │ │ │ ├── messages_gl.js │ │ │ │ │ ├── messages_he.js │ │ │ │ │ ├── messages_hr.js │ │ │ │ │ ├── messages_hu.js │ │ │ │ │ ├── messages_hy_AM.js │ │ │ │ │ ├── messages_id.js │ │ │ │ │ ├── messages_is.js │ │ │ │ │ ├── messages_it.js │ │ │ │ │ ├── messages_ja.js │ │ │ │ │ ├── messages_ka.js │ │ │ │ │ ├── messages_kk.js │ │ │ │ │ ├── messages_ko.js │ │ │ │ │ ├── messages_lt.js │ │ │ │ │ ├── messages_lv.js │ │ │ │ │ ├── messages_mk.js │ │ │ │ │ ├── messages_my.js │ │ │ │ │ ├── messages_nl.js │ │ │ │ │ ├── messages_no.js │ │ │ │ │ ├── messages_pl.js │ │ │ │ │ ├── messages_pt_BR.js │ │ │ │ │ ├── messages_pt_PT.js │ │ │ │ │ ├── messages_ro.js │ │ │ │ │ ├── messages_ru.js │ │ │ │ │ ├── messages_sd.js │ │ │ │ │ ├── messages_si.js │ │ │ │ │ ├── messages_sk.js │ │ │ │ │ ├── messages_sl.js │ │ │ │ │ ├── messages_sr.js │ │ │ │ │ ├── messages_sr_lat.js │ │ │ │ │ ├── messages_sv.js │ │ │ │ │ ├── messages_th.js │ │ │ │ │ ├── messages_tj.js │ │ │ │ │ ├── messages_tr.js │ │ │ │ │ ├── messages_uk.js │ │ │ │ │ ├── messages_ur.js │ │ │ │ │ ├── messages_vi.js │ │ │ │ │ ├── messages_zh.js │ │ │ │ │ ├── messages_zh_TW.js │ │ │ │ │ ├── methods_de.js │ │ │ │ │ ├── methods_es_CL.js │ │ │ │ │ ├── methods_fi.js │ │ │ │ │ ├── methods_nl.js │ │ │ │ │ └── methods_pt.js │ │ │ │ ├── jquery │ │ │ │ └── jquery.js │ │ │ │ ├── lodash │ │ │ │ └── lodash.min.js │ │ │ │ ├── luxon │ │ │ │ ├── luxon.js │ │ │ │ ├── luxon.js.map │ │ │ │ ├── luxon.min.js │ │ │ │ └── luxon.min.js.map │ │ │ │ ├── malihu-custom-scrollbar-plugin │ │ │ │ ├── jquery.mCustomScrollbar.concat.min.js │ │ │ │ ├── jquery.mCustomScrollbar.css │ │ │ │ ├── jquery.mCustomScrollbar.js │ │ │ │ ├── mCSB_buttons.png │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ │ │ ├── select2 │ │ │ │ ├── css │ │ │ │ │ └── select2.min.css │ │ │ │ └── js │ │ │ │ │ ├── i18n │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── dsb.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hsb.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── hy.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── ne.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── ps.js │ │ │ │ │ ├── pt-BR.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-Cyrl.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tk.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-CN.js │ │ │ │ │ └── zh-TW.js │ │ │ │ │ ├── select2-bootstrap-modal-patch.js │ │ │ │ │ ├── select2.full.min.js │ │ │ │ │ └── select2.min.js │ │ │ │ ├── sweetalert │ │ │ │ └── sweetalert.min.js │ │ │ │ ├── timeago │ │ │ │ ├── jquery.timeago.js │ │ │ │ └── locales │ │ │ │ │ ├── README.md │ │ │ │ │ ├── jquery.timeago.af.js │ │ │ │ │ ├── jquery.timeago.am.js │ │ │ │ │ ├── jquery.timeago.ar.js │ │ │ │ │ ├── jquery.timeago.az-short.js │ │ │ │ │ ├── jquery.timeago.az.js │ │ │ │ │ ├── jquery.timeago.be.js │ │ │ │ │ ├── jquery.timeago.bg.js │ │ │ │ │ ├── jquery.timeago.bs.js │ │ │ │ │ ├── jquery.timeago.ca.js │ │ │ │ │ ├── jquery.timeago.cs.js │ │ │ │ │ ├── jquery.timeago.cy.js │ │ │ │ │ ├── jquery.timeago.da.js │ │ │ │ │ ├── jquery.timeago.de-short.js │ │ │ │ │ ├── jquery.timeago.de.js │ │ │ │ │ ├── jquery.timeago.dv.js │ │ │ │ │ ├── jquery.timeago.el.js │ │ │ │ │ ├── jquery.timeago.en-short.js │ │ │ │ │ ├── jquery.timeago.en.js │ │ │ │ │ ├── jquery.timeago.es-short.js │ │ │ │ │ ├── jquery.timeago.es.js │ │ │ │ │ ├── jquery.timeago.et.js │ │ │ │ │ ├── jquery.timeago.eu.js │ │ │ │ │ ├── jquery.timeago.fa-short.js │ │ │ │ │ ├── jquery.timeago.fa.js │ │ │ │ │ ├── jquery.timeago.fi.js │ │ │ │ │ ├── jquery.timeago.fr-short.js │ │ │ │ │ ├── jquery.timeago.fr.js │ │ │ │ │ ├── jquery.timeago.gl.js │ │ │ │ │ ├── jquery.timeago.he.js │ │ │ │ │ ├── jquery.timeago.hr.js │ │ │ │ │ ├── jquery.timeago.hu.js │ │ │ │ │ ├── jquery.timeago.hy.js │ │ │ │ │ ├── jquery.timeago.id.js │ │ │ │ │ ├── jquery.timeago.is.js │ │ │ │ │ ├── jquery.timeago.it-short.js │ │ │ │ │ ├── jquery.timeago.it.js │ │ │ │ │ ├── jquery.timeago.ja.js │ │ │ │ │ ├── jquery.timeago.jv.js │ │ │ │ │ ├── jquery.timeago.ko.js │ │ │ │ │ ├── jquery.timeago.ky.js │ │ │ │ │ ├── jquery.timeago.lt.js │ │ │ │ │ ├── jquery.timeago.lv.js │ │ │ │ │ ├── jquery.timeago.mk.js │ │ │ │ │ ├── jquery.timeago.nl.js │ │ │ │ │ ├── jquery.timeago.no.js │ │ │ │ │ ├── jquery.timeago.pl.js │ │ │ │ │ ├── jquery.timeago.pt-br-short.js │ │ │ │ │ ├── jquery.timeago.pt-br.js │ │ │ │ │ ├── jquery.timeago.pt-short.js │ │ │ │ │ ├── jquery.timeago.pt.js │ │ │ │ │ ├── jquery.timeago.ro.js │ │ │ │ │ ├── jquery.timeago.rs.js │ │ │ │ │ ├── jquery.timeago.ru.js │ │ │ │ │ ├── jquery.timeago.rw.js │ │ │ │ │ ├── jquery.timeago.si.js │ │ │ │ │ ├── jquery.timeago.sk.js │ │ │ │ │ ├── jquery.timeago.sl.js │ │ │ │ │ ├── jquery.timeago.sq.js │ │ │ │ │ ├── jquery.timeago.sr.js │ │ │ │ │ ├── jquery.timeago.sv.js │ │ │ │ │ ├── jquery.timeago.th.js │ │ │ │ │ ├── jquery.timeago.tr-short.js │ │ │ │ │ ├── jquery.timeago.tr.js │ │ │ │ │ ├── jquery.timeago.uk.js │ │ │ │ │ ├── jquery.timeago.ur.js │ │ │ │ │ ├── jquery.timeago.uz.js │ │ │ │ │ ├── jquery.timeago.vi.js │ │ │ │ │ ├── jquery.timeago.zh-CN.js │ │ │ │ │ └── jquery.timeago.zh-TW.js │ │ │ │ └── toastr │ │ │ │ ├── toastr.css │ │ │ │ ├── toastr.js.map │ │ │ │ ├── toastr.min.css │ │ │ │ └── toastr.min.js │ │ └── yarn.lock │ └── AbpShop.HttpApi │ │ ├── AbpShop.HttpApi.csproj │ │ ├── AbpShopHttpApiModule.cs │ │ ├── Controllers │ │ └── AbpShopController.cs │ │ └── Models │ │ └── Test │ │ └── TestModel.cs └── test │ ├── AbpShop.Application.Tests │ ├── AbpShop.Application.Tests.csproj │ ├── AbpShopApplicationTestBase.cs │ ├── AbpShopApplicationTestModule.cs │ └── Samples │ │ └── SampleAppServiceTests.cs │ ├── AbpShop.Domain.Tests │ ├── AbpShop.Domain.Tests.csproj │ ├── AbpShopDomainTestBase.cs │ ├── AbpShopDomainTestModule.cs │ └── Samples │ │ └── SampleDomainTests.cs │ ├── AbpShop.EntityFrameworkCore.Tests │ ├── AbpShop.EntityFrameworkCore.Tests.csproj │ └── EntityFrameworkCore │ │ ├── AbpShopEntityFrameworkCoreTestBase.cs │ │ ├── AbpShopEntityFrameworkCoreTestModule.cs │ │ └── Samples │ │ └── SampleRepositoryTests.cs │ ├── AbpShop.HttpApi.Client.ConsoleTestApp │ ├── AbpShop.HttpApi.Client.ConsoleTestApp.csproj │ ├── AbpShopConsoleApiClientModule.cs │ ├── ClientDemoService.cs │ ├── ConsoleTestAppHostedService.cs │ ├── Program.cs │ └── appsettings.json │ └── AbpShop.TestBase │ ├── AbpShop.TestBase.csproj │ ├── AbpShopTestBase.cs │ ├── AbpShopTestBaseModule.cs │ ├── AbpShopTestDataSeedContributor.cs │ └── Security │ └── FakeCurrentPrincipalAccessor.cs ├── uni-app ├── .gitignore ├── App.vue ├── api │ ├── activity.js │ ├── admin.js │ ├── api.js │ ├── order.js │ ├── public.js │ ├── store.js │ └── user.js ├── components │ ├── Authorize.vue │ ├── Loading │ │ └── index.vue │ ├── PriceChange │ │ └── index.vue │ ├── adc │ │ └── index.vue │ ├── addressWindow │ │ └── index.vue │ ├── base │ │ └── star │ │ │ ├── mini.vue │ │ │ └── selectBig.vue │ ├── countDown │ │ └── index.vue │ ├── couponListWindow │ │ ├── index.vue │ │ └── 备份.vue │ ├── couponWindow │ │ └── index.vue │ ├── easy-upload │ │ ├── easy-upload.vue │ │ └── readme.md │ ├── emptyPage.vue │ ├── goodList │ │ └── index.vue │ ├── home │ │ └── index.vue │ ├── jyf-parser │ │ ├── jyf-parser.vue │ │ └── libs │ │ │ ├── CssHandler.js │ │ │ ├── MpHtmlParser.js │ │ │ ├── config.js │ │ │ ├── handler.sjs │ │ │ ├── handler.wxs │ │ │ └── trees.vue │ ├── module │ │ └── store │ │ │ ├── buyRoleAlert.vue │ │ │ ├── card.vue │ │ │ ├── cardMini.vue │ │ │ ├── comment │ │ │ ├── item.vue │ │ │ └── mine.vue │ │ │ ├── item.vue │ │ │ └── love.vue │ ├── mpvue-calendar │ │ ├── browser-style.css │ │ ├── calendarinit.js │ │ ├── icon.css │ │ ├── mpvue-calendar.vue │ │ └── style.css │ ├── orderGoods │ │ └── index.vue │ ├── payment │ │ └── index.vue │ ├── productConSwiper │ │ └── index.vue │ ├── productWindow │ │ └── index.vue │ ├── promotionGood │ │ └── index.vue │ ├── recommend │ │ └── index.vue │ ├── shareInfo │ │ └── index.vue │ ├── shareRedPackets │ │ └── index.vue │ ├── swipers │ │ └── index.vue │ ├── tabNav.vue │ ├── ucharts │ │ ├── component.vue │ │ ├── ucharts.js │ │ └── ucharts.min.js │ ├── uni-calendar │ │ ├── calendar.js │ │ ├── uni-calendar-item.vue │ │ ├── uni-calendar.vue │ │ └── util.js │ ├── userEvaluation │ │ └── index.vue │ ├── vconsole.min.js │ └── wPicker │ │ ├── city-data │ │ ├── area.js │ │ ├── city.js │ │ └── province.js │ │ ├── w-picker.js │ │ └── w-picker.vue ├── config │ ├── app.js │ ├── cache.js │ └── socket.js ├── libs │ ├── chat.js │ ├── login.js │ ├── order.js │ ├── routine.js │ └── wechat.js ├── main.js ├── manifest.json ├── mixins │ └── SendVerifyCode.js ├── package-lock.json ├── pages.json ├── pages │ ├── activity │ │ ├── bargain │ │ │ └── index.vue │ │ ├── goods_bargain │ │ │ └── index.vue │ │ ├── goods_bargain_details │ │ │ └── index.vue │ │ ├── goods_combination │ │ │ └── index.vue │ │ ├── goods_combination_details │ │ │ ├── 123.vue │ │ │ └── index.vue │ │ ├── goods_combination_status │ │ │ └── index.vue │ │ ├── goods_seckill │ │ │ └── index.vue │ │ ├── goods_seckill_details │ │ │ ├── 999.vue │ │ │ └── index.vue │ │ └── poster-poster │ │ │ └── index.vue │ ├── admin │ │ ├── delivery │ │ │ └── index.vue │ │ ├── order │ │ │ └── index.vue │ │ ├── orderDetail │ │ │ └── index.vue │ │ ├── orderList │ │ │ └── index.vue │ │ ├── order_cancellation │ │ │ ├── index.vue │ │ │ └── scan.gif │ │ ├── static │ │ │ └── scan.gif │ │ └── statistics │ │ │ └── index.vue │ ├── auth │ │ └── index.vue │ ├── columnGoods │ │ └── HotNewGoods │ │ │ └── index.vue │ ├── customer_list │ │ ├── chat.vue │ │ └── index.vue │ ├── first_new_product │ │ └── index.vue │ ├── goods_cate │ │ └── goods_cate.vue │ ├── goods_details │ │ └── index.vue │ ├── goods_list │ │ └── index.vue │ ├── goods_search │ │ └── index.vue │ ├── index │ │ ├── components │ │ │ ├── activeParty.vue │ │ │ ├── advert.vue │ │ │ ├── articleList.vue │ │ │ ├── bargain.vue │ │ │ ├── blankPage.vue │ │ │ ├── combination.vue │ │ │ ├── coupon.vue │ │ │ ├── customerService.vue │ │ │ ├── follow.vue │ │ │ ├── goodList.vue │ │ │ ├── guide.vue │ │ │ ├── headerSerch.vue │ │ │ ├── index.js │ │ │ ├── liveBroadcast.vue │ │ │ ├── menus.vue │ │ │ ├── news.vue │ │ │ ├── promotionList.vue │ │ │ ├── richText.vue │ │ │ ├── seckill.vue │ │ │ ├── swiperBg.vue │ │ │ ├── swipers.vue │ │ │ ├── tabNav.vue │ │ │ └── titles.vue │ │ └── index.vue │ ├── news_details │ │ └── index.vue │ ├── news_list │ │ └── index.vue │ ├── not_defined │ │ └── index.vue │ ├── order_addcart │ │ ├── order_addcart.vue │ │ └── order_addcart01.vue │ ├── order_details │ │ └── index.vue │ ├── order_pay_status │ │ └── index.vue │ ├── promotional_items │ │ └── index.vue │ ├── retrieve_password │ │ └── index.vue │ ├── user │ │ └── index.vue │ └── users │ │ ├── commission_rank │ │ └── index.vue │ │ ├── goods_comment_con │ │ └── index.vue │ │ ├── goods_comment_list │ │ └── index.vue │ │ ├── goods_details_store │ │ └── index.vue │ │ ├── goods_logistics │ │ └── index.vue │ │ ├── goods_return │ │ └── index.vue │ │ ├── login │ │ ├── index.vue │ │ └── index111.vue │ │ ├── order_confirm │ │ └── index.vue │ │ ├── order_list │ │ └── index.vue │ │ ├── promoter-list │ │ └── index.vue │ │ ├── promoter-order │ │ └── index.vue │ │ ├── promoter_rank │ │ └── index.vue │ │ ├── retrievePassword │ │ └── index.vue │ │ ├── static │ │ ├── vip.png │ │ ├── vip01.png │ │ ├── vip02.png │ │ ├── vip03.png │ │ ├── vip04.png │ │ └── vip05.png │ │ ├── user_address │ │ └── index.vue │ │ ├── user_address_list │ │ └── index.vue │ │ ├── user_bill │ │ └── index.vue │ │ ├── user_cash │ │ └── index.vue │ │ ├── user_coupon │ │ └── index.vue │ │ ├── user_get_coupon │ │ └── index.vue │ │ ├── user_goods_collection │ │ └── index.vue │ │ ├── user_info │ │ └── index.vue │ │ ├── user_integral │ │ └── index.vue │ │ ├── user_money │ │ └── index.vue │ │ ├── user_payment │ │ └── index.vue │ │ ├── user_phone │ │ └── index.vue │ │ ├── user_pwd_edit │ │ └── index.vue │ │ ├── user_return_list │ │ └── index.vue │ │ ├── user_sgin │ │ └── index.vue │ │ ├── user_sgin_list │ │ └── index.vue │ │ ├── user_spread_code │ │ └── index.vue │ │ ├── user_spread_money │ │ └── index.vue │ │ ├── user_spread_user │ │ └── index.vue │ │ └── user_vip │ │ ├── index.vue │ │ └── index01.vue ├── plugin │ ├── animate │ │ └── animate.min.css │ ├── clipboard │ │ └── clipboard.js │ ├── dayjs │ │ └── dayjs.min.js │ ├── emoji-awesome │ │ ├── css │ │ │ ├── apple.min.css │ │ │ ├── emojione.min.css │ │ │ ├── facebook.min.css │ │ │ ├── google.min.css │ │ │ ├── messenger.min.css │ │ │ └── twitter.min.css │ │ └── img │ │ │ ├── sheet_apple_64_indexed_256colors.png │ │ │ ├── sheet_emojione_64_indexed_128.png │ │ │ ├── sheet_facebook_64_indexed_128.png │ │ │ ├── sheet_google_64_indexed_128.png │ │ │ ├── sheet_messenger_64_indexed_128.png │ │ │ └── sheet_twitter_64_indexed_128.png │ ├── image-tools │ │ └── index.js │ └── jweixin-module │ │ └── index.js ├── static │ ├── css │ │ ├── base.css │ │ ├── guildford.css │ │ └── style.scss │ ├── iconfont │ │ └── iconfont.css │ ├── images │ │ ├── 1-001.png │ │ ├── 1-002.png │ │ ├── 2-001.png │ │ ├── 2-002.png │ │ ├── 3-001.png │ │ ├── 3-002.png │ │ ├── 4-001.png │ │ ├── 4-002.png │ │ ├── accountBg.png │ │ ├── address.png │ │ ├── alter.png │ │ ├── angle.png │ │ ├── balance.png │ │ ├── barg001.png │ │ ├── barg002.png │ │ ├── bargain.png │ │ ├── bargainBg.jpg │ │ ├── close.gif │ │ ├── code_1.png │ │ ├── code_2.png │ │ ├── collection.png │ │ ├── coupon.png │ │ ├── crmeb.png │ │ ├── customer.png │ │ ├── default.gif │ │ ├── del.png │ │ ├── dfh.png │ │ ├── dfk.png │ │ ├── down.png │ │ ├── dpj.png │ │ ├── dsh.png │ │ ├── edit.png │ │ ├── empty-box.png │ │ ├── examine.png │ │ ├── explosion-title.png │ │ ├── explosion.png │ │ ├── extension.png │ │ ├── f.png │ │ ├── face.png │ │ ├── gift.png │ │ ├── group01.png │ │ ├── group02.gif │ │ ├── horn.png │ │ ├── kefu.png │ │ ├── keyboard.png │ │ ├── left.png │ │ ├── light.png │ │ ├── line.jpg │ │ ├── ling.png │ │ ├── live-01.png │ │ ├── live-02.png │ │ ├── live-03.png │ │ ├── lock.png │ │ ├── lock2.png │ │ ├── logo.png │ │ ├── logo2.png │ │ ├── medal01.png │ │ ├── medal02.png │ │ ├── medal03.png │ │ ├── member.png │ │ ├── memberCenter.png │ │ ├── money.png │ │ ├── mores.png │ │ ├── news.png │ │ ├── noAddress.png │ │ ├── noCart.png │ │ ├── noCollection.png │ │ ├── noCoupon.png │ │ ├── noEvaluate.png │ │ ├── noNews.png │ │ ├── noOrder.png │ │ ├── noSearch.png │ │ ├── noShopper.png │ │ ├── one.png │ │ ├── open.gif │ │ ├── order1.png │ │ ├── order2.png │ │ ├── order3.png │ │ ├── order4.png │ │ ├── order5.png │ │ ├── orderIndex.png │ │ ├── orderTime.png │ │ ├── phone_1.png │ │ ├── plus.png │ │ ├── poster-close.png │ │ ├── posterbackgd.png │ │ ├── priceTag.png │ │ ├── pricetitle.jpg │ │ ├── qh.png │ │ ├── record1.png │ │ ├── record2.png │ │ ├── record3.png │ │ ├── record4.png │ │ ├── red-packets.png │ │ ├── right-icon.png │ │ ├── rushBuy.jpg │ │ ├── score.png │ │ ├── sh.png │ │ ├── share-info.png │ │ ├── shop-nav.png │ │ ├── shop-phone.png │ │ ├── shuoming.png │ │ ├── sort1.png │ │ ├── sort2.png │ │ ├── sort3.png │ │ ├── spike-icon-001.png │ │ ├── spike-icon-002.gif │ │ ├── spot.png │ │ ├── stars1.png │ │ ├── stars2.png │ │ ├── stars3.png │ │ ├── stop.png │ │ ├── three.png │ │ ├── time.png │ │ ├── transparent.png │ │ ├── two.png │ │ ├── up.png │ │ ├── user_bg.png │ │ ├── user_menu08.png │ │ ├── user_menu09.png │ │ ├── vacancy.png │ │ ├── value.jpg │ │ ├── vip.png │ │ ├── writeOff.jpg │ │ └── written.png │ └── img │ │ ├── icon.png │ │ ├── live-logo.gif │ │ ├── qa.png │ │ ├── release.png │ │ └── video.png ├── store │ ├── getters.js │ ├── index.js │ └── modules │ │ ├── app.js │ │ ├── hotWords.js │ │ └── index.js ├── uni.scss ├── utils │ ├── SubscribeMessage.js │ ├── cache.js │ ├── dialog.js │ ├── emoji.js │ ├── index.js │ ├── permission.js │ ├── request.js │ ├── util.js │ └── validate.js └── vue.config.js └── vue ├── .browserslistrc ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── LICENSE ├── README.md ├── alias.config.js ├── babel.config.js ├── jest.config.js ├── npm ├── package-lock.json ├── package.json ├── public ├── UEditor │ ├── dialogs │ │ ├── anchor │ │ │ └── anchor.html │ │ ├── attachment │ │ │ ├── attachment.css │ │ │ ├── attachment.html │ │ │ ├── attachment.js │ │ │ ├── fileTypeImages │ │ │ │ ├── icon_chm.gif │ │ │ │ ├── icon_default.png │ │ │ │ ├── icon_doc.gif │ │ │ │ ├── icon_exe.gif │ │ │ │ ├── icon_jpg.gif │ │ │ │ ├── icon_mp3.gif │ │ │ │ ├── icon_mv.gif │ │ │ │ ├── icon_pdf.gif │ │ │ │ ├── icon_ppt.gif │ │ │ │ ├── icon_psd.gif │ │ │ │ ├── icon_rar.gif │ │ │ │ ├── icon_txt.gif │ │ │ │ └── icon_xls.gif │ │ │ └── images │ │ │ │ ├── alignicon.gif │ │ │ │ ├── alignicon.png │ │ │ │ ├── bg.png │ │ │ │ ├── file-icons.gif │ │ │ │ ├── file-icons.png │ │ │ │ ├── icons.gif │ │ │ │ ├── icons.png │ │ │ │ ├── image.png │ │ │ │ ├── progress.png │ │ │ │ ├── success.gif │ │ │ │ └── success.png │ │ ├── background │ │ │ ├── background.css │ │ │ ├── background.html │ │ │ ├── background.js │ │ │ └── images │ │ │ │ ├── bg.png │ │ │ │ └── success.png │ │ ├── charts │ │ │ ├── chart.config.js │ │ │ ├── charts.css │ │ │ ├── charts.html │ │ │ ├── charts.js │ │ │ └── images │ │ │ │ ├── charts0.png │ │ │ │ ├── charts1.png │ │ │ │ ├── charts2.png │ │ │ │ ├── charts3.png │ │ │ │ ├── charts4.png │ │ │ │ └── charts5.png │ │ ├── emotion │ │ │ ├── emotion.css │ │ │ ├── emotion.html │ │ │ ├── emotion.js │ │ │ └── images │ │ │ │ ├── 0.gif │ │ │ │ ├── bface.gif │ │ │ │ ├── cface.gif │ │ │ │ ├── fface.gif │ │ │ │ ├── jxface2.gif │ │ │ │ ├── neweditor-tab-bg.png │ │ │ │ ├── tface.gif │ │ │ │ ├── wface.gif │ │ │ │ └── yface.gif │ │ ├── gmap │ │ │ └── gmap.html │ │ ├── help │ │ │ ├── help.css │ │ │ ├── help.html │ │ │ └── help.js │ │ ├── image │ │ │ ├── image.css │ │ │ ├── image.html │ │ │ ├── image.js │ │ │ └── images │ │ │ │ ├── alignicon.jpg │ │ │ │ ├── bg.png │ │ │ │ ├── icons.gif │ │ │ │ ├── icons.png │ │ │ │ ├── image.png │ │ │ │ ├── progress.png │ │ │ │ ├── success.gif │ │ │ │ └── success.png │ │ ├── insertframe │ │ │ └── insertframe.html │ │ ├── internal.js │ │ ├── link │ │ │ └── link.html │ │ ├── map │ │ │ ├── map.html │ │ │ └── show.html │ │ ├── music │ │ │ ├── music.css │ │ │ ├── music.html │ │ │ └── music.js │ │ ├── preview │ │ │ └── preview.html │ │ ├── scrawl │ │ │ ├── images │ │ │ │ ├── addimg.png │ │ │ │ ├── brush.png │ │ │ │ ├── delimg.png │ │ │ │ ├── delimgH.png │ │ │ │ ├── empty.png │ │ │ │ ├── emptyH.png │ │ │ │ ├── eraser.png │ │ │ │ ├── redo.png │ │ │ │ ├── redoH.png │ │ │ │ ├── scale.png │ │ │ │ ├── scaleH.png │ │ │ │ ├── size.png │ │ │ │ ├── undo.png │ │ │ │ └── undoH.png │ │ │ ├── scrawl.css │ │ │ ├── scrawl.html │ │ │ └── scrawl.js │ │ ├── searchreplace │ │ │ ├── searchreplace.html │ │ │ └── searchreplace.js │ │ ├── snapscreen │ │ │ └── snapscreen.html │ │ ├── spechars │ │ │ ├── spechars.html │ │ │ └── spechars.js │ │ ├── table │ │ │ ├── dragicon.png │ │ │ ├── edittable.css │ │ │ ├── edittable.html │ │ │ ├── edittable.js │ │ │ ├── edittd.html │ │ │ └── edittip.html │ │ ├── template │ │ │ ├── config.js │ │ │ ├── images │ │ │ │ ├── bg.gif │ │ │ │ ├── pre0.png │ │ │ │ ├── pre1.png │ │ │ │ ├── pre2.png │ │ │ │ ├── pre3.png │ │ │ │ └── pre4.png │ │ │ ├── template.css │ │ │ ├── template.html │ │ │ └── template.js │ │ ├── video │ │ │ ├── images │ │ │ │ ├── bg.png │ │ │ │ ├── center_focus.jpg │ │ │ │ ├── file-icons.gif │ │ │ │ ├── file-icons.png │ │ │ │ ├── icons.gif │ │ │ │ ├── icons.png │ │ │ │ ├── image.png │ │ │ │ ├── left_focus.jpg │ │ │ │ ├── none_focus.jpg │ │ │ │ ├── progress.png │ │ │ │ ├── right_focus.jpg │ │ │ │ ├── success.gif │ │ │ │ └── success.png │ │ │ ├── video.css │ │ │ ├── video.html │ │ │ └── video.js │ │ ├── webapp │ │ │ └── webapp.html │ │ └── wordimage │ │ │ ├── tangram.js │ │ │ ├── wordimage.html │ │ │ └── wordimage.js │ ├── index.html │ ├── lang │ │ ├── en │ │ │ ├── en.js │ │ │ └── images │ │ │ │ ├── addimage.png │ │ │ │ ├── alldeletebtnhoverskin.png │ │ │ │ ├── alldeletebtnupskin.png │ │ │ │ ├── background.png │ │ │ │ ├── button.png │ │ │ │ ├── copy.png │ │ │ │ ├── deletedisable.png │ │ │ │ ├── deleteenable.png │ │ │ │ ├── listbackground.png │ │ │ │ ├── localimage.png │ │ │ │ ├── music.png │ │ │ │ ├── rotateleftdisable.png │ │ │ │ ├── rotateleftenable.png │ │ │ │ ├── rotaterightdisable.png │ │ │ │ ├── rotaterightenable.png │ │ │ │ └── upload.png │ │ └── zh-cn │ │ │ ├── images │ │ │ ├── copy.png │ │ │ ├── localimage.png │ │ │ ├── music.png │ │ │ └── upload.png │ │ │ └── zh-cn.js │ ├── themes │ │ ├── default │ │ │ ├── css │ │ │ │ ├── ueditor.css │ │ │ │ └── ueditor.min.css │ │ │ ├── dialogbase.css │ │ │ └── images │ │ │ │ ├── anchor.gif │ │ │ │ ├── arrow.png │ │ │ │ ├── arrow_down.png │ │ │ │ ├── arrow_up.png │ │ │ │ ├── button-bg.gif │ │ │ │ ├── cancelbutton.gif │ │ │ │ ├── charts.png │ │ │ │ ├── cursor_h.gif │ │ │ │ ├── cursor_h.png │ │ │ │ ├── cursor_v.gif │ │ │ │ ├── cursor_v.png │ │ │ │ ├── dialog-title-bg.png │ │ │ │ ├── filescan.png │ │ │ │ ├── highlighted.gif │ │ │ │ ├── icons-all.gif │ │ │ │ ├── icons.gif │ │ │ │ ├── icons.png │ │ │ │ ├── loaderror.png │ │ │ │ ├── loading.gif │ │ │ │ ├── lock.gif │ │ │ │ ├── neweditor-tab-bg.png │ │ │ │ ├── pagebreak.gif │ │ │ │ ├── scale.png │ │ │ │ ├── sortable.png │ │ │ │ ├── spacer.gif │ │ │ │ ├── sparator_v.png │ │ │ │ ├── table-cell-align.png │ │ │ │ ├── tangram-colorpicker.png │ │ │ │ ├── toolbar_bg.png │ │ │ │ ├── unhighlighted.gif │ │ │ │ ├── upload.png │ │ │ │ ├── videologo.gif │ │ │ │ ├── word.gif │ │ │ │ └── wordpaste.png │ │ └── iframe.css │ ├── third-party │ │ ├── SyntaxHighlighter │ │ │ ├── shCore.js │ │ │ └── shCoreDefault.css │ │ ├── codemirror │ │ │ ├── codemirror.css │ │ │ └── codemirror.js │ │ ├── highcharts │ │ │ ├── adapters │ │ │ │ ├── mootools-adapter.js │ │ │ │ ├── mootools-adapter.src.js │ │ │ │ ├── prototype-adapter.js │ │ │ │ ├── prototype-adapter.src.js │ │ │ │ ├── standalone-framework.js │ │ │ │ └── standalone-framework.src.js │ │ │ ├── highcharts-more.js │ │ │ ├── highcharts-more.src.js │ │ │ ├── highcharts.js │ │ │ ├── highcharts.src.js │ │ │ ├── modules │ │ │ │ ├── annotations.js │ │ │ │ ├── annotations.src.js │ │ │ │ ├── canvas-tools.js │ │ │ │ ├── canvas-tools.src.js │ │ │ │ ├── data.js │ │ │ │ ├── data.src.js │ │ │ │ ├── drilldown.js │ │ │ │ ├── drilldown.src.js │ │ │ │ ├── exporting.js │ │ │ │ ├── exporting.src.js │ │ │ │ ├── funnel.js │ │ │ │ ├── funnel.src.js │ │ │ │ ├── heatmap.js │ │ │ │ ├── heatmap.src.js │ │ │ │ ├── map.js │ │ │ │ ├── map.src.js │ │ │ │ ├── no-data-to-display.js │ │ │ │ └── no-data-to-display.src.js │ │ │ └── themes │ │ │ │ ├── dark-blue.js │ │ │ │ ├── dark-green.js │ │ │ │ ├── gray.js │ │ │ │ ├── grid.js │ │ │ │ └── skies.js │ │ ├── jquery-1.10.2.js │ │ ├── jquery-1.10.2.min.js │ │ ├── jquery-1.10.2.min.map │ │ ├── snapscreen │ │ │ └── UEditorSnapscreen.exe │ │ ├── video-js │ │ │ ├── font │ │ │ │ ├── vjs.eot │ │ │ │ ├── vjs.svg │ │ │ │ ├── vjs.ttf │ │ │ │ └── vjs.woff │ │ │ ├── video-js.css │ │ │ ├── video-js.min.css │ │ │ ├── video.dev.js │ │ │ └── video.js │ │ ├── webuploader │ │ │ ├── webuploader.css │ │ │ ├── webuploader.custom.js │ │ │ ├── webuploader.custom.min.js │ │ │ ├── webuploader.flashonly.js │ │ │ ├── webuploader.flashonly.min.js │ │ │ ├── webuploader.html5only.js │ │ │ ├── webuploader.html5only.min.js │ │ │ ├── webuploader.js │ │ │ ├── webuploader.min.js │ │ │ ├── webuploader.withoutimage.js │ │ │ └── webuploader.withoutimage.min.js │ │ ├── xss.min.js │ │ └── zeroclipboard │ │ │ ├── ZeroClipboard.js │ │ │ └── ZeroClipboard.min.js │ ├── ueditor.all.js │ ├── ueditor.all.min.js │ ├── ueditor.config.js │ ├── ueditor.parse.js │ └── ueditor.parse.min.js ├── favicon.ico └── index.html ├── src ├── App.vue ├── api │ ├── account.js │ ├── agent.js │ ├── app.js │ ├── cms.js │ ├── common.js │ ├── diy.js │ ├── finance.js │ ├── index.js │ ├── marketing.js │ ├── order.js │ ├── product.js │ ├── setting.js │ ├── system.js │ ├── systemAdmin.js │ ├── systemMenus.js │ ├── uploadPictures.js │ └── user.js ├── assets │ ├── downloads │ │ ├── gbk-asp.zip │ │ ├── gbk-jsp.zip │ │ ├── gbk-net.zip │ │ ├── gbk-php.zip │ │ ├── utf8-asp.zip │ │ ├── utf8-jsp.zip │ │ ├── utf8-net.zip │ │ └── utf8-php.zip │ ├── iconfont │ │ ├── iconfont.css │ │ ├── iconfont.eot │ │ ├── iconfont.svg │ │ ├── iconfont.ttf │ │ ├── iconfont.woff │ │ └── iconfont.woff2 │ ├── images │ │ ├── barg001.png │ │ ├── barg002.png │ │ ├── bg.jpg │ │ ├── bjt.png │ │ ├── expressi.jpg │ │ ├── group02.gif │ │ ├── head.gif │ │ ├── icons.png │ │ ├── logo-dark.png │ │ ├── logo-small.png │ │ ├── logo.png │ │ ├── m_logo.png │ │ ├── mobile.png │ │ ├── mobilefoot.png │ │ ├── mobilehead.png │ │ ├── moren.jpg │ │ ├── news.png │ │ ├── no.png │ │ ├── ren.png │ │ ├── ren1.png │ │ ├── ren2.png │ │ ├── right.png │ │ └── spike-icon-002.gif │ ├── js │ │ ├── canvas-nest.min.js │ │ ├── jigsaw.css │ │ └── jigsaw.js │ └── svg │ │ ├── body.svg │ │ ├── header-theme-dark.svg │ │ ├── header-theme-primary.svg │ │ ├── header-top.svg │ │ ├── icon-happy.svg │ │ ├── icon-sad.svg │ │ ├── icon-social-bilibili.svg │ │ ├── icon-social-dingding.svg │ │ ├── icon-social-facebook.svg │ │ ├── icon-social-juejin.svg │ │ ├── icon-social-qq.svg │ │ ├── icon-social-twitter.svg │ │ ├── icon-social-wechat.svg │ │ ├── icon-social-weibo.svg │ │ ├── icon-social-zhihu.svg │ │ ├── nav-theme-dark.svg │ │ └── nav-theme-light.svg ├── components │ ├── cards │ │ └── cards.vue │ ├── copyright │ │ └── index.vue │ ├── couponList │ │ └── index.vue │ ├── customerInfo │ │ └── index.vue │ ├── echarts │ │ └── index.vue │ ├── freightTemplate │ │ ├── city.vue │ │ ├── index.vue │ │ └── provinces.js │ ├── from │ │ ├── from.vue │ │ └── from1.vue │ ├── goodsList │ │ └── index.vue │ ├── iconFrom │ │ └── index.vue │ ├── link │ │ └── index.vue │ ├── mde │ │ └── index.vue │ ├── mobileConfig │ │ ├── c_auxiliary_box.vue │ │ ├── c_auxiliary_line.vue │ │ ├── c_banner.vue │ │ ├── c_home_bargain.vue │ │ ├── c_home_coupon.vue │ │ ├── c_home_goods_list.vue │ │ ├── c_home_hot.vue │ │ ├── c_home_menu.vue │ │ ├── c_home_pink.vue │ │ ├── c_home_product.vue │ │ ├── c_home_seckill.vue │ │ ├── c_home_service.vue │ │ ├── c_home_title.vue │ │ ├── c_hot_banner.vue │ │ ├── c_nav_bar.vue │ │ ├── c_new_list.vue │ │ ├── c_news_roll.vue │ │ ├── c_search_box.vue │ │ ├── c_ueditor_box.vue │ │ ├── c_wechat_attention.vue │ │ ├── c_wechat_live.vue │ │ └── index.js │ ├── mobileConfigRight │ │ ├── c_bg_color.vue │ │ ├── c_goods.vue │ │ ├── c_hot_box.vue │ │ ├── c_hot_imgs.vue │ │ ├── c_hot_word.vue │ │ ├── c_input_item.vue │ │ ├── c_input_number.vue │ │ ├── c_menu_list.vue │ │ ├── c_page_ueditor.vue │ │ ├── c_product.vue │ │ ├── c_select.vue │ │ ├── c_slider.vue │ │ ├── c_tab.vue │ │ ├── c_txt_tab.vue │ │ ├── c_upload_img.vue │ │ └── index.js │ ├── mobilePage │ │ ├── banner.vue │ │ ├── home_bargain.vue │ │ ├── home_coupon.vue │ │ ├── home_goods_list.vue │ │ ├── home_hot.vue │ │ ├── home_menu.vue │ │ ├── home_new_list.vue │ │ ├── home_news_roll.vue │ │ ├── home_pink.vue │ │ ├── home_product.vue │ │ ├── home_seckill.vue │ │ ├── home_service.vue │ │ ├── home_title.vue │ │ ├── hot_banner.vue │ │ ├── index.js │ │ ├── nav_bar.vue │ │ ├── search_box.vue │ │ ├── wechat_live.vue │ │ ├── z_auxiliary_box.vue │ │ ├── z_auxiliary_line.vue │ │ ├── z_ueditor.vue │ │ └── z_wechat_attention.vue │ ├── modelSure │ │ └── modelSure.vue │ ├── newsCategory │ │ └── index.vue │ ├── publicSearchFrom │ │ └── index.vue │ ├── quill │ │ └── index.vue │ ├── referrerInfo │ │ └── index.vue │ ├── rightBtn │ │ └── index.vue │ ├── searchFrom │ │ └── searchFrom.vue │ ├── sendCoupons │ │ └── index.vue │ ├── systemStore │ │ └── index.vue │ ├── ueditorFrom │ │ └── index.vue │ ├── uploadPictures │ │ ├── index.vue │ │ └── widgetImg.vue │ └── uploadVideo │ │ └── index.vue ├── i18n │ ├── index.js │ ├── locale.js │ └── locale │ │ ├── en-US.js │ │ └── zh-CN.js ├── layouts │ └── basic-layout │ │ ├── header-breadcrumb │ │ └── index.vue │ │ ├── header-collapse │ │ └── index.vue │ │ ├── header-fullscreen │ │ └── index.vue │ │ ├── header-i18n │ │ └── index.vue │ │ ├── header-log │ │ └── index.vue │ │ ├── header-logo │ │ └── index.vue │ │ ├── header-notice │ │ └── index.vue │ │ ├── header-reload │ │ └── index.vue │ │ ├── header-search │ │ └── index.vue │ │ ├── header-setting │ │ └── index.vue │ │ ├── header-user │ │ └── index.vue │ │ ├── i18n.js │ │ ├── index.vue │ │ ├── menu-head │ │ ├── index.vue │ │ └── title.vue │ │ ├── menu-side │ │ ├── index.vue │ │ ├── menu-collapse.vue │ │ ├── menu-item.vue │ │ ├── menu-title.vue │ │ └── submenu.vue │ │ ├── mixins │ │ └── translate-title.js │ │ └── tabs │ │ └── index.vue ├── libs │ ├── iview-pro │ │ ├── iview-pro.css │ │ └── iview-pro.min.js │ ├── random_str.js │ ├── socket.js │ ├── system │ │ └── index.js │ ├── util.cookies.js │ ├── util.db.js │ ├── util.js │ └── util.log.js ├── main.js ├── menu │ ├── header.js │ ├── modules │ │ ├── dashboard.js │ │ └── log.js │ └── sider.js ├── mixins │ └── app.js ├── mock │ ├── admin-mock │ │ ├── index.js │ │ └── patch │ │ │ └── withCredentials.js │ ├── api │ │ └── account.js │ └── index.js ├── pages │ ├── account │ │ ├── login │ │ │ └── index.vue │ │ ├── mixins.js │ │ └── register │ │ │ ├── index.vue │ │ │ └── result │ │ │ └── index.vue │ ├── agent │ │ ├── agentManage.vue │ │ └── handle │ │ │ └── promotersList.vue │ ├── app │ │ ├── routine │ │ │ └── routineTemplate │ │ │ │ └── index.vue │ │ └── wechat │ │ │ ├── menus │ │ │ └── index.vue │ │ │ ├── newsCategory │ │ │ ├── index.vue │ │ │ └── save.vue │ │ │ ├── reply │ │ │ ├── follow.vue │ │ │ ├── index.vue │ │ │ └── keyword.vue │ │ │ └── user │ │ │ ├── handle │ │ │ └── sendOut.vue │ │ │ ├── message.vue │ │ │ ├── tag.vue │ │ │ └── user.vue │ ├── cms │ │ ├── addArticle │ │ │ └── index.vue │ │ ├── article │ │ │ ├── index.vue │ │ │ └── relation.vue │ │ └── articleCategory │ │ │ └── index.vue │ ├── content │ │ ├── article │ │ │ ├── components │ │ │ │ └── tableList.vue │ │ │ └── index.vue │ │ └── articleCategory │ │ │ └── index.vue │ ├── echarts │ │ └── trade │ │ │ ├── order.vue │ │ │ └── product.vue │ ├── finance │ │ ├── commission │ │ │ ├── handle │ │ │ │ └── commissionDetails.vue │ │ │ └── index.vue │ │ ├── financialRecords │ │ │ ├── bill │ │ │ │ └── index.vue │ │ │ └── recharge │ │ │ │ └── index.vue │ │ └── userExtract │ │ │ └── index.vue │ ├── index │ │ ├── components │ │ │ ├── baseInfo.vue │ │ │ ├── gridMenu.vue │ │ │ ├── userChart.vue │ │ │ └── visitChart.vue │ │ ├── hot-search.vue │ │ ├── index.vue │ │ ├── search-table.vue │ │ ├── user-gender.vue │ │ └── user-preference.vue │ ├── marketing │ │ ├── storeBargain │ │ │ ├── create.vue │ │ │ └── index.vue │ │ ├── storeCombination │ │ │ ├── combinaList.vue │ │ │ ├── create.vue │ │ │ └── index.vue │ │ ├── storeCoupon │ │ │ └── index.vue │ │ ├── storeCouponIssue │ │ │ └── index.vue │ │ ├── storeCouponUser │ │ │ └── index.vue │ │ ├── storeSeckill │ │ │ ├── create.vue │ │ │ └── index.vue │ │ ├── systemConfig │ │ │ └── index.vue │ │ └── userPoint │ │ │ └── index.vue │ ├── notify │ │ ├── smsConfig │ │ │ ├── components │ │ │ │ ├── forgetPassword.vue │ │ │ │ ├── loginFrom.vue │ │ │ │ └── register.vue │ │ │ ├── index.vue │ │ │ └── tableList.vue │ │ ├── smsPay │ │ │ └── index.vue │ │ └── smsTemplateApply │ │ │ └── index.vue │ ├── order │ │ └── orderList │ │ │ ├── components │ │ │ ├── tableExpand.vue │ │ │ ├── tableFrom.vue │ │ │ └── tableList.vue │ │ │ ├── handle │ │ │ ├── orderDetails.vue │ │ │ ├── orderRecord.vue │ │ │ ├── orderRemark.vue │ │ │ └── orderSend.vue │ │ │ ├── index.vue │ │ │ └── orderlistDetails.vue │ ├── product │ │ ├── list_wait.vue │ │ ├── productAdd │ │ │ └── index.vue │ │ ├── productAttr │ │ │ ├── addAttr.vue │ │ │ └── index.vue │ │ ├── productClassify │ │ │ └── index.vue │ │ ├── productList │ │ │ ├── attribute │ │ │ │ └── index.vue │ │ │ ├── index.vue │ │ │ ├── tableExpand.vue │ │ │ └── taoBao.vue │ │ └── productReply │ │ │ └── index.vue │ ├── setting │ │ ├── cityDada │ │ │ └── index.vue │ │ ├── clerkList │ │ │ └── index.vue │ │ ├── devise │ │ │ ├── index.vue │ │ │ ├── links.vue │ │ │ └── list.vue │ │ ├── freight │ │ │ └── index.vue │ │ ├── setApp │ │ │ └── index.vue │ │ ├── setSystem │ │ │ └── index.vue │ │ ├── shippingTemplates │ │ │ └── index.vue │ │ ├── storeList │ │ │ └── index.vue │ │ ├── storeService │ │ │ └── index.vue │ │ ├── systemAdmin │ │ │ └── index.vue │ │ ├── systemMenus │ │ │ ├── components │ │ │ │ └── menusFrom.vue │ │ │ └── index.vue │ │ ├── systemRole │ │ │ └── index.vue │ │ ├── systemStore │ │ │ └── index.vue │ │ ├── user │ │ │ └── index.vue │ │ └── verifyOrder │ │ │ └── index.vue │ ├── system │ │ ├── clear │ │ │ └── index.vue │ │ ├── configTab │ │ │ ├── index.vue │ │ │ └── list.vue │ │ ├── error │ │ │ ├── 403 │ │ │ │ └── index.vue │ │ │ ├── 404 │ │ │ │ └── index.vue │ │ │ └── 500 │ │ │ │ └── index.vue │ │ ├── group │ │ │ ├── components │ │ │ │ └── groupFrom.vue │ │ │ ├── index.vue │ │ │ └── list.vue │ │ ├── log │ │ │ └── index.vue │ │ ├── maintain │ │ │ ├── systemCleardata │ │ │ │ └── index.vue │ │ │ ├── systemDatabackup │ │ │ │ └── index.vue │ │ │ ├── systemFile │ │ │ │ ├── index.vue │ │ │ │ └── opendir.vue │ │ │ └── systemLog │ │ │ │ └── index.vue │ │ └── systemUpgradeclient │ │ │ └── index.vue │ └── user │ │ ├── group │ │ └── index.vue │ │ ├── label │ │ └── index.vue │ │ ├── level │ │ ├── handle │ │ │ └── task.vue │ │ └── index.vue │ │ └── list │ │ ├── data.js │ │ ├── handle │ │ └── userDetails.vue │ │ ├── index.vue │ │ └── tableExpand.vue ├── plugins │ ├── auth │ │ └── index.js │ ├── error │ │ └── index.js │ ├── index.js │ ├── log │ │ └── index.js │ └── request │ │ └── index.js ├── router │ ├── index.js │ ├── modules │ │ ├── agent.js │ │ ├── app.js │ │ ├── cms.js │ │ ├── echarts.js │ │ ├── finance.js │ │ ├── index.js │ │ ├── marketing.js │ │ ├── order.js │ │ ├── product.js │ │ ├── setting.js │ │ ├── system.js │ │ └── user.js │ └── routes.js ├── setting.env.js ├── setting.js ├── store │ ├── index.js │ └── modules │ │ └── admin │ │ ├── index.js │ │ └── modules │ │ ├── account.js │ │ ├── db.js │ │ ├── i18n.js │ │ ├── layout.js │ │ ├── log.js │ │ ├── menu.js │ │ ├── menus.js │ │ ├── mobildConfig.js │ │ ├── order.js │ │ ├── page.js │ │ ├── user.js │ │ └── userLevel.js ├── styles │ ├── common.less │ ├── default │ │ └── index.less │ ├── font │ │ ├── demo.css │ │ ├── demo_index.html │ │ ├── iconfont.css │ │ ├── iconfont.eot │ │ ├── iconfont.js │ │ ├── iconfont.json │ │ ├── iconfont.svg │ │ ├── iconfont.ttf │ │ ├── iconfont.woff │ │ └── iconfont.woff2 │ ├── index.less │ ├── layout │ │ ├── basic-layout │ │ │ ├── layout.less │ │ │ └── menu.less │ │ └── index.less │ ├── pages │ │ └── account.less │ ├── setting.less │ └── style.css └── utils │ ├── Excel.js │ ├── authLapse.js │ ├── city.js │ ├── index.js │ ├── modal.js │ ├── modalForm.js │ ├── modalSure.js │ ├── public.js │ ├── validate.js │ └── videoCloud.js ├── tests └── unit │ └── .eslintrc.js └── vue.config.js /.gitee/ISSUE_TEMPLATE.zh-CN.md: -------------------------------------------------------------------------------- 1 | ### 该问题是怎么引起的? 2 | 3 | 4 | 5 | ### 重现步骤 6 | 7 | 8 | 9 | ### 报错信息 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /.gitee/PULL_REQUEST_TEMPLATE.zh-CN.md: -------------------------------------------------------------------------------- 1 | ### 相关的Issue 2 | 3 | 4 | ### 原因(目的、解决的问题等) 5 | 6 | 7 | ### 描述(做了什么,变更了什么) 8 | 9 | 10 | ### 测试用例(新增、改动、可能影响的功能) 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # 此 .gitignore 文件已由 Microsoft(R) Visual Studio 自动创建。 3 | ################################################################################ 4 | 5 | /uniapp 6 | -------------------------------------------------------------------------------- /abpshop/.dockerignore: -------------------------------------------------------------------------------- 1 | **/.classpath 2 | **/.dockerignore 3 | **/.env 4 | **/.git 5 | **/.gitignore 6 | **/.project 7 | **/.settings 8 | **/.toolstarget 9 | **/.vs 10 | **/.vscode 11 | **/*.*proj.user 12 | **/*.dbmdl 13 | **/*.jfm 14 | **/azds.yaml 15 | **/bin 16 | **/charts 17 | **/docker-compose* 18 | **/Dockerfile* 19 | **/node_modules 20 | **/npm-debug.log 21 | **/obj 22 | **/secrets.dev.yaml 23 | **/values.dev.yaml 24 | LICENSE 25 | README.md -------------------------------------------------------------------------------- /abpshop/.gitattributes: -------------------------------------------------------------------------------- 1 | **/wwwroot/libs/** linguist-vendored 2 | -------------------------------------------------------------------------------- /abpshop/common.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | latest 4 | 1.0.0 5 | $(NoWarn);CS1591 6 | 7 | -------------------------------------------------------------------------------- /abpshop/src/AbpShop.Application.Contracts/Dto/FilterRequestDto.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | using Volo.Abp.Application.Dtos; 5 | 6 | namespace AbpShop.Dto 7 | { 8 | public class FilterRequestDto : PagedAndSortedResultRequestDto 9 | { 10 | public String Name { get; set; } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /abpshop/src/AbpShop.Application.Contracts/Dto/Merchant/CommunityDto.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | using Volo.Abp.Application.Dtos; 5 | 6 | namespace AbpShop.Dto 7 | { 8 | public class CommunityDto : AuditedEntityDto 9 | { 10 | public string Name { get; set; } 11 | public string Address { get; set; } 12 | public decimal Longitude { get; set; } 13 | public decimal Latitude { get; set; } 14 | public string LogoUrl { get; set; } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /abpshop/src/AbpShop.Application.Contracts/IAppService/ICommunityAppService.cs: -------------------------------------------------------------------------------- 1 | using AbpShop.Dto; 2 | using System; 3 | using Volo.Abp.Application.Dtos; 4 | using Volo.Abp.Application.Services; 5 | 6 | namespace AbpShop 7 | { 8 | public interface ICommunityAppService : 9 | ICrudAppService< //定义了CRUD方法 10 | CommunityDto, //用来展示 11 | Guid, //实体的主键 12 | FilterRequestDto, //获取的时候用于分页和排序 13 | CreateUpdateCommunityDto, //用于创建 14 | CreateUpdateCommunityDto> //用于更新 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /abpshop/src/AbpShop.Application/AbpShopAppService.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | using AbpShop.Localization; 5 | using Volo.Abp.Application.Services; 6 | 7 | namespace AbpShop 8 | { 9 | /* Inherit your application services from this class. 10 | */ 11 | public abstract class AbpShopAppService : ApplicationService 12 | { 13 | protected AbpShopAppService() 14 | { 15 | LocalizationResource = typeof(AbpShopResource); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /abpshop/src/AbpShop.Application/AbpShopApplicationAutoMapperProfile.cs: -------------------------------------------------------------------------------- 1 | using AbpShop.Dto; 2 | using AutoMapper; 3 | 4 | namespace AbpShop 5 | { 6 | public class AbpShopApplicationAutoMapperProfile : Profile 7 | { 8 | public AbpShopApplicationAutoMapperProfile() 9 | { 10 | CreateMap(); 11 | CreateMap(); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /abpshop/src/AbpShop.DbMigrator/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "ConnectionStrings": { 3 | "Default": "Server=(LocalDb)\\MSSQLLocalDB;Database=AbpShop;Trusted_Connection=True;MultipleActiveResultSets=true" 4 | }, 5 | "IdentityServer": { 6 | "Clients": { 7 | "AbpShop_Web": { 8 | "ClientId": "AbpShop_Web", 9 | "ClientSecret": "1q2w3e*", 10 | "RootUrl": "https://localhost:44325" 11 | }, 12 | "AbpShop_App": { 13 | "ClientId": "AbpShop_App", 14 | "ClientSecret": "1q2w3e*" 15 | } 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /abpshop/src/AbpShop.Domain.Shared/AbpShopDomainErrorCodes.cs: -------------------------------------------------------------------------------- 1 | namespace AbpShop 2 | { 3 | public static class AbpShopDomainErrorCodes 4 | { 5 | /* You can add your business exception error codes here, as constants */ 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /abpshop/src/AbpShop.Domain.Shared/Localization/AbpShop/cs.json: -------------------------------------------------------------------------------- 1 | { 2 | "culture": "cs", 3 | "texts": { 4 | "Menu:Home": "Úvod", 5 | "Welcome": "Vítejte", 6 | "LongWelcomeMessage": "Vítejte v aplikaci. Toto je startovací projekt založený na ABP frameworku. Pro více informací, navštivte abp.io." 7 | } 8 | } -------------------------------------------------------------------------------- /abpshop/src/AbpShop.Domain.Shared/Localization/AbpShop/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/abpshop/src/AbpShop.Domain.Shared/Localization/AbpShop/en.json -------------------------------------------------------------------------------- /abpshop/src/AbpShop.Domain.Shared/Localization/AbpShop/pl-PL.json: -------------------------------------------------------------------------------- 1 | { 2 | "culture": "pl-PL", 3 | "texts": { 4 | "Menu:Home": "Home", 5 | "Welcome": "Witaj", 6 | "LongWelcomeMessage": "Witaj w aplikacji. To jest inicjalny projekt bazujący na ABP framework. Po więcej informacji odwiedź stronę abp.io." 7 | } 8 | } -------------------------------------------------------------------------------- /abpshop/src/AbpShop.Domain.Shared/Localization/AbpShop/pt-BR.json: -------------------------------------------------------------------------------- 1 | { 2 | "culture": "pt-BR", 3 | "texts": { 4 | "Menu:Home": "Principal", 5 | "Welcome": "Seja bem-vindo!", 6 | "LongWelcomeMessage": "Bem-vindo a esta aplicação. Este é um projeto inicial baseado no ABP framework. Para mais informações, visite abp.io." 7 | } 8 | } -------------------------------------------------------------------------------- /abpshop/src/AbpShop.Domain.Shared/Localization/AbpShop/ru.json: -------------------------------------------------------------------------------- 1 | { 2 | "culture": "ru", 3 | "texts": { 4 | "Menu:Home": "Главная", 5 | "Welcome": "Добро пожаловать", 6 | "LongWelcomeMessage": "Добро пожаловать в приложение. Этот запущенный проект основан на фреймворке ABP. Для получения дополнительной информации посетите сайт abp.io." 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /abpshop/src/AbpShop.Domain.Shared/Localization/AbpShop/sl.json: -------------------------------------------------------------------------------- 1 | { 2 | "culture": "sl", 3 | "texts": { 4 | "Menu:Home": "Domov", 5 | "Welcome": "Dobrodošli", 6 | "LongWelcomeMessage": "Dobrodošli v aplikaciji. To je začetni projekt na osnovi okolja ABP. Za več informacij obiščite abp.io." 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /abpshop/src/AbpShop.Domain.Shared/Localization/AbpShop/tr.json: -------------------------------------------------------------------------------- 1 | { 2 | "culture": "tr", 3 | "texts": { 4 | "Menu:Home": "Ana sayfa", 5 | "Welcome": "Hoşgeldiniz", 6 | "LongWelcomeMessage": "Uygulamaya hoşgeldiniz. Bu, ABP framework'ü üzerine bina edilmiş bir başlangıç projesidir. Daha fazla bilgi için abp.io adresini ziyaret edebilirsiniz." 7 | } 8 | } -------------------------------------------------------------------------------- /abpshop/src/AbpShop.Domain.Shared/Localization/AbpShop/vi.json: -------------------------------------------------------------------------------- 1 | { 2 | "culture": "vi", 3 | "texts": { 4 | "Menu:Home": "Trang chủ", 5 | "Welcome": "Chào mừng bạn", 6 | "LongWelcomeMessage": "Chào mừng bạn đến ứng dụng. Đây là một dự án khởi nghiệp dựa trên khung ABP. Để biết thêm thông tin, hãy truy cập abp.io." 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /abpshop/src/AbpShop.Domain.Shared/Localization/AbpShop/zh-Hans.json: -------------------------------------------------------------------------------- 1 | { 2 | "culture": "zh-Hans", 3 | "texts": { 4 | "Menu:Home": "首页", 5 | "Welcome": "欢迎", 6 | "LongWelcomeMessage": "欢迎来到该应用程序. 这是一个基于ABP框架的启动项目. 有关更多信息, 请访问 abp.io." 7 | } 8 | } -------------------------------------------------------------------------------- /abpshop/src/AbpShop.Domain.Shared/Localization/AbpShop/zh-Hant.json: -------------------------------------------------------------------------------- 1 | { 2 | "culture": "zh-Hant", 3 | "texts": { 4 | "Menu:Home": "首頁", 5 | "Welcome": "歡迎", 6 | "LongWelcomeMessage": "歡迎來到此應用程式. 這是一個基於ABP框架的起始專案. 有關更多訊息, 請瀏覽 abp.io." 7 | } 8 | } -------------------------------------------------------------------------------- /abpshop/src/AbpShop.Domain.Shared/Localization/AbpShopResource.cs: -------------------------------------------------------------------------------- 1 | using Volo.Abp.Localization; 2 | 3 | namespace AbpShop.Localization 4 | { 5 | [LocalizationResourceName("AbpShop")] 6 | public class AbpShopResource 7 | { 8 | 9 | } 10 | } -------------------------------------------------------------------------------- /abpshop/src/AbpShop.Domain.Shared/MultiTenancy/MultiTenancyConsts.cs: -------------------------------------------------------------------------------- 1 | namespace AbpShop.MultiTenancy 2 | { 3 | public static class MultiTenancyConsts 4 | { 5 | /* Enable/disable multi-tenancy easily in a single point. 6 | * If you will never need to multi-tenancy, you can remove 7 | * related modules and code parts, including this file. 8 | */ 9 | public const bool IsEnabled = true; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /abpshop/src/AbpShop.Domain/AbpShopConsts.cs: -------------------------------------------------------------------------------- 1 | namespace AbpShop 2 | { 3 | public static class AbpShopConsts 4 | { 5 | public const string DbTablePrefix = "App"; 6 | 7 | public const string DbSchema = null; 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /abpshop/src/AbpShop.Domain/Data/IAbpShopDbSchemaMigrator.cs: -------------------------------------------------------------------------------- 1 | using System.Threading.Tasks; 2 | 3 | namespace AbpShop.Data 4 | { 5 | public interface IAbpShopDbSchemaMigrator 6 | { 7 | Task MigrateAsync(); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /abpshop/src/AbpShop.Domain/Data/NullAbpShopDbSchemaMigrator.cs: -------------------------------------------------------------------------------- 1 | using System.Threading.Tasks; 2 | using Volo.Abp.DependencyInjection; 3 | 4 | namespace AbpShop.Data 5 | { 6 | /* This is used if database provider does't define 7 | * IAbpShopDbSchemaMigrator implementation. 8 | */ 9 | public class NullAbpShopDbSchemaMigrator : IAbpShopDbSchemaMigrator, ITransientDependency 10 | { 11 | public Task MigrateAsync() 12 | { 13 | return Task.CompletedTask; 14 | } 15 | } 16 | } -------------------------------------------------------------------------------- /abpshop/src/AbpShop.Domain/Settings/AbpShopSettingDefinitionProvider.cs: -------------------------------------------------------------------------------- 1 | using Volo.Abp.Settings; 2 | 3 | namespace AbpShop.Settings 4 | { 5 | public class AbpShopSettingDefinitionProvider : SettingDefinitionProvider 6 | { 7 | public override void Define(ISettingDefinitionContext context) 8 | { 9 | //Define your own settings here. Example: 10 | //context.Add(new SettingDefinition(AbpShopSettings.MySetting1)); 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /abpshop/src/AbpShop.Domain/Settings/AbpShopSettings.cs: -------------------------------------------------------------------------------- 1 | namespace AbpShop.Settings 2 | { 3 | public static class AbpShopSettings 4 | { 5 | private const string Prefix = "AbpShop"; 6 | 7 | //Add your own setting names here. Example: 8 | //public const string MySetting1 = Prefix + ".MySetting1"; 9 | } 10 | } -------------------------------------------------------------------------------- /abpshop/src/AbpShop.Domain/Shop/AbpArticleContent.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel.DataAnnotations; 4 | using System.ComponentModel.DataAnnotations.Schema; 5 | 6 | namespace AbpShop 7 | { 8 | [Table("abp_article_content")] 9 | public partial class AbpArticleContent 10 | { 11 | [Key] 12 | [Column("nid", TypeName = "int(10) unsigned")] 13 | public uint Nid { get; set; } 14 | [Required] 15 | [Column("content", TypeName = "text")] 16 | public string Content { get; set; } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /abpshop/src/AbpShop.Domain/Shop/AbpStoreCouponIssueUser.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel.DataAnnotations; 4 | using System.ComponentModel.DataAnnotations.Schema; 5 | 6 | namespace AbpShop 7 | { 8 | [Table("abp_store_coupon_issue_user")] 9 | public partial class AbpStoreCouponIssueUser 10 | { 11 | [Column("uid", TypeName = "int(10)")] 12 | public int? Uid { get; set; } 13 | [Column("issue_coupon_id", TypeName = "int(10)")] 14 | public int? IssueCouponId { get; set; } 15 | [Column("add_time", TypeName = "int(10)")] 16 | public int? AddTime { get; set; } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /abpshop/src/AbpShop.Domain/Shop/AbpStoreCouponProduct.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel.DataAnnotations; 4 | using System.ComponentModel.DataAnnotations.Schema; 5 | 6 | namespace AbpShop 7 | { 8 | [Table("abp_store_coupon_product")] 9 | public partial class AbpStoreCouponProduct 10 | { 11 | [Column("coupon_id", TypeName = "int(11)")] 12 | public int CouponId { get; set; } 13 | [Column("product_id", TypeName = "int(11)")] 14 | public int ProductId { get; set; } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /abpshop/src/AbpShop.Domain/Shop/AbpStoreProductDescription.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel.DataAnnotations; 4 | using System.ComponentModel.DataAnnotations.Schema; 5 | 6 | namespace AbpShop 7 | { 8 | [Table("abp_store_product_description")] 9 | public partial class AbpStoreProductDescription 10 | { 11 | [Column("product_id", TypeName = "int(11)")] 12 | public int ProductId { get; set; } 13 | [Required] 14 | [Column("description", TypeName = "text")] 15 | public string Description { get; set; } 16 | [Column("type")] 17 | public bool Type { get; set; } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /abpshop/src/AbpShop.Domain/Shop/AbpStoreSeckillTime.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel.DataAnnotations; 4 | using System.ComponentModel.DataAnnotations.Schema; 5 | 6 | namespace AbpShop 7 | { 8 | [Table("abp_store_seckill_time")] 9 | public partial class AbpStoreSeckillTime 10 | { 11 | [Column("seckill_id", TypeName = "int(10)")] 12 | public int SeckillId { get; set; } 13 | [Column("time_id", TypeName = "int(10)")] 14 | public int TimeId { get; set; } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /abpshop/src/AbpShop.Domain/Shop/AbpUserGroup.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel.DataAnnotations; 4 | using System.ComponentModel.DataAnnotations.Schema; 5 | 6 | namespace AbpShop 7 | { 8 | [Table("abp_user_group")] 9 | public partial class AbpUserGroup 10 | { 11 | [Key] 12 | [Column("id", TypeName = "smallint(5) unsigned")] 13 | public ushort Id { get; set; } 14 | [Column("group_name", TypeName = "varchar(64)")] 15 | public string GroupName { get; set; } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /abpshop/src/AbpShop.Domain/Shop/AbpUserLabel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel.DataAnnotations; 4 | using System.ComponentModel.DataAnnotations.Schema; 5 | 6 | namespace AbpShop 7 | { 8 | [Table("abp_user_label")] 9 | public partial class AbpUserLabel 10 | { 11 | [Key] 12 | [Column("id", TypeName = "int(11)")] 13 | public int Id { get; set; } 14 | [Required] 15 | [Column("label_name", TypeName = "varchar(255)")] 16 | public string LabelName { get; set; } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /abpshop/src/AbpShop.Domain/Shop/AbpUserLabelRelation.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel.DataAnnotations; 4 | using System.ComponentModel.DataAnnotations.Schema; 5 | 6 | namespace AbpShop 7 | { 8 | [Table("abp_user_label_relation")] 9 | public partial class AbpUserLabelRelation 10 | { 11 | [Column("uid", TypeName = "int(11)")] 12 | public int Uid { get; set; } 13 | [Column("label_id", TypeName = "int(11)")] 14 | public int LabelId { get; set; } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /abpshop/src/AbpShop.Domain/Shop/AbpWechatKey.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel.DataAnnotations; 4 | using System.ComponentModel.DataAnnotations.Schema; 5 | 6 | namespace AbpShop 7 | { 8 | [Table("abp_wechat_key")] 9 | public partial class AbpWechatKey 10 | { 11 | [Key] 12 | [Column("id", TypeName = "int(10)")] 13 | public int Id { get; set; } 14 | [Column("reply_id", TypeName = "int(10)")] 15 | public int ReplyId { get; set; } 16 | [Required] 17 | [Column("keys", TypeName = "varchar(64)")] 18 | public string Keys { get; set; } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /abpshop/src/AbpShop.EntityFrameworkCore.DbMigrations/EntityFrameworkCore/AbpShopEntityFrameworkCoreDbMigrationsModule.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Extensions.DependencyInjection; 2 | using Volo.Abp.Modularity; 3 | 4 | namespace AbpShop.EntityFrameworkCore 5 | { 6 | [DependsOn( 7 | typeof(AbpShopEntityFrameworkCoreModule) 8 | )] 9 | public class AbpShopEntityFrameworkCoreDbMigrationsModule : AbpModule 10 | { 11 | public override void ConfigureServices(ServiceConfigurationContext context) 12 | { 13 | context.Services.AddAbpDbContext(); 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/Controllers/HomeController.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.AspNetCore.Mvc; 2 | using Volo.Abp.AspNetCore.Mvc; 3 | 4 | namespace AbpShop.Controllers 5 | { 6 | public class HomeController : AbpController 7 | { 8 | public ActionResult Index() 9 | { 10 | return Redirect("/swagger"); 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/Startup.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.AspNetCore.Builder; 2 | using Microsoft.AspNetCore.Hosting; 3 | using Microsoft.Extensions.DependencyInjection; 4 | using Microsoft.Extensions.Logging; 5 | 6 | namespace AbpShop 7 | { 8 | public class Startup 9 | { 10 | public void ConfigureServices(IServiceCollection services) 11 | { 12 | services.AddApplication(); 13 | } 14 | 15 | public void Configure(IApplicationBuilder app, IWebHostEnvironment env, ILoggerFactory loggerFactory) 16 | { 17 | app.InitializeApplication(); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/abp.resourcemapping.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | aliases: { 3 | 4 | }, 5 | mappings: { 6 | 7 | } 8 | }; 9 | -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/abpshop/src/AbpShop.HttpApi.Host/appsettings.json -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/gulpfile.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | var gulp = require("gulp"), 4 | path = require('path'), 5 | copyResources = require('./node_modules/@abp/aspnetcore.mvc.ui/gulp/copy-resources.js'); 6 | 7 | exports.default = function(){ 8 | return copyResources(path.resolve('./')); 9 | }; -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0.0", 3 | "name": "my-app", 4 | "private": true, 5 | "dependencies": { 6 | "@abp/aspnetcore.mvc.ui.theme.basic": "^2.6.2" 7 | } 8 | } -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ar-tn.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates["ar-tn"]={days:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت","الأحد"],daysShort:["أحد","اثنين","ثلاثاء","أربعاء","خميس","جمعة","سبت","أحد"],daysMin:["ح","ن","ث","ع","خ","ج","س","ح"],months:["جانفي","فيفري","مارس","أفريل","ماي","جوان","جويليه","أوت","سبتمبر","أكتوبر","نوفمبر","ديسمبر"],monthsShort:["جانفي","فيفري","مارس","أفريل","ماي","جوان","جويليه","أوت","سبتمبر","أكتوبر","نوفمبر","ديسمبر"],today:"هذا اليوم",rtl:!0}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ar.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.ar={days:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت","الأحد"],daysShort:["أحد","اثنين","ثلاثاء","أربعاء","خميس","جمعة","سبت","أحد"],daysMin:["ح","ن","ث","ع","خ","ج","س","ح"],months:["يناير","فبراير","مارس","أبريل","مايو","يونيو","يوليو","أغسطس","سبتمبر","أكتوبر","نوفمبر","ديسمبر"],monthsShort:["يناير","فبراير","مارس","أبريل","مايو","يونيو","يوليو","أغسطس","سبتمبر","أكتوبر","نوفمبر","ديسمبر"],today:"هذا اليوم",rtl:!0}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.az.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.az={days:["Bazar","Bazar ertəsi","Çərşənbə axşamı","Çərşənbə","Cümə axşamı","Cümə","Şənbə"],daysShort:["B.","B.e","Ç.a","Ç.","C.a","C.","Ş."],daysMin:["B.","B.e","Ç.a","Ç.","C.a","C.","Ş."],months:["Yanvar","Fevral","Mart","Aprel","May","İyun","İyul","Avqust","Sentyabr","Oktyabr","Noyabr","Dekabr"],monthsShort:["Yan","Fev","Mar","Apr","May","İyun","İyul","Avq","Sen","Okt","Noy","Dek"],today:"Bu gün",weekStart:1,clear:"Təmizlə",monthsTitle:"Aylar"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.bg.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.bg={days:["Неделя","Понеделник","Вторник","Сряда","Четвъртък","Петък","Събота"],daysShort:["Нед","Пон","Вто","Сря","Чет","Пет","Съб"],daysMin:["Н","П","В","С","Ч","П","С"],months:["Януари","Февруари","Март","Април","Май","Юни","Юли","Август","Септември","Октомври","Ноември","Декември"],monthsShort:["Ян","Фев","Мар","Апр","Май","Юни","Юли","Авг","Сеп","Окт","Ное","Дек"],today:"днес"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.bm.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.bm={days:["Kari","Ntɛnɛn","Tarata","Araba","Alamisa","Juma","Sibiri"],daysShort:["Kar","Ntɛ","Tar","Ara","Ala","Jum","Sib"],daysMin:["Ka","Nt","Ta","Ar","Al","Ju","Si"],months:["Zanwuyekalo","Fewuruyekalo","Marisikalo","Awirilikalo","Mɛkalo","Zuwɛnkalo","Zuluyekalo","Utikalo","Sɛtanburukalo","ɔkutɔburukalo","Nowanburukalo","Desanburukalo"],monthsShort:["Zan","Few","Mar","Awi","Mɛ","Zuw","Zul","Uti","Sɛt","ɔku","Now","Des"],today:"Bi",monthsTitle:"Kalo",clear:"Ka jɔsi",weekStart:1,format:"dd/mm/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.bn.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.bn={days:["রবিবার","সোমবার","মঙ্গলবার","বুধবার","বৃহস্পতিবার","শুক্রবার","শনিবার"],daysShort:["রবিবার","সোমবার","মঙ্গলবার","বুধবার","বৃহস্পতিবার","শুক্রবার","শনিবার"],daysMin:["রবি","সোম","মঙ্গল","বুধ","বৃহস্পতি","শুক্র","শনি"],months:["জানুয়ারী","ফেব্রুয়ারি","মার্চ","এপ্রিল","মে","জুন","জুলাই","অগাস্ট","সেপ্টেম্বর","অক্টোবর","নভেম্বর","ডিসেম্বর"],monthsShort:["জানুয়ারী","ফেব্রুয়ারি","মার্চ","এপ্রিল","মে","জুন","জুলাই","অগাস্ট","সেপ্টেম্বর","অক্টোবর","নভেম্বর","ডিসেম্বর"],today:"আজ",monthsTitle:"মাস",clear:"পরিষ্কার",weekStart:0,format:"mm/dd/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.br.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.br={days:["Sul","Lun","Meurzh","Merc'her","Yaou","Gwener","Sadorn"],daysShort:["Sul","Lun","Meu.","Mer.","Yao.","Gwe.","Sad."],daysMin:["Su","L","Meu","Mer","Y","G","Sa"],months:["Genver","C'hwevrer","Meurzh","Ebrel","Mae","Mezheven","Gouere","Eost","Gwengolo","Here","Du","Kerzu"],monthsShort:["Genv.","C'hw.","Meur.","Ebre.","Mae","Mezh.","Goue.","Eost","Gwen.","Here","Du","Kerz."],today:"Hiziv",monthsTitle:"Miz",clear:"Dilemel",weekStart:1,format:"dd/mm/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.bs.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.bs={days:["Nedjelja","Ponedjeljak","Utorak","Srijeda","Četvrtak","Petak","Subota"],daysShort:["Ned","Pon","Uto","Sri","Čet","Pet","Sub"],daysMin:["N","Po","U","Sr","Č","Pe","Su"],months:["Januar","Februar","Mart","April","Maj","Juni","Juli","August","Septembar","Oktobar","Novembar","Decembar"],monthsShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Aug","Sep","Okt","Nov","Dec"],today:"Danas",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ca.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.ca={days:["Diumenge","Dilluns","Dimarts","Dimecres","Dijous","Divendres","Dissabte"],daysShort:["Diu","Dil","Dmt","Dmc","Dij","Div","Dis"],daysMin:["dg","dl","dt","dc","dj","dv","ds"],months:["Gener","Febrer","Març","Abril","Maig","Juny","Juliol","Agost","Setembre","Octubre","Novembre","Desembre"],monthsShort:["Gen","Feb","Mar","Abr","Mai","Jun","Jul","Ago","Set","Oct","Nov","Des"],today:"Avui",monthsTitle:"Mesos",clear:"Esborrar",weekStart:1,format:"dd/mm/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.cs.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.cs={days:["Neděle","Pondělí","Úterý","Středa","Čtvrtek","Pátek","Sobota"],daysShort:["Ned","Pon","Úte","Stř","Čtv","Pát","Sob"],daysMin:["Ne","Po","Út","St","Čt","Pá","So"],months:["Leden","Únor","Březen","Duben","Květen","Červen","Červenec","Srpen","Září","Říjen","Listopad","Prosinec"],monthsShort:["Led","Úno","Bře","Dub","Kvě","Čer","Čnc","Srp","Zář","Říj","Lis","Pro"],today:"Dnes",clear:"Vymazat",monthsTitle:"Měsíc",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.cy.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.cy={days:["Sul","Llun","Mawrth","Mercher","Iau","Gwener","Sadwrn"],daysShort:["Sul","Llu","Maw","Mer","Iau","Gwe","Sad"],daysMin:["Su","Ll","Ma","Me","Ia","Gwe","Sa"],months:["Ionawr","Chewfror","Mawrth","Ebrill","Mai","Mehefin","Gorfennaf","Awst","Medi","Hydref","Tachwedd","Rhagfyr"],monthsShort:["Ion","Chw","Maw","Ebr","Mai","Meh","Gor","Aws","Med","Hyd","Tach","Rha"],today:"Heddiw"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.da.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.da={days:["Søndag","Mandag","Tirsdag","Onsdag","Torsdag","Fredag","Lørdag"],daysShort:["Søn","Man","Tir","Ons","Tor","Fre","Lør"],daysMin:["Sø","Ma","Ti","On","To","Fr","Lø"],months:["Januar","Februar","Marts","April","Maj","Juni","Juli","August","September","Oktober","November","December"],monthsShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Aug","Sep","Okt","Nov","Dec"],today:"I Dag",weekStart:1,clear:"Nulstil",format:"dd/mm/yyyy",monthsTitle:"Måneder"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.de.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.de={days:["Sonntag","Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag"],daysShort:["Son","Mon","Die","Mit","Don","Fre","Sam"],daysMin:["So","Mo","Di","Mi","Do","Fr","Sa"],months:["Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember"],monthsShort:["Jan","Feb","Mär","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Dez"],today:"Heute",monthsTitle:"Monate",clear:"Löschen",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.el.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.el={days:["Κυριακή","Δευτέρα","Τρίτη","Τετάρτη","Πέμπτη","Παρασκευή","Σάββατο"],daysShort:["Κυρ","Δευ","Τρι","Τετ","Πεμ","Παρ","Σαβ"],daysMin:["Κυ","Δε","Τρ","Τε","Πε","Πα","Σα"],months:["Ιανουάριος","Φεβρουάριος","Μάρτιος","Απρίλιος","Μάιος","Ιούνιος","Ιούλιος","Αύγουστος","Σεπτέμβριος","Οκτώβριος","Νοέμβριος","Δεκέμβριος"],monthsShort:["Ιαν","Φεβ","Μαρ","Απρ","Μάι","Ιουν","Ιουλ","Αυγ","Σεπ","Οκτ","Νοε","Δεκ"],today:"Σήμερα",clear:"Καθαρισμός",weekStart:1,format:"d/m/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.en-AU.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates["en-AU"]={days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],daysShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],daysMin:["Su","Mo","Tu","We","Th","Fr","Sa"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],monthsShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],today:"Today",monthsTitle:"Months",clear:"Clear",weekStart:1,format:"d/mm/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.en-CA.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates["en-CA"]={days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],daysShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],daysMin:["Su","Mo","Tu","We","Th","Fr","Sa"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],monthsShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],today:"Today",monthsTitle:"Months",clear:"Clear",weekStart:0,format:"yyyy-mm-dd"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.en-GB.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates["en-GB"]={days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],daysShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],daysMin:["Su","Mo","Tu","We","Th","Fr","Sa"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],monthsShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],today:"Today",monthsTitle:"Months",clear:"Clear",weekStart:1,format:"dd/mm/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.en-IE.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates["en-IE"]={days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],daysShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],daysMin:["Su","Mo","Tu","We","Th","Fr","Sa"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],monthsShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],today:"Today",monthsTitle:"Months",clear:"Clear",weekStart:1,format:"dd/mm/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.en-NZ.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates["en-NZ"]={days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],daysShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],daysMin:["Su","Mo","Tu","We","Th","Fr","Sa"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],monthsShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],today:"Today",monthsTitle:"Months",clear:"Clear",weekStart:1,format:"d/mm/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.en-ZA.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates["en-ZA"]={days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],daysShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],daysMin:["Su","Mo","Tu","We","Th","Fr","Sa"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],monthsShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],today:"Today",monthsTitle:"Months",clear:"Clear",weekStart:1,format:"yyyy/mm/d"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.eo.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.eo={days:["dimanĉo","lundo","mardo","merkredo","ĵaŭdo","vendredo","sabato"],daysShort:["dim.","lun.","mar.","mer.","ĵaŭ.","ven.","sam."],daysMin:["d","l","ma","me","ĵ","v","s"],months:["januaro","februaro","marto","aprilo","majo","junio","julio","aŭgusto","septembro","oktobro","novembro","decembro"],monthsShort:["jan.","feb.","mar.","apr.","majo","jun.","jul.","aŭg.","sep.","okt.","nov.","dec."],today:"Hodiaŭ",clear:"Nuligi",weekStart:1,format:"yyyy-mm-dd"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.es.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.es={days:["Domingo","Lunes","Martes","Miércoles","Jueves","Viernes","Sábado"],daysShort:["Dom","Lun","Mar","Mié","Jue","Vie","Sáb"],daysMin:["Do","Lu","Ma","Mi","Ju","Vi","Sa"],months:["Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre"],monthsShort:["Ene","Feb","Mar","Abr","May","Jun","Jul","Ago","Sep","Oct","Nov","Dic"],today:"Hoy",monthsTitle:"Meses",clear:"Borrar",weekStart:1,format:"dd/mm/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.et.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.et={days:["Pühapäev","Esmaspäev","Teisipäev","Kolmapäev","Neljapäev","Reede","Laupäev"],daysShort:["Pühap","Esmasp","Teisip","Kolmap","Neljap","Reede","Laup"],daysMin:["P","E","T","K","N","R","L"],months:["Jaanuar","Veebruar","Märts","Aprill","Mai","Juuni","Juuli","August","September","Oktoober","November","Detsember"],monthsShort:["Jaan","Veebr","Märts","Apr","Mai","Juuni","Juuli","Aug","Sept","Okt","Nov","Dets"],today:"Täna",clear:"Tühjenda",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.eu.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.eu={days:["Igandea","Astelehena","Asteartea","Asteazkena","Osteguna","Ostirala","Larunbata"],daysShort:["Ig","Al","Ar","Az","Og","Ol","Lr"],daysMin:["Ig","Al","Ar","Az","Og","Ol","Lr"],months:["Urtarrila","Otsaila","Martxoa","Apirila","Maiatza","Ekaina","Uztaila","Abuztua","Iraila","Urria","Azaroa","Abendua"],monthsShort:["Urt","Ots","Mar","Api","Mai","Eka","Uzt","Abu","Ira","Urr","Aza","Abe"],today:"Gaur",monthsTitle:"Hilabeteak",clear:"Ezabatu",weekStart:1,format:"yyyy/mm/dd"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.fa.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.fa={days:["یک‌شنبه","دوشنبه","سه‌شنبه","چهارشنبه","پنج‌شنبه","جمعه","شنبه","یک‌شنبه"],daysShort:["یک","دو","سه","چهار","پنج","جمعه","شنبه","یک"],daysMin:["ی","د","س","چ","پ","ج","ش","ی"],months:["ژانویه","فوریه","مارس","آوریل","مه","ژوئن","ژوئیه","اوت","سپتامبر","اکتبر","نوامبر","دسامبر"],monthsShort:["ژان","فور","مار","آور","مه","ژون","ژوی","اوت","سپت","اکت","نوا","دسا"],today:"امروز",clear:"پاک کن",weekStart:1,format:"yyyy/mm/dd"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.fi.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.fi={days:["sunnuntai","maanantai","tiistai","keskiviikko","torstai","perjantai","lauantai"],daysShort:["sun","maa","tii","kes","tor","per","lau"],daysMin:["su","ma","ti","ke","to","pe","la"],months:["tammikuu","helmikuu","maaliskuu","huhtikuu","toukokuu","kesäkuu","heinäkuu","elokuu","syyskuu","lokakuu","marraskuu","joulukuu"],monthsShort:["tam","hel","maa","huh","tou","kes","hei","elo","syy","lok","mar","jou"],today:"tänään",clear:"Tyhjennä",weekStart:1,format:"d.m.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.fo.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.fo={days:["Sunnudagur","Mánadagur","Týsdagur","Mikudagur","Hósdagur","Fríggjadagur","Leygardagur"],daysShort:["Sun","Mán","Týs","Mik","Hós","Frí","Ley"],daysMin:["Su","Má","Tý","Mi","Hó","Fr","Le"],months:["Januar","Februar","Marts","Apríl","Mei","Juni","Juli","August","Septembur","Oktobur","Novembur","Desembur"],monthsShort:["Jan","Feb","Mar","Apr","Mei","Jun","Jul","Aug","Sep","Okt","Nov","Des"],today:"Í Dag",clear:"Reinsa"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.fr-CH.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.fr={days:["Dimanche","Lundi","Mardi","Mercredi","Jeudi","Vendredi","Samedi"],daysShort:["Dim","Lun","Mar","Mer","Jeu","Ven","Sam"],daysMin:["D","L","Ma","Me","J","V","S"],months:["Janvier","Février","Mars","Avril","Mai","Juin","Juillet","Août","Septembre","Octobre","Novembre","Décembre"],monthsShort:["Jan","Fév","Mar","Avr","Mai","Jui","Jul","Aou","Sep","Oct","Nov","Déc"],today:"Aujourd'hui",monthsTitle:"Mois",clear:"Effacer",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.fr.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.fr={days:["dimanche","lundi","mardi","mercredi","jeudi","vendredi","samedi"],daysShort:["dim.","lun.","mar.","mer.","jeu.","ven.","sam."],daysMin:["d","l","ma","me","j","v","s"],months:["janvier","février","mars","avril","mai","juin","juillet","août","septembre","octobre","novembre","décembre"],monthsShort:["janv.","févr.","mars","avril","mai","juin","juil.","août","sept.","oct.","nov.","déc."],today:"Aujourd'hui",monthsTitle:"Mois",clear:"Effacer",weekStart:1,format:"dd/mm/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.gl.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.gl={days:["Domingo","Luns","Martes","Mércores","Xoves","Venres","Sábado"],daysShort:["Dom","Lun","Mar","Mér","Xov","Ven","Sáb"],daysMin:["Do","Lu","Ma","Me","Xo","Ve","Sa"],months:["Xaneiro","Febreiro","Marzo","Abril","Maio","Xuño","Xullo","Agosto","Setembro","Outubro","Novembro","Decembro"],monthsShort:["Xan","Feb","Mar","Abr","Mai","Xun","Xul","Ago","Sep","Out","Nov","Dec"],today:"Hoxe",clear:"Limpar",weekStart:1,format:"dd/mm/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.he.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.he={days:["ראשון","שני","שלישי","רביעי","חמישי","שישי","שבת","ראשון"],daysShort:["א","ב","ג","ד","ה","ו","ש","א"],daysMin:["א","ב","ג","ד","ה","ו","ש","א"],months:["ינואר","פברואר","מרץ","אפריל","מאי","יוני","יולי","אוגוסט","ספטמבר","אוקטובר","נובמבר","דצמבר"],monthsShort:["ינו","פבר","מרץ","אפר","מאי","יונ","יול","אוג","ספט","אוק","נוב","דצמ"],today:"היום",rtl:!0}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.hi.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.hi={days:["रविवार","सोमवार","मंगलवार","बुधवार","गुरुवार","शुक्रवार","शनिवार"],daysShort:["सूर्य","सोम","मंगल","बुध","गुरु","शुक्र","शनि"],daysMin:["र","सो","मं","बु","गु","शु","श"],months:["जनवरी","फ़रवरी","मार्च","अप्रैल","मई","जून","जुलाई","अगस्त","सितम्बर","अक्टूबर","नवंबर","दिसम्बर"],monthsShort:["जन","फ़रवरी","मार्च","अप्रैल","मई","जून","जुलाई","अगस्त","सितं","अक्टूबर","नवं","दिसम्बर"],today:"आज",monthsTitle:"महीने",clear:"साफ",weekStart:1,format:"dd / mm / yyyy"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.hr.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.hr={days:["Nedjelja","Ponedjeljak","Utorak","Srijeda","Četvrtak","Petak","Subota"],daysShort:["Ned","Pon","Uto","Sri","Čet","Pet","Sub"],daysMin:["Ne","Po","Ut","Sr","Če","Pe","Su"],months:["Siječanj","Veljača","Ožujak","Travanj","Svibanj","Lipanj","Srpanj","Kolovoz","Rujan","Listopad","Studeni","Prosinac"],monthsShort:["Sij","Velj","Ožu","Tra","Svi","Lip","Srp","Kol","Ruj","Lis","Stu","Pro"],today:"Danas"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.hu.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.hu={days:["vasárnap","hétfő","kedd","szerda","csütörtök","péntek","szombat"],daysShort:["vas","hét","ked","sze","csü","pén","szo"],daysMin:["V","H","K","Sze","Cs","P","Szo"],months:["január","február","március","április","május","június","július","augusztus","szeptember","október","november","december"],monthsShort:["jan","feb","már","ápr","máj","jún","júl","aug","sze","okt","nov","dec"],today:"ma",weekStart:1,clear:"töröl",titleFormat:"yyyy. MM",format:"yyyy.mm.dd"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.hy.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.hy={days:["Կիրակի","Երկուշաբթի","Երեքշաբթի","Չորեքշաբթի","Հինգշաբթի","Ուրբաթ","Շաբաթ"],daysShort:["Կիր","Երկ","Երե","Չոր","Հին","Ուրբ","Շաբ"],daysMin:["Կի","Եկ","Եք","Չո","Հի","Ու","Շա"],months:["Հունվար","Փետրվար","Մարտ","Ապրիլ","Մայիս","Հունիս","Հուլիս","Օգոստոս","Սեպտեմբեր","Հոկտեմբեր","Նոյեմբեր","Դեկտեմբեր"],monthsShort:["Հնվ","Փետ","Մար","Ապր","Մայ","Հուն","Հուլ","Օգս","Սեպ","Հոկ","Նոյ","Դեկ"],today:"Այսօր",clear:"Ջնջել",format:"dd.mm.yyyy",weekStart:1,monthsTitle:"Ամիսնէր"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.id.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.id={days:["Minggu","Senin","Selasa","Rabu","Kamis","Jumat","Sabtu"],daysShort:["Mgu","Sen","Sel","Rab","Kam","Jum","Sab"],daysMin:["Mg","Sn","Sl","Ra","Ka","Ju","Sa"],months:["Januari","Februari","Maret","April","Mei","Juni","Juli","Agustus","September","Oktober","November","Desember"],monthsShort:["Jan","Feb","Mar","Apr","Mei","Jun","Jul","Ags","Sep","Okt","Nov","Des"],today:"Hari Ini",clear:"Kosongkan"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.is.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.is={days:["Sunnudagur","Mánudagur","Þriðjudagur","Miðvikudagur","Fimmtudagur","Föstudagur","Laugardagur"],daysShort:["Sun","Mán","Þri","Mið","Fim","Fös","Lau"],daysMin:["Su","Má","Þr","Mi","Fi","Fö","La"],months:["Janúar","Febrúar","Mars","Apríl","Maí","Júní","Júlí","Ágúst","September","Október","Nóvember","Desember"],monthsShort:["Jan","Feb","Mar","Apr","Maí","Jún","Júl","Ágú","Sep","Okt","Nóv","Des"],today:"Í Dag"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.it-CH.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.it={days:["Domenica","Lunedì","Martedì","Mercoledì","Giovedì","Venerdì","Sabato"],daysShort:["Dom","Lun","Mar","Mer","Gio","Ven","Sab"],daysMin:["Do","Lu","Ma","Me","Gi","Ve","Sa"],months:["Gennaio","Febbraio","Marzo","Aprile","Maggio","Giugno","Luglio","Agosto","Settembre","Ottobre","Novembre","Dicembre"],monthsShort:["Gen","Feb","Mar","Apr","Mag","Giu","Lug","Ago","Set","Ott","Nov","Dic"],today:"Oggi",clear:"Cancella",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.it.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.it={days:["Domenica","Lunedì","Martedì","Mercoledì","Giovedì","Venerdì","Sabato"],daysShort:["Dom","Lun","Mar","Mer","Gio","Ven","Sab"],daysMin:["Do","Lu","Ma","Me","Gi","Ve","Sa"],months:["Gennaio","Febbraio","Marzo","Aprile","Maggio","Giugno","Luglio","Agosto","Settembre","Ottobre","Novembre","Dicembre"],monthsShort:["Gen","Feb","Mar","Apr","Mag","Giu","Lug","Ago","Set","Ott","Nov","Dic"],today:"Oggi",monthsTitle:"Mesi",clear:"Cancella",weekStart:1,format:"dd/mm/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ja.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.ja={days:["日曜","月曜","火曜","水曜","木曜","金曜","土曜"],daysShort:["日","月","火","水","木","金","土"],daysMin:["日","月","火","水","木","金","土"],months:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],monthsShort:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],today:"今日",format:"yyyy/mm/dd",titleFormat:"yyyy年mm月",clear:"クリア"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ka.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.ka={days:["კვირა","ორშაბათი","სამშაბათი","ოთხშაბათი","ხუთშაბათი","პარასკევი","შაბათი"],daysShort:["კვი","ორშ","სამ","ოთხ","ხუთ","პარ","შაბ"],daysMin:["კვ","ორ","სა","ოთ","ხუ","პა","შა"],months:["იანვარი","თებერვალი","მარტი","აპრილი","მაისი","ივნისი","ივლისი","აგვისტო","სექტემბერი","ოქტომბერი","ნოემბერი","დეკემბერი"],monthsShort:["იან","თებ","მარ","აპრ","მაი","ივნ","ივლ","აგვ","სექ","ოქტ","ნოე","დეკ"],today:"დღეს",clear:"გასუფთავება",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.kh.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.kh={days:["អាទិត្យ","ចន្ទ","អង្គារ","ពុធ","ព្រហស្បតិ៍","សុក្រ","សៅរ៍"],daysShort:["អា.ទិ","ចន្ទ","អង្គារ","ពុធ","ព្រ.ហ","សុក្រ","សៅរ៍"],daysMin:["អា.ទិ","ចន្ទ","អង្គារ","ពុធ","ព្រ.ហ","សុក្រ","សៅរ៍"],months:["មករា","កុម្ភះ","មិនា","មេសា","ឧសភា","មិថុនា","កក្កដា","សីហា","កញ្ញា","តុលា","វិច្ឆិកា","ធ្នូ"],monthsShort:["មករា","កុម្ភះ","មិនា","មេសា","ឧសភា","មិថុនា","កក្កដា","សីហា","កញ្ញា","តុលា","វិច្ឆិកា","ធ្នូ"],today:"ថ្ងៃនេះ",clear:"សំអាត"},a.fn.datepicker.deprecated('The language code "kh" is deprecated and will be removed in 2.0. For Khmer support use "km" instead.')}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.kk.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.kk={days:["Жексенбі","Дүйсенбі","Сейсенбі","Сәрсенбі","Бейсенбі","Жұма","Сенбі"],daysShort:["Жек","Дүй","Сей","Сәр","Бей","Жұм","Сен"],daysMin:["Жк","Дс","Сс","Ср","Бс","Жм","Сн"],months:["Қаңтар","Ақпан","Наурыз","Сәуір","Мамыр","Маусым","Шілде","Тамыз","Қыркүйек","Қазан","Қараша","Желтоқсан"],monthsShort:["Қаң","Ақп","Нау","Сәу","Мам","Мау","Шіл","Там","Қыр","Қаз","Қар","Жел"],today:"Бүгін",weekStart:1}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.km.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.km={days:["អាទិត្យ","ចន្ទ","អង្គារ","ពុធ","ព្រហស្បតិ៍","សុក្រ","សៅរ៍"],daysShort:["អា.ទិ","ចន្ទ","អង្គារ","ពុធ","ព្រ.ហ","សុក្រ","សៅរ៍"],daysMin:["អា.ទិ","ចន្ទ","អង្គារ","ពុធ","ព្រ.ហ","សុក្រ","សៅរ៍"],months:["មករា","កុម្ភះ","មិនា","មេសា","ឧសភា","មិថុនា","កក្កដា","សីហា","កញ្ញា","តុលា","វិច្ឆិកា","ធ្នូ"],monthsShort:["មករា","កុម្ភះ","មិនា","មេសា","ឧសភា","មិថុនា","កក្កដា","សីហា","កញ្ញា","តុលា","វិច្ឆិកា","ធ្នូ"],today:"ថ្ងៃនេះ",clear:"សំអាត"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ko.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.ko={days:["일요일","월요일","화요일","수요일","목요일","금요일","토요일"],daysShort:["일","월","화","수","목","금","토"],daysMin:["일","월","화","수","목","금","토"],months:["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"],monthsShort:["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"],today:"오늘",clear:"삭제",format:"yyyy-mm-dd",titleFormat:"yyyy년mm월",weekStart:0}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.kr.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.kr={days:["일요일","월요일","화요일","수요일","목요일","금요일","토요일"],daysShort:["일","월","화","수","목","금","토"],daysMin:["일","월","화","수","목","금","토"],months:["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"],monthsShort:["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"]},a.fn.datepicker.deprecated('The language code "kr" is deprecated and will be removed in 2.0. For korean support use "ko" instead.')}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.lt.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.lt={days:["Sekmadienis","Pirmadienis","Antradienis","Trečiadienis","Ketvirtadienis","Penktadienis","Šeštadienis"],daysShort:["S","Pr","A","T","K","Pn","Š"],daysMin:["Sk","Pr","An","Tr","Ke","Pn","Št"],months:["Sausis","Vasaris","Kovas","Balandis","Gegužė","Birželis","Liepa","Rugpjūtis","Rugsėjis","Spalis","Lapkritis","Gruodis"],monthsShort:["Sau","Vas","Kov","Bal","Geg","Bir","Lie","Rugp","Rugs","Spa","Lap","Gru"],today:"Šiandien",monthsTitle:"Mėnesiai",clear:"Išvalyti",weekStart:1,format:"yyyy-mm-dd"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.lv.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.lv={days:["Svētdiena","Pirmdiena","Otrdiena","Trešdiena","Ceturtdiena","Piektdiena","Sestdiena"],daysShort:["Sv","P","O","T","C","Pk","S"],daysMin:["Sv","Pr","Ot","Tr","Ce","Pk","Se"],months:["Janvāris","Februāris","Marts","Aprīlis","Maijs","Jūnijs","Jūlijs","Augusts","Septembris","Oktobris","Novembris","Decembris"],monthsShort:["Jan","Feb","Mar","Apr","Mai","Jūn","Jūl","Aug","Sep","Okt","Nov","Dec"],monthsTitle:"Mēneši",today:"Šodien",clear:"Nodzēst",weekStart:1}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.me.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.me={days:["Nedjelja","Ponedjeljak","Utorak","Srijeda","Četvrtak","Petak","Subota"],daysShort:["Ned","Pon","Uto","Sri","Čet","Pet","Sub"],daysMin:["Ne","Po","Ut","Sr","Če","Pe","Su"],months:["Januar","Februar","Mart","April","Maj","Jun","Jul","Avgust","Septembar","Oktobar","Novembar","Decembar"],monthsShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Avg","Sep","Okt","Nov","Dec"],today:"Danas",weekStart:1,clear:"Izbriši",format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.mk.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.mk={days:["Недела","Понеделник","Вторник","Среда","Четврток","Петок","Сабота"],daysShort:["Нед","Пон","Вто","Сре","Чет","Пет","Саб"],daysMin:["Не","По","Вт","Ср","Че","Пе","Са"],months:["Јануари","Февруари","Март","Април","Мај","Јуни","Јули","Август","Септември","Октомври","Ноември","Декември"],monthsShort:["Јан","Фев","Мар","Апр","Мај","Јун","Јул","Авг","Сеп","Окт","Ное","Дек"],today:"Денес",format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.mn.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.mn={days:["Ням","Даваа","Мягмар","Лхагва","Пүрэв","Баасан","Бямба"],daysShort:["Ням","Дав","Мяг","Лха","Пүр","Баа","Бям"],daysMin:["Ня","Да","Мя","Лх","Пү","Ба","Бя"],months:["Хулгана","Үхэр","Бар","Туулай","Луу","Могой","Морь","Хонь","Бич","Тахиа","Нохой","Гахай"],monthsShort:["Хул","Үхэ","Бар","Туу","Луу","Мог","Мор","Хон","Бич","Тах","Нох","Гах"],today:"Өнөөдөр",clear:"Тодорхой",format:"yyyy.mm.dd",weekStart:1}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ms.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.ms={days:["Ahad","Isnin","Selasa","Rabu","Khamis","Jumaat","Sabtu"],daysShort:["Aha","Isn","Sel","Rab","Kha","Jum","Sab"],daysMin:["Ah","Is","Se","Ra","Kh","Ju","Sa"],months:["Januari","Februari","Mac","April","Mei","Jun","Julai","Ogos","September","Oktober","November","Disember"],monthsShort:["Jan","Feb","Mar","Apr","Mei","Jun","Jul","Ogo","Sep","Okt","Nov","Dis"],today:"Hari Ini",clear:"Bersihkan"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.nl-BE.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates["nl-BE"]={days:["zondag","maandag","dinsdag","woensdag","donderdag","vrijdag","zaterdag"],daysShort:["zo","ma","di","wo","do","vr","za"],daysMin:["zo","ma","di","wo","do","vr","za"],months:["januari","februari","maart","april","mei","juni","juli","augustus","september","oktober","november","december"],monthsShort:["jan","feb","mrt","apr","mei","jun","jul","aug","sep","okt","nov","dec"],today:"Vandaag",monthsTitle:"Maanden",clear:"Leegmaken",weekStart:1,format:"dd/mm/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.nl.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.nl={days:["zondag","maandag","dinsdag","woensdag","donderdag","vrijdag","zaterdag"],daysShort:["zo","ma","di","wo","do","vr","za"],daysMin:["zo","ma","di","wo","do","vr","za"],months:["januari","februari","maart","april","mei","juni","juli","augustus","september","oktober","november","december"],monthsShort:["jan","feb","mrt","apr","mei","jun","jul","aug","sep","okt","nov","dec"],today:"Vandaag",monthsTitle:"Maanden",clear:"Wissen",weekStart:1,format:"dd-mm-yyyy"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.no.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.no={days:["søndag","mandag","tirsdag","onsdag","torsdag","fredag","lørdag"],daysShort:["søn","man","tir","ons","tor","fre","lør"],daysMin:["sø","ma","ti","on","to","fr","lø"],months:["januar","februar","mars","april","mai","juni","juli","august","september","oktober","november","desember"],monthsShort:["jan","feb","mar","apr","mai","jun","jul","aug","sep","okt","nov","des"],today:"i dag",monthsTitle:"Måneder",clear:"Nullstill",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.oc.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.oc={days:["Dimenge","Diluns","Dimars","Dimècres","Dijòus","Divendres","Dissabte"],daysShort:["Dim","Dil","Dmr","Dmc","Dij","Div","Dis"],daysMin:["dg","dl","dr","dc","dj","dv","ds"],months:["Genièr","Febrièr","Març","Abrial","Mai","Junh","Julhet","Agost","Setembre","Octobre","Novembre","Decembre"],monthsShort:["Gen","Feb","Mar","Abr","Mai","Jun","Jul","Ago","Set","Oct","Nov","Dec"],today:"Uèi",monthsTitle:"Meses",clear:"Escafar",weekStart:1,format:"dd/mm/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.pl.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.pl={days:["Niedziela","Poniedziałek","Wtorek","Środa","Czwartek","Piątek","Sobota"],daysShort:["Niedz.","Pon.","Wt.","Śr.","Czw.","Piąt.","Sob."],daysMin:["Ndz.","Pn.","Wt.","Śr.","Czw.","Pt.","Sob."],months:["Styczeń","Luty","Marzec","Kwiecień","Maj","Czerwiec","Lipiec","Sierpień","Wrzesień","Październik","Listopad","Grudzień"],monthsShort:["Sty.","Lut.","Mar.","Kwi.","Maj","Cze.","Lip.","Sie.","Wrz.","Paź.","Lis.","Gru."],today:"Dzisiaj",weekStart:1,clear:"Wyczyść",format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.pt-BR.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates["pt-BR"]={days:["Domingo","Segunda","Terça","Quarta","Quinta","Sexta","Sábado"],daysShort:["Dom","Seg","Ter","Qua","Qui","Sex","Sáb"],daysMin:["Do","Se","Te","Qu","Qu","Se","Sa"],months:["Janeiro","Fevereiro","Março","Abril","Maio","Junho","Julho","Agosto","Setembro","Outubro","Novembro","Dezembro"],monthsShort:["Jan","Fev","Mar","Abr","Mai","Jun","Jul","Ago","Set","Out","Nov","Dez"],today:"Hoje",monthsTitle:"Meses",clear:"Limpar",format:"dd/mm/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.pt.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.pt={days:["Domingo","Segunda","Terça","Quarta","Quinta","Sexta","Sábado"],daysShort:["Dom","Seg","Ter","Qua","Qui","Sex","Sáb"],daysMin:["Do","Se","Te","Qu","Qu","Se","Sa"],months:["Janeiro","Fevereiro","Março","Abril","Maio","Junho","Julho","Agosto","Setembro","Outubro","Novembro","Dezembro"],monthsShort:["Jan","Fev","Mar","Abr","Mai","Jun","Jul","Ago","Set","Out","Nov","Dez"],today:"Hoje",monthsTitle:"Meses",clear:"Limpar",format:"dd/mm/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ro.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.ro={days:["Duminică","Luni","Marţi","Miercuri","Joi","Vineri","Sâmbătă"],daysShort:["Dum","Lun","Mar","Mie","Joi","Vin","Sâm"],daysMin:["Du","Lu","Ma","Mi","Jo","Vi","Sâ"],months:["Ianuarie","Februarie","Martie","Aprilie","Mai","Iunie","Iulie","August","Septembrie","Octombrie","Noiembrie","Decembrie"],monthsShort:["Ian","Feb","Mar","Apr","Mai","Iun","Iul","Aug","Sep","Oct","Nov","Dec"],today:"Astăzi",clear:"Șterge",weekStart:1,format:"dd/mm/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ru.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.ru={days:["Воскресенье","Понедельник","Вторник","Среда","Четверг","Пятница","Суббота"],daysShort:["Вск","Пнд","Втр","Срд","Чтв","Птн","Суб"],daysMin:["Вс","Пн","Вт","Ср","Чт","Пт","Сб"],months:["Январь","Февраль","Март","Апрель","Май","Июнь","Июль","Август","Сентябрь","Октябрь","Ноябрь","Декабрь"],monthsShort:["Янв","Фев","Мар","Апр","Май","Июн","Июл","Авг","Сен","Окт","Ноя","Дек"],today:"Сегодня",clear:"Очистить",format:"dd.mm.yyyy",weekStart:1,monthsTitle:"Месяцы"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.si.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.si={days:["ඉරිදා","සඳුදා","අඟහරුවාදා","බදාදා","බ්‍රහස්පතින්දා","සිකුරාදා","සෙනසුරාදා"],daysShort:["ඉරි","සඳු","අඟ","බදා","බ්‍රහ","සිකු","සෙන"],daysMin:["ඉ","ස","අ","බ","බ්‍ර","සි","සෙ"],months:["ජනවාරි","පෙබරවාරි","මාර්තු","අප්‍රේල්","මැයි","ජුනි","ජූලි","අගෝස්තු","සැප්තැම්බර්","ඔක්තෝබර්","නොවැම්බර්","දෙසැම්බර්"],monthsShort:["ජන","පෙබ","මාර්","අප්‍රේ","මැයි","ජුනි","ජූලි","අගෝ","සැප්","ඔක්","නොවැ","දෙසැ"],today:"අද",monthsTitle:"මාස",clear:"මකන්න",weekStart:0,format:"yyyy-mm-dd"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.sk.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.sk={days:["Nedeľa","Pondelok","Utorok","Streda","Štvrtok","Piatok","Sobota"],daysShort:["Ned","Pon","Uto","Str","Štv","Pia","Sob"],daysMin:["Ne","Po","Ut","St","Št","Pia","So"],months:["Január","Február","Marec","Apríl","Máj","Jún","Júl","August","September","Október","November","December"],monthsShort:["Jan","Feb","Mar","Apr","Máj","Jún","Júl","Aug","Sep","Okt","Nov","Dec"],today:"Dnes",clear:"Vymazať",weekStart:1,format:"d.m.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.sl.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.sl={days:["Nedelja","Ponedeljek","Torek","Sreda","Četrtek","Petek","Sobota"],daysShort:["Ned","Pon","Tor","Sre","Čet","Pet","Sob"],daysMin:["Ne","Po","To","Sr","Če","Pe","So"],months:["Januar","Februar","Marec","April","Maj","Junij","Julij","Avgust","September","Oktober","November","December"],monthsShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Avg","Sep","Okt","Nov","Dec"],today:"Danes",weekStart:1}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.sq.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.sq={days:["E Diel","E Hënë","E Martē","E Mërkurë","E Enjte","E Premte","E Shtunë"],daysShort:["Die","Hën","Mar","Mër","Enj","Pre","Shtu"],daysMin:["Di","Hë","Ma","Më","En","Pr","Sht"],months:["Janar","Shkurt","Mars","Prill","Maj","Qershor","Korrik","Gusht","Shtator","Tetor","Nëntor","Dhjetor"],monthsShort:["Jan","Shk","Mar","Pri","Maj","Qer","Korr","Gu","Sht","Tet","Nën","Dhjet"],monthsTitle:"Muaj",today:"Sot",weekStart:1,format:"dd/mm/yyyy",clear:"Pastro"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.sr-latin.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates["sr-latin"]={days:["Nedelja","Ponedeljak","Utorak","Sreda","Četvrtak","Petak","Subota"],daysShort:["Ned","Pon","Uto","Sre","Čet","Pet","Sub"],daysMin:["N","Po","U","Sr","Č","Pe","Su"],months:["Januar","Februar","Mart","April","Maj","Jun","Jul","Avgust","Septembar","Oktobar","Novembar","Decembar"],monthsShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Avg","Sep","Okt","Nov","Dec"],today:"Danas",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.sr.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.sr={days:["Недеља","Понедељак","Уторак","Среда","Четвртак","Петак","Субота"],daysShort:["Нед","Пон","Уто","Сре","Чет","Пет","Суб"],daysMin:["Н","По","У","Ср","Ч","Пе","Су"],months:["Јануар","Фебруар","Март","Април","Мај","Јун","Јул","Август","Септембар","Октобар","Новембар","Децембар"],monthsShort:["Јан","Феб","Мар","Апр","Мај","Јун","Јул","Авг","Сеп","Окт","Нов","Дец"],today:"Данас",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.sv.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.sv={days:["söndag","måndag","tisdag","onsdag","torsdag","fredag","lördag"],daysShort:["sön","mån","tis","ons","tor","fre","lör"],daysMin:["sö","må","ti","on","to","fr","lö"],months:["januari","februari","mars","april","maj","juni","juli","augusti","september","oktober","november","december"],monthsShort:["jan","feb","mar","apr","maj","jun","jul","aug","sep","okt","nov","dec"],today:"Idag",format:"yyyy-mm-dd",weekStart:1,clear:"Rensa"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.sw.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.sw={days:["Jumapili","Jumatatu","Jumanne","Jumatano","Alhamisi","Ijumaa","Jumamosi"],daysShort:["J2","J3","J4","J5","Alh","Ij","J1"],daysMin:["2","3","4","5","A","I","1"],months:["Januari","Februari","Machi","Aprili","Mei","Juni","Julai","Agosti","Septemba","Oktoba","Novemba","Desemba"],monthsShort:["Jan","Feb","Mac","Apr","Mei","Jun","Jul","Ago","Sep","Okt","Nov","Des"],today:"Leo"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ta.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.ta={days:["ஞாயிறு","திங்கள்","செவ்வாய்","புதன்","வியாழன்","வெள்ளி","சனி"],daysShort:["ஞாயி","திங்","செவ்","புத","வியா","வெள்","சனி"],daysMin:["ஞா","தி","செ","பு","வி","வெ","ச"],months:["ஜனவரி","பிப்ரவரி","மார்ச்","ஏப்ரல்","மே","ஜூன்","ஜூலை","ஆகஸ்டு","செப்டம்பர்","அக்டோபர்","நவம்பர்","டிசம்பர்"],monthsShort:["ஜன","பிப்","மார்","ஏப்","மே","ஜூன்","ஜூலை","ஆக","செப்","அக்","நவ","டிச"],today:"இன்று",monthsTitle:"மாதங்கள்",clear:"நீக்கு",weekStart:1,format:"dd/mm/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.tg.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.tg={days:["Якшанбе","Душанбе","Сешанбе","Чоршанбе","Панҷшанбе","Ҷумъа","Шанбе"],daysShort:["Яшб","Дшб","Сшб","Чшб","Пшб","Ҷум","Шнб"],daysMin:["Яш","Дш","Сш","Чш","Пш","Ҷм","Шб"],months:["Январ","Феврал","Март","Апрел","Май","Июн","Июл","Август","Сентябр","Октябр","Ноябр","Декабр"],monthsShort:["Янв","Фев","Мар","Апр","Май","Июн","Июл","Авг","Сен","Окт","Ноя","Дек"],today:"Имрӯз",monthsTitle:"Моҳҳо",clear:"Тоза намудан",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.th.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.th={days:["อาทิตย์","จันทร์","อังคาร","พุธ","พฤหัส","ศุกร์","เสาร์","อาทิตย์"],daysShort:["อา","จ","อ","พ","พฤ","ศ","ส","อา"],daysMin:["อา","จ","อ","พ","พฤ","ศ","ส","อา"],months:["มกราคม","กุมภาพันธ์","มีนาคม","เมษายน","พฤษภาคม","มิถุนายน","กรกฎาคม","สิงหาคม","กันยายน","ตุลาคม","พฤศจิกายน","ธันวาคม"],monthsShort:["ม.ค.","ก.พ.","มี.ค.","เม.ย.","พ.ค.","มิ.ย.","ก.ค.","ส.ค.","ก.ย.","ต.ค.","พ.ย.","ธ.ค."],today:"วันนี้"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.tk.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.tk={days:["Ýekşenbe","Duşenbe","Sişenbe","Çarşenbe","Penşenbe","Anna","Şenbe"],daysShort:["Ýek","Duş","Siş","Çar","Pen","Ann","Şen"],daysMin:["Ýe","Du","Si","Ça","Pe","An","Şe"],months:["Ýanwar","Fewral","Mart","Aprel","Maý","Iýun","Iýul","Awgust","Sentýabr","Oktýabr","Noýabr","Dekabr"],monthsShort:["Ýan","Few","Mar","Apr","Maý","Iýn","Iýl","Awg","Sen","Okt","Noý","Dek"],today:"Bu gün",monthsTitle:"Aýlar",clear:"Aýyr",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.tr.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.tr={days:["Pazar","Pazartesi","Salı","Çarşamba","Perşembe","Cuma","Cumartesi"],daysShort:["Pz","Pzt","Sal","Çrş","Prş","Cu","Cts"],daysMin:["Pz","Pzt","Sa","Çr","Pr","Cu","Ct"],months:["Ocak","Şubat","Mart","Nisan","Mayıs","Haziran","Temmuz","Ağustos","Eylül","Ekim","Kasım","Aralık"],monthsShort:["Oca","Şub","Mar","Nis","May","Haz","Tem","Ağu","Eyl","Eki","Kas","Ara"],today:"Bugün",clear:"Temizle",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.uk.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.uk={days:["Неділя","Понеділок","Вівторок","Середа","Четвер","П'ятниця","Субота"],daysShort:["Нед","Пнд","Втр","Срд","Чтв","Птн","Суб"],daysMin:["Нд","Пн","Вт","Ср","Чт","Пт","Сб"],months:["Cічень","Лютий","Березень","Квітень","Травень","Червень","Липень","Серпень","Вересень","Жовтень","Листопад","Грудень"],monthsShort:["Січ","Лют","Бер","Кві","Тра","Чер","Лип","Сер","Вер","Жов","Лис","Гру"],today:"Сьогодні",clear:"Очистити",format:"dd.mm.yyyy",weekStart:1}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.uz-cyrl.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates["uz-cyrl"]={days:["Якшанба","Душанба","Сешанба","Чоршанба","Пайшанба","Жума","Шанба"],daysShort:["Якш","Ду","Се","Чор","Пай","Жу","Ша"],daysMin:["Як","Ду","Се","Чо","Па","Жу","Ша"],months:["Январь","Февраль","Март","Апрель","Май","Июнь","Июль","Август","Сентябрь","Октябрь","Ноябрь","Декабрь"],monthsShort:["Янв","Фев","Мар","Апр","Май","Июн","Июл","Авг","Сен","Окт","Ноя","Дек"],today:"Бугун",clear:"Ўчириш",format:"dd.mm.yyyy",weekStart:1,monthsTitle:"Ойлар"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.uz-latn.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates["uz-latn"]={days:["Yakshanba","Dushanba","Seshanba","Chorshanba","Payshanba","Juma","Shanba"],daysShort:["Yak","Du","Se","Chor","Pay","Ju","Sha"],daysMin:["Ya","Du","Se","Cho","Pa","Ju","Sha"],months:["Yanvar","Fevral","Mart","Aprel","May","Iyun","Iyul","Avgust","Sentabr","Oktabr","Noyabr","Dekabr"],monthsShort:["Yan","Fev","Mar","Apr","May","Iyn","Iyl","Avg","Sen","Okt","Noy","Dek"],today:"Bugun",clear:"O'chirish",format:"dd.mm.yyyy",weekStart:1,monthsTitle:"Oylar"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.vi.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.vi={days:["Chủ nhật","Thứ hai","Thứ ba","Thứ tư","Thứ năm","Thứ sáu","Thứ bảy"],daysShort:["CN","Thứ 2","Thứ 3","Thứ 4","Thứ 5","Thứ 6","Thứ 7"],daysMin:["CN","T2","T3","T4","T5","T6","T7"],months:["Tháng 1","Tháng 2","Tháng 3","Tháng 4","Tháng 5","Tháng 6","Tháng 7","Tháng 8","Tháng 9","Tháng 10","Tháng 11","Tháng 12"],monthsShort:["Th1","Th2","Th3","Th4","Th5","Th6","Th7","Th8","Th9","Th10","Th11","Th12"],today:"Hôm nay",clear:"Xóa",format:"dd/mm/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.zh-CN.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates["zh-CN"]={days:["星期日","星期一","星期二","星期三","星期四","星期五","星期六"],daysShort:["周日","周一","周二","周三","周四","周五","周六"],daysMin:["日","一","二","三","四","五","六"],months:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],monthsShort:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],today:"今天",monthsTitle:"选择月份",clear:"清除",format:"yyyy-mm-dd",titleFormat:"yyyy年mm月",weekStart:1}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.zh-TW.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates["zh-TW"]={days:["星期日","星期一","星期二","星期三","星期四","星期五","星期六"],daysShort:["週日","週一","週二","週三","週四","週五","週六"],daysMin:["日","一","二","三","四","五","六"],months:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],monthsShort:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],today:"今天",format:"yyyy年mm月dd日",weekStart:1,clear:"清除"}}(jQuery); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/malihu-custom-scrollbar-plugin/mCSB_buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/malihu-custom-scrollbar-plugin/mCSB_buttons.png -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/select2/js/i18n/zh-TW.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.12 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | !function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/zh-TW",[],function(){return{inputTooLong:function(n){return"請刪掉"+(n.input.length-n.maximum)+"個字元"},inputTooShort:function(n){return"請再輸入"+(n.minimum-n.input.length)+"個字元"},loadingMore:function(){return"載入中…"},maximumSelected:function(n){return"你只能選擇最多"+n.maximum+"項"},noResults:function(){return"沒有找到相符的項目"},searching:function(){return"搜尋中…"},removeAllItems:function(){return"刪除所有項目"}}}),n.define,n.require}(); -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi.Host/wwwroot/libs/select2/js/select2-bootstrap-modal-patch.js: -------------------------------------------------------------------------------- 1 | /* 2 | https://select2.org/troubleshooting/common-problems 3 | */ 4 | $.fn.modal.Constructor.prototype._enforceFocus = function () { }; -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi/Controllers/AbpShopController.cs: -------------------------------------------------------------------------------- 1 | using AbpShop.Localization; 2 | using Volo.Abp.AspNetCore.Mvc; 3 | 4 | namespace AbpShop.Controllers 5 | { 6 | /* Inherit your controllers from this class. 7 | */ 8 | public abstract class AbpShopController : AbpController 9 | { 10 | protected AbpShopController() 11 | { 12 | LocalizationResource = typeof(AbpShopResource); 13 | } 14 | } 15 | } -------------------------------------------------------------------------------- /abpshop/src/AbpShop.HttpApi/Models/Test/TestModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace AbpShop.Models.Test 4 | { 5 | public class TestModel 6 | { 7 | public string Name { get; set; } 8 | 9 | public DateTime BirthDate { get; set; } 10 | } 11 | } -------------------------------------------------------------------------------- /abpshop/test/AbpShop.Application.Tests/AbpShop.Application.Tests.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | netcoreapp3.1 7 | AbpShop 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /abpshop/test/AbpShop.Application.Tests/AbpShopApplicationTestBase.cs: -------------------------------------------------------------------------------- 1 | namespace AbpShop 2 | { 3 | public abstract class AbpShopApplicationTestBase : AbpShopTestBase 4 | { 5 | 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /abpshop/test/AbpShop.Application.Tests/AbpShopApplicationTestModule.cs: -------------------------------------------------------------------------------- 1 | using Volo.Abp.Modularity; 2 | 3 | namespace AbpShop 4 | { 5 | [DependsOn( 6 | typeof(AbpShopApplicationModule), 7 | typeof(AbpShopDomainTestModule) 8 | )] 9 | public class AbpShopApplicationTestModule : AbpModule 10 | { 11 | 12 | } 13 | } -------------------------------------------------------------------------------- /abpshop/test/AbpShop.Domain.Tests/AbpShop.Domain.Tests.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | netcoreapp3.1 7 | AbpShop 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /abpshop/test/AbpShop.Domain.Tests/AbpShopDomainTestBase.cs: -------------------------------------------------------------------------------- 1 | namespace AbpShop 2 | { 3 | public abstract class AbpShopDomainTestBase : AbpShopTestBase 4 | { 5 | 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /abpshop/test/AbpShop.Domain.Tests/AbpShopDomainTestModule.cs: -------------------------------------------------------------------------------- 1 | using AbpShop.EntityFrameworkCore; 2 | using Volo.Abp.Modularity; 3 | 4 | namespace AbpShop 5 | { 6 | [DependsOn( 7 | typeof(AbpShopEntityFrameworkCoreTestModule) 8 | )] 9 | public class AbpShopDomainTestModule : AbpModule 10 | { 11 | 12 | } 13 | } -------------------------------------------------------------------------------- /abpshop/test/AbpShop.EntityFrameworkCore.Tests/EntityFrameworkCore/AbpShopEntityFrameworkCoreTestBase.cs: -------------------------------------------------------------------------------- 1 | using Volo.Abp; 2 | 3 | namespace AbpShop.EntityFrameworkCore 4 | { 5 | public abstract class AbpShopEntityFrameworkCoreTestBase : AbpShopTestBase 6 | { 7 | 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /abpshop/test/AbpShop.HttpApi.Client.ConsoleTestApp/AbpShopConsoleApiClientModule.cs: -------------------------------------------------------------------------------- 1 | using Volo.Abp.Http.Client.IdentityModel; 2 | using Volo.Abp.Modularity; 3 | 4 | namespace AbpShop.HttpApi.Client.ConsoleTestApp 5 | { 6 | [DependsOn( 7 | typeof(AbpShopHttpApiClientModule), 8 | typeof(AbpHttpClientIdentityModelModule) 9 | )] 10 | public class AbpShopConsoleApiClientModule : AbpModule 11 | { 12 | 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /abpshop/test/AbpShop.HttpApi.Client.ConsoleTestApp/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "RemoteServices": { 3 | "Default": { 4 | "BaseUrl": "https://localhost:44304" 5 | } 6 | }, 7 | "IdentityClients": { 8 | "Default": { 9 | "GrantType": "password", 10 | "ClientId": "AbpShop_App", 11 | "ClientSecret": "1q2w3e*", 12 | "UserName": "admin", 13 | "UserPassword": "1q2w3E*", 14 | "Authority": "https://localhost:44304", 15 | "Scope": "AbpShop" 16 | } 17 | } 18 | } -------------------------------------------------------------------------------- /abpshop/test/AbpShop.TestBase/AbpShopTestDataSeedContributor.cs: -------------------------------------------------------------------------------- 1 | using System.Threading.Tasks; 2 | using Volo.Abp.Data; 3 | using Volo.Abp.DependencyInjection; 4 | 5 | namespace AbpShop 6 | { 7 | public class AbpShopTestDataSeedContributor : IDataSeedContributor, ITransientDependency 8 | { 9 | public Task SeedAsync(DataSeedContext context) 10 | { 11 | /* Seed additional test data... */ 12 | 13 | return Task.CompletedTask; 14 | } 15 | } 16 | } -------------------------------------------------------------------------------- /uni-app/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | /dist 4 | 5 | # local env files 6 | .env.local 7 | .env.*.local 8 | 9 | # Log files 10 | npm-debug.log* 11 | yarn-debug.log* 12 | yarn-error.log* 13 | 14 | # Editor directories and files 15 | .idea 16 | .vscode 17 | *.suo 18 | *.ntvs* 19 | *.njsproj 20 | *.sln 21 | *.sw? 22 | build.sh 23 | .idea 24 | unpackage -------------------------------------------------------------------------------- /uni-app/components/base/star/mini.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 22 | 23 | -------------------------------------------------------------------------------- /uni-app/config/app.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | // 请求域名 格式: https://您的域名 3 | // #ifdef MP || APP-PLUS 4 | HTTP_REQUEST_URL: 'https://cloud.yznt.com', 5 | // #endif 6 | // #ifdef H5 7 | //H5接口是浏览器地址 8 | HTTP_REQUEST_URL: window.location.protocol + "//" + window.location.host, 9 | // #endif 10 | 11 | 12 | HEADER: { 13 | 'content-type': 'application/json' 14 | }, 15 | // 回话密钥名称 请勿修改此配置 16 | TOKENNAME: 'Authori-zation', 17 | // 缓存时间 0 永久 18 | EXPIRE: 0, 19 | //分页最多显示条数 20 | LIMIT: 10 21 | }; 22 | -------------------------------------------------------------------------------- /uni-app/config/socket.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | // Socket链接 暂不做配置 3 | WSS_SERVER_URL:'', 4 | // Socket调试模式 5 | SERVER_DEBUG:true, 6 | // 心跳间隔 7 | PINGINTERVAL:3000 8 | } -------------------------------------------------------------------------------- /uni-app/mixins/SendVerifyCode.js: -------------------------------------------------------------------------------- 1 | export default { 2 | data() { 3 | return { 4 | disabled: false, 5 | text: "获取验证码" 6 | }; 7 | }, 8 | methods: { 9 | sendCode() { 10 | if (this.disabled) return; 11 | this.disabled = true; 12 | let n = 60; 13 | this.text = "剩余 " + n + "s"; 14 | const run = setInterval(() => { 15 | n = n - 1; 16 | if (n < 0) { 17 | clearInterval(run); 18 | } 19 | this.text = "剩余 " + n + "s"; 20 | if (this.text < "剩余 " + 0 + "s") { 21 | this.disabled = false; 22 | this.text = "重新获取"; 23 | } 24 | }, 1000); 25 | } 26 | } 27 | }; -------------------------------------------------------------------------------- /uni-app/pages/admin/order_cancellation/scan.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/pages/admin/order_cancellation/scan.gif -------------------------------------------------------------------------------- /uni-app/pages/admin/static/scan.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/pages/admin/static/scan.gif -------------------------------------------------------------------------------- /uni-app/pages/index/components/advert.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 19 | 20 | 31 | -------------------------------------------------------------------------------- /uni-app/pages/index/components/index.js: -------------------------------------------------------------------------------- 1 | const path = require('path') 2 | const files = require.context('./', false, /\.vue$/) 3 | 4 | const modules = {} 5 | files.keys().forEach(key => { 6 | const name = path.basename(key, '.vue') 7 | modules[name] = files(key).default || files(key) 8 | }) 9 | export default modules -------------------------------------------------------------------------------- /uni-app/pages/promotional_items/index.vue: -------------------------------------------------------------------------------- 1 | 3 | 4 | 6 | 7 | 9 | -------------------------------------------------------------------------------- /uni-app/pages/users/static/vip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/pages/users/static/vip.png -------------------------------------------------------------------------------- /uni-app/pages/users/static/vip01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/pages/users/static/vip01.png -------------------------------------------------------------------------------- /uni-app/pages/users/static/vip02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/pages/users/static/vip02.png -------------------------------------------------------------------------------- /uni-app/pages/users/static/vip03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/pages/users/static/vip03.png -------------------------------------------------------------------------------- /uni-app/pages/users/static/vip04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/pages/users/static/vip04.png -------------------------------------------------------------------------------- /uni-app/pages/users/static/vip05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/pages/users/static/vip05.png -------------------------------------------------------------------------------- /uni-app/plugin/emoji-awesome/img/sheet_apple_64_indexed_256colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/plugin/emoji-awesome/img/sheet_apple_64_indexed_256colors.png -------------------------------------------------------------------------------- /uni-app/plugin/emoji-awesome/img/sheet_emojione_64_indexed_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/plugin/emoji-awesome/img/sheet_emojione_64_indexed_128.png -------------------------------------------------------------------------------- /uni-app/plugin/emoji-awesome/img/sheet_facebook_64_indexed_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/plugin/emoji-awesome/img/sheet_facebook_64_indexed_128.png -------------------------------------------------------------------------------- /uni-app/plugin/emoji-awesome/img/sheet_google_64_indexed_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/plugin/emoji-awesome/img/sheet_google_64_indexed_128.png -------------------------------------------------------------------------------- /uni-app/plugin/emoji-awesome/img/sheet_messenger_64_indexed_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/plugin/emoji-awesome/img/sheet_messenger_64_indexed_128.png -------------------------------------------------------------------------------- /uni-app/plugin/emoji-awesome/img/sheet_twitter_64_indexed_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/plugin/emoji-awesome/img/sheet_twitter_64_indexed_128.png -------------------------------------------------------------------------------- /uni-app/static/images/1-001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/1-001.png -------------------------------------------------------------------------------- /uni-app/static/images/1-002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/1-002.png -------------------------------------------------------------------------------- /uni-app/static/images/2-001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/2-001.png -------------------------------------------------------------------------------- /uni-app/static/images/2-002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/2-002.png -------------------------------------------------------------------------------- /uni-app/static/images/3-001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/3-001.png -------------------------------------------------------------------------------- /uni-app/static/images/3-002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/3-002.png -------------------------------------------------------------------------------- /uni-app/static/images/4-001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/4-001.png -------------------------------------------------------------------------------- /uni-app/static/images/4-002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/4-002.png -------------------------------------------------------------------------------- /uni-app/static/images/accountBg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/accountBg.png -------------------------------------------------------------------------------- /uni-app/static/images/address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/address.png -------------------------------------------------------------------------------- /uni-app/static/images/alter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/alter.png -------------------------------------------------------------------------------- /uni-app/static/images/angle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/angle.png -------------------------------------------------------------------------------- /uni-app/static/images/balance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/balance.png -------------------------------------------------------------------------------- /uni-app/static/images/barg001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/barg001.png -------------------------------------------------------------------------------- /uni-app/static/images/barg002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/barg002.png -------------------------------------------------------------------------------- /uni-app/static/images/bargain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/bargain.png -------------------------------------------------------------------------------- /uni-app/static/images/bargainBg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/bargainBg.jpg -------------------------------------------------------------------------------- /uni-app/static/images/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/close.gif -------------------------------------------------------------------------------- /uni-app/static/images/code_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/code_1.png -------------------------------------------------------------------------------- /uni-app/static/images/code_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/code_2.png -------------------------------------------------------------------------------- /uni-app/static/images/collection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/collection.png -------------------------------------------------------------------------------- /uni-app/static/images/coupon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/coupon.png -------------------------------------------------------------------------------- /uni-app/static/images/crmeb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/crmeb.png -------------------------------------------------------------------------------- /uni-app/static/images/customer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/customer.png -------------------------------------------------------------------------------- /uni-app/static/images/default.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/default.gif -------------------------------------------------------------------------------- /uni-app/static/images/del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/del.png -------------------------------------------------------------------------------- /uni-app/static/images/dfh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/dfh.png -------------------------------------------------------------------------------- /uni-app/static/images/dfk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/dfk.png -------------------------------------------------------------------------------- /uni-app/static/images/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/down.png -------------------------------------------------------------------------------- /uni-app/static/images/dpj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/dpj.png -------------------------------------------------------------------------------- /uni-app/static/images/dsh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/dsh.png -------------------------------------------------------------------------------- /uni-app/static/images/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/edit.png -------------------------------------------------------------------------------- /uni-app/static/images/empty-box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/empty-box.png -------------------------------------------------------------------------------- /uni-app/static/images/examine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/examine.png -------------------------------------------------------------------------------- /uni-app/static/images/explosion-title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/explosion-title.png -------------------------------------------------------------------------------- /uni-app/static/images/explosion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/explosion.png -------------------------------------------------------------------------------- /uni-app/static/images/extension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/extension.png -------------------------------------------------------------------------------- /uni-app/static/images/f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/f.png -------------------------------------------------------------------------------- /uni-app/static/images/face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/face.png -------------------------------------------------------------------------------- /uni-app/static/images/gift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/gift.png -------------------------------------------------------------------------------- /uni-app/static/images/group01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/group01.png -------------------------------------------------------------------------------- /uni-app/static/images/group02.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/group02.gif -------------------------------------------------------------------------------- /uni-app/static/images/horn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/horn.png -------------------------------------------------------------------------------- /uni-app/static/images/kefu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/kefu.png -------------------------------------------------------------------------------- /uni-app/static/images/keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/keyboard.png -------------------------------------------------------------------------------- /uni-app/static/images/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/left.png -------------------------------------------------------------------------------- /uni-app/static/images/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/light.png -------------------------------------------------------------------------------- /uni-app/static/images/line.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/line.jpg -------------------------------------------------------------------------------- /uni-app/static/images/ling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/ling.png -------------------------------------------------------------------------------- /uni-app/static/images/live-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/live-01.png -------------------------------------------------------------------------------- /uni-app/static/images/live-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/live-02.png -------------------------------------------------------------------------------- /uni-app/static/images/live-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/live-03.png -------------------------------------------------------------------------------- /uni-app/static/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/lock.png -------------------------------------------------------------------------------- /uni-app/static/images/lock2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/lock2.png -------------------------------------------------------------------------------- /uni-app/static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/logo.png -------------------------------------------------------------------------------- /uni-app/static/images/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/logo2.png -------------------------------------------------------------------------------- /uni-app/static/images/medal01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/medal01.png -------------------------------------------------------------------------------- /uni-app/static/images/medal02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/medal02.png -------------------------------------------------------------------------------- /uni-app/static/images/medal03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/medal03.png -------------------------------------------------------------------------------- /uni-app/static/images/member.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/member.png -------------------------------------------------------------------------------- /uni-app/static/images/memberCenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/memberCenter.png -------------------------------------------------------------------------------- /uni-app/static/images/money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/money.png -------------------------------------------------------------------------------- /uni-app/static/images/mores.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/mores.png -------------------------------------------------------------------------------- /uni-app/static/images/news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/news.png -------------------------------------------------------------------------------- /uni-app/static/images/noAddress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/noAddress.png -------------------------------------------------------------------------------- /uni-app/static/images/noCart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/noCart.png -------------------------------------------------------------------------------- /uni-app/static/images/noCollection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/noCollection.png -------------------------------------------------------------------------------- /uni-app/static/images/noCoupon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/noCoupon.png -------------------------------------------------------------------------------- /uni-app/static/images/noEvaluate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/noEvaluate.png -------------------------------------------------------------------------------- /uni-app/static/images/noNews.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/noNews.png -------------------------------------------------------------------------------- /uni-app/static/images/noOrder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/noOrder.png -------------------------------------------------------------------------------- /uni-app/static/images/noSearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/noSearch.png -------------------------------------------------------------------------------- /uni-app/static/images/noShopper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/noShopper.png -------------------------------------------------------------------------------- /uni-app/static/images/one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/one.png -------------------------------------------------------------------------------- /uni-app/static/images/open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/open.gif -------------------------------------------------------------------------------- /uni-app/static/images/order1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/order1.png -------------------------------------------------------------------------------- /uni-app/static/images/order2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/order2.png -------------------------------------------------------------------------------- /uni-app/static/images/order3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/order3.png -------------------------------------------------------------------------------- /uni-app/static/images/order4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/order4.png -------------------------------------------------------------------------------- /uni-app/static/images/order5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/order5.png -------------------------------------------------------------------------------- /uni-app/static/images/orderIndex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/orderIndex.png -------------------------------------------------------------------------------- /uni-app/static/images/orderTime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/orderTime.png -------------------------------------------------------------------------------- /uni-app/static/images/phone_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/phone_1.png -------------------------------------------------------------------------------- /uni-app/static/images/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/plus.png -------------------------------------------------------------------------------- /uni-app/static/images/poster-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/poster-close.png -------------------------------------------------------------------------------- /uni-app/static/images/posterbackgd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/posterbackgd.png -------------------------------------------------------------------------------- /uni-app/static/images/priceTag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/priceTag.png -------------------------------------------------------------------------------- /uni-app/static/images/pricetitle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/pricetitle.jpg -------------------------------------------------------------------------------- /uni-app/static/images/qh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/qh.png -------------------------------------------------------------------------------- /uni-app/static/images/record1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/record1.png -------------------------------------------------------------------------------- /uni-app/static/images/record2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/record2.png -------------------------------------------------------------------------------- /uni-app/static/images/record3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/record3.png -------------------------------------------------------------------------------- /uni-app/static/images/record4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/record4.png -------------------------------------------------------------------------------- /uni-app/static/images/red-packets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/red-packets.png -------------------------------------------------------------------------------- /uni-app/static/images/right-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/right-icon.png -------------------------------------------------------------------------------- /uni-app/static/images/rushBuy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/rushBuy.jpg -------------------------------------------------------------------------------- /uni-app/static/images/score.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/score.png -------------------------------------------------------------------------------- /uni-app/static/images/sh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/sh.png -------------------------------------------------------------------------------- /uni-app/static/images/share-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/share-info.png -------------------------------------------------------------------------------- /uni-app/static/images/shop-nav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/shop-nav.png -------------------------------------------------------------------------------- /uni-app/static/images/shop-phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/shop-phone.png -------------------------------------------------------------------------------- /uni-app/static/images/shuoming.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/shuoming.png -------------------------------------------------------------------------------- /uni-app/static/images/sort1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/sort1.png -------------------------------------------------------------------------------- /uni-app/static/images/sort2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/sort2.png -------------------------------------------------------------------------------- /uni-app/static/images/sort3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/sort3.png -------------------------------------------------------------------------------- /uni-app/static/images/spike-icon-001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/spike-icon-001.png -------------------------------------------------------------------------------- /uni-app/static/images/spike-icon-002.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/spike-icon-002.gif -------------------------------------------------------------------------------- /uni-app/static/images/spot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/spot.png -------------------------------------------------------------------------------- /uni-app/static/images/stars1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/stars1.png -------------------------------------------------------------------------------- /uni-app/static/images/stars2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/stars2.png -------------------------------------------------------------------------------- /uni-app/static/images/stars3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/stars3.png -------------------------------------------------------------------------------- /uni-app/static/images/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/stop.png -------------------------------------------------------------------------------- /uni-app/static/images/three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/three.png -------------------------------------------------------------------------------- /uni-app/static/images/time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/time.png -------------------------------------------------------------------------------- /uni-app/static/images/transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/transparent.png -------------------------------------------------------------------------------- /uni-app/static/images/two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/two.png -------------------------------------------------------------------------------- /uni-app/static/images/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/up.png -------------------------------------------------------------------------------- /uni-app/static/images/user_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/user_bg.png -------------------------------------------------------------------------------- /uni-app/static/images/user_menu08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/user_menu08.png -------------------------------------------------------------------------------- /uni-app/static/images/user_menu09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/user_menu09.png -------------------------------------------------------------------------------- /uni-app/static/images/vacancy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/vacancy.png -------------------------------------------------------------------------------- /uni-app/static/images/value.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/value.jpg -------------------------------------------------------------------------------- /uni-app/static/images/vip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/vip.png -------------------------------------------------------------------------------- /uni-app/static/images/writeOff.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/writeOff.jpg -------------------------------------------------------------------------------- /uni-app/static/images/written.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/images/written.png -------------------------------------------------------------------------------- /uni-app/static/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/img/icon.png -------------------------------------------------------------------------------- /uni-app/static/img/live-logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/img/live-logo.gif -------------------------------------------------------------------------------- /uni-app/static/img/qa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/img/qa.png -------------------------------------------------------------------------------- /uni-app/static/img/release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/img/release.png -------------------------------------------------------------------------------- /uni-app/static/img/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/uni-app/static/img/video.png -------------------------------------------------------------------------------- /uni-app/store/index.js: -------------------------------------------------------------------------------- 1 | import Vue from "vue"; 2 | import Vuex from "vuex"; 3 | import modules from "./modules"; 4 | import getters from "./getters"; 5 | 6 | Vue.use(Vuex); 7 | const debug = process.env.NODE_ENV !== "production"; 8 | 9 | export default new Vuex.Store({ 10 | modules, 11 | getters, 12 | strict: debug 13 | }); 14 | -------------------------------------------------------------------------------- /uni-app/store/modules/hotWords.js: -------------------------------------------------------------------------------- 1 | export default { 2 | namespaced: true, 3 | state: { 4 | // 搜索关键字 5 | hotWord: [] 6 | }, 7 | getters: {}, 8 | mutations: { 9 | setHotWord (state, hotWordList) { 10 | state.hotWord = hotWordList; 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /uni-app/store/modules/index.js: -------------------------------------------------------------------------------- 1 | import app from "./app"; 2 | import hotWords from "./hotWords"; 3 | 4 | export default { 5 | app, 6 | hotWords 7 | }; 8 | -------------------------------------------------------------------------------- /uni-app/utils/dialog.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /uni-app/utils/validate.js: -------------------------------------------------------------------------------- 1 | /** 2 | * 验证小数点后两位及多个小数 3 | * money 金额 4 | */ 5 | export function isMoney(money) { 6 | var reg = /(^[1-9]([0-9]+)?(\.[0-9]{1,2})?$)|(^(0){1}$)|(^[0-9]\.[0-9]([0-9])?$)/ 7 | if (reg.test(money)) { 8 | return true 9 | } else { 10 | return false 11 | } 12 | } 13 | 14 | /** 15 | * 验证手机号码 16 | * money 金额 17 | */ 18 | export function checkPhone(phone) { 19 | var reg = /^1(3|4|5|6|7|8|9)\d{9}$/ 20 | if (reg.test(phone)) { 21 | return true 22 | } else { 23 | return false 24 | } 25 | } 26 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /uni-app/vue.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | productionSourceMap: false, // 生产打包时不输出map文件,增加打包速度 3 | configureWebpack: config => { 4 | if (process.env.NODE_ENV === 'production') { 5 | config.optimization.minimizer[0].options.terserOptions.compress.warnings = false 6 | config.optimization.minimizer[0].options.terserOptions.compress.drop_console = true 7 | config.optimization.minimizer[0].options.terserOptions.compress.drop_debugger = true 8 | config.optimization.minimizer[0].options.terserOptions.compress.pure_funcs = ['console.log'] 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vue/.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not ie <= 8 4 | -------------------------------------------------------------------------------- /vue/.eslintignore: -------------------------------------------------------------------------------- 1 | # 忽略目录 2 | build/ 3 | tests/ 4 | node_modules/ 5 | 6 | # node 覆盖率文件 7 | coverage/ 8 | 9 | # 忽略文件 10 | **/*-min.js 11 | **/*.min.js 12 | -------------------------------------------------------------------------------- /vue/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | /dist 4 | # Log files 5 | npm-debug.log* 6 | yarn-debug.log* 7 | yarn-error.log* 8 | 9 | # Editor directories and files 10 | .idea 11 | .vscode 12 | *.suo 13 | *.ntvs* 14 | *.njsproj 15 | *.sln 16 | *.sw* 17 | .env 18 | -------------------------------------------------------------------------------- /vue/alias.config.js: -------------------------------------------------------------------------------- 1 | /** 2 | * 由于 Vue CLI 3 不再使用传统的 webpack 配置文件,故 WebStorm 无法识别别名 3 | * 本文件对项目无任何作用,仅作为 WebStorm 识别别名用 4 | * 进入 WebStorm preferences -> Language & Framework -> JavaScript -> Webpack,选择这个文件即可 5 | * */ 6 | const resolve = dir => require('path').join(__dirname, dir); 7 | 8 | module.exports = { 9 | resolve: { 10 | alias: { 11 | '@': resolve('src'), 12 | '@api': resolve('src/api') 13 | } 14 | } 15 | }; 16 | -------------------------------------------------------------------------------- /vue/babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: [ 3 | ['@vue/app', { 4 | useBuiltIns: 'entry' 5 | }] 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /vue/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | moduleFileExtensions: [ 3 | 'js', 4 | 'jsx', 5 | 'json', 6 | 'vue' 7 | ], 8 | transform: { 9 | '^.+\\.vue$': 'vue-jest', 10 | '.+\\.(css|styl|less|sass|scss|png|jpg|ttf|woff|woff2)$': 'jest-transform-stub', 11 | '^.+\\.jsx?$': 'babel-jest' 12 | }, 13 | moduleNameMapper: { 14 | '^@/(.*)$': '/src/$1' 15 | }, 16 | snapshotSerializers: [ 17 | 'jest-serializer-vue' 18 | ], 19 | testMatch: [ 20 | '**/tests/unit/**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx)' 21 | ], 22 | testURL: 'http://localhost/' 23 | } 24 | -------------------------------------------------------------------------------- /vue/npm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/npm -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/attachment/fileTypeImages/icon_chm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/attachment/fileTypeImages/icon_chm.gif -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/attachment/fileTypeImages/icon_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/attachment/fileTypeImages/icon_default.png -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/attachment/fileTypeImages/icon_doc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/attachment/fileTypeImages/icon_doc.gif -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/attachment/fileTypeImages/icon_exe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/attachment/fileTypeImages/icon_exe.gif -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/attachment/fileTypeImages/icon_jpg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/attachment/fileTypeImages/icon_jpg.gif -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/attachment/fileTypeImages/icon_mp3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/attachment/fileTypeImages/icon_mp3.gif -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/attachment/fileTypeImages/icon_mv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/attachment/fileTypeImages/icon_mv.gif -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/attachment/fileTypeImages/icon_pdf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/attachment/fileTypeImages/icon_pdf.gif -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/attachment/fileTypeImages/icon_ppt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/attachment/fileTypeImages/icon_ppt.gif -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/attachment/fileTypeImages/icon_psd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/attachment/fileTypeImages/icon_psd.gif -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/attachment/fileTypeImages/icon_rar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/attachment/fileTypeImages/icon_rar.gif -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/attachment/fileTypeImages/icon_txt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/attachment/fileTypeImages/icon_txt.gif -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/attachment/fileTypeImages/icon_xls.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/attachment/fileTypeImages/icon_xls.gif -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/attachment/images/alignicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/attachment/images/alignicon.gif -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/attachment/images/alignicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/attachment/images/alignicon.png -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/attachment/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/attachment/images/bg.png -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/attachment/images/file-icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/attachment/images/file-icons.gif -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/attachment/images/file-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/attachment/images/file-icons.png -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/attachment/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/attachment/images/icons.gif -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/attachment/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/attachment/images/icons.png -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/attachment/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/attachment/images/image.png -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/attachment/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/attachment/images/progress.png -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/attachment/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/attachment/images/success.gif -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/attachment/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/attachment/images/success.png -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/background/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/background/images/bg.png -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/background/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/background/images/success.png -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/charts/images/charts0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/charts/images/charts0.png -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/charts/images/charts1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/charts/images/charts1.png -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/charts/images/charts2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/charts/images/charts2.png -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/charts/images/charts3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/charts/images/charts3.png -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/charts/images/charts4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/charts/images/charts4.png -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/charts/images/charts5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/charts/images/charts5.png -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/emotion/images/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/emotion/images/0.gif -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/emotion/images/bface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/emotion/images/bface.gif -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/emotion/images/cface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/emotion/images/cface.gif -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/emotion/images/fface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/emotion/images/fface.gif -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/emotion/images/jxface2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/emotion/images/jxface2.gif -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/emotion/images/neweditor-tab-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/emotion/images/neweditor-tab-bg.png -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/emotion/images/tface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/emotion/images/tface.gif -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/emotion/images/wface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/emotion/images/wface.gif -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/emotion/images/yface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/emotion/images/yface.gif -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/help/help.css: -------------------------------------------------------------------------------- 1 | .wrapper{width: 370px;margin: 10px auto;zoom: 1;} 2 | .tabbody{height: 360px;} 3 | .tabbody .panel{width:100%;height: 360px;position: absolute;background: #fff;} 4 | .tabbody .panel h1{font-size:26px;margin: 5px 0 0 5px;} 5 | .tabbody .panel p{font-size:12px;margin: 5px 0 0 5px;} 6 | .tabbody table{width:90%;line-height: 20px;margin: 5px 0 0 5px;;} 7 | .tabbody table thead{font-weight: bold;line-height: 25px;} -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/image/images/alignicon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/image/images/alignicon.jpg -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/image/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/image/images/bg.png -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/image/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/image/images/icons.gif -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/image/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/image/images/icons.png -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/image/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/image/images/image.png -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/image/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/image/images/progress.png -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/image/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/image/images/success.gif -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/image/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/image/images/success.png -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/scrawl/images/addimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/scrawl/images/addimg.png -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/scrawl/images/brush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/scrawl/images/brush.png -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/scrawl/images/delimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/scrawl/images/delimg.png -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/scrawl/images/delimgH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/scrawl/images/delimgH.png -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/scrawl/images/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/scrawl/images/empty.png -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/scrawl/images/emptyH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/scrawl/images/emptyH.png -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/scrawl/images/eraser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/scrawl/images/eraser.png -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/scrawl/images/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/scrawl/images/redo.png -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/scrawl/images/redoH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/scrawl/images/redoH.png -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/scrawl/images/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/scrawl/images/scale.png -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/scrawl/images/scaleH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/scrawl/images/scaleH.png -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/scrawl/images/size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/scrawl/images/size.png -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/scrawl/images/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/scrawl/images/undo.png -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/scrawl/images/undoH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/scrawl/images/undoH.png -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/table/dragicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/table/dragicon.png -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/template/images/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/template/images/bg.gif -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/template/images/pre0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/template/images/pre0.png -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/template/images/pre1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/template/images/pre1.png -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/template/images/pre2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/template/images/pre2.png -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/template/images/pre3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/template/images/pre3.png -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/template/images/pre4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/template/images/pre4.png -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/video/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/video/images/bg.png -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/video/images/center_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/video/images/center_focus.jpg -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/video/images/file-icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/video/images/file-icons.gif -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/video/images/file-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/video/images/file-icons.png -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/video/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/video/images/icons.gif -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/video/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/video/images/icons.png -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/video/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/video/images/image.png -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/video/images/left_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/video/images/left_focus.jpg -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/video/images/none_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/video/images/none_focus.jpg -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/video/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/video/images/progress.png -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/video/images/right_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/video/images/right_focus.jpg -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/video/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/video/images/success.gif -------------------------------------------------------------------------------- /vue/public/UEditor/dialogs/video/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/dialogs/video/images/success.png -------------------------------------------------------------------------------- /vue/public/UEditor/lang/en/images/addimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/lang/en/images/addimage.png -------------------------------------------------------------------------------- /vue/public/UEditor/lang/en/images/alldeletebtnhoverskin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/lang/en/images/alldeletebtnhoverskin.png -------------------------------------------------------------------------------- /vue/public/UEditor/lang/en/images/alldeletebtnupskin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/lang/en/images/alldeletebtnupskin.png -------------------------------------------------------------------------------- /vue/public/UEditor/lang/en/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/lang/en/images/background.png -------------------------------------------------------------------------------- /vue/public/UEditor/lang/en/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/lang/en/images/button.png -------------------------------------------------------------------------------- /vue/public/UEditor/lang/en/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/lang/en/images/copy.png -------------------------------------------------------------------------------- /vue/public/UEditor/lang/en/images/deletedisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/lang/en/images/deletedisable.png -------------------------------------------------------------------------------- /vue/public/UEditor/lang/en/images/deleteenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/lang/en/images/deleteenable.png -------------------------------------------------------------------------------- /vue/public/UEditor/lang/en/images/listbackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/lang/en/images/listbackground.png -------------------------------------------------------------------------------- /vue/public/UEditor/lang/en/images/localimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/lang/en/images/localimage.png -------------------------------------------------------------------------------- /vue/public/UEditor/lang/en/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/lang/en/images/music.png -------------------------------------------------------------------------------- /vue/public/UEditor/lang/en/images/rotateleftdisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/lang/en/images/rotateleftdisable.png -------------------------------------------------------------------------------- /vue/public/UEditor/lang/en/images/rotateleftenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/lang/en/images/rotateleftenable.png -------------------------------------------------------------------------------- /vue/public/UEditor/lang/en/images/rotaterightdisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/lang/en/images/rotaterightdisable.png -------------------------------------------------------------------------------- /vue/public/UEditor/lang/en/images/rotaterightenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/lang/en/images/rotaterightenable.png -------------------------------------------------------------------------------- /vue/public/UEditor/lang/en/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/lang/en/images/upload.png -------------------------------------------------------------------------------- /vue/public/UEditor/lang/zh-cn/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/lang/zh-cn/images/copy.png -------------------------------------------------------------------------------- /vue/public/UEditor/lang/zh-cn/images/localimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/lang/zh-cn/images/localimage.png -------------------------------------------------------------------------------- /vue/public/UEditor/lang/zh-cn/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/lang/zh-cn/images/music.png -------------------------------------------------------------------------------- /vue/public/UEditor/lang/zh-cn/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/lang/zh-cn/images/upload.png -------------------------------------------------------------------------------- /vue/public/UEditor/themes/default/images/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/themes/default/images/anchor.gif -------------------------------------------------------------------------------- /vue/public/UEditor/themes/default/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/themes/default/images/arrow.png -------------------------------------------------------------------------------- /vue/public/UEditor/themes/default/images/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/themes/default/images/arrow_down.png -------------------------------------------------------------------------------- /vue/public/UEditor/themes/default/images/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/themes/default/images/arrow_up.png -------------------------------------------------------------------------------- /vue/public/UEditor/themes/default/images/button-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/themes/default/images/button-bg.gif -------------------------------------------------------------------------------- /vue/public/UEditor/themes/default/images/cancelbutton.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/themes/default/images/cancelbutton.gif -------------------------------------------------------------------------------- /vue/public/UEditor/themes/default/images/charts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/themes/default/images/charts.png -------------------------------------------------------------------------------- /vue/public/UEditor/themes/default/images/cursor_h.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/themes/default/images/cursor_h.gif -------------------------------------------------------------------------------- /vue/public/UEditor/themes/default/images/cursor_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/themes/default/images/cursor_h.png -------------------------------------------------------------------------------- /vue/public/UEditor/themes/default/images/cursor_v.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/themes/default/images/cursor_v.gif -------------------------------------------------------------------------------- /vue/public/UEditor/themes/default/images/cursor_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/themes/default/images/cursor_v.png -------------------------------------------------------------------------------- /vue/public/UEditor/themes/default/images/dialog-title-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/themes/default/images/dialog-title-bg.png -------------------------------------------------------------------------------- /vue/public/UEditor/themes/default/images/filescan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/themes/default/images/filescan.png -------------------------------------------------------------------------------- /vue/public/UEditor/themes/default/images/highlighted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/themes/default/images/highlighted.gif -------------------------------------------------------------------------------- /vue/public/UEditor/themes/default/images/icons-all.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/themes/default/images/icons-all.gif -------------------------------------------------------------------------------- /vue/public/UEditor/themes/default/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/themes/default/images/icons.gif -------------------------------------------------------------------------------- /vue/public/UEditor/themes/default/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/themes/default/images/icons.png -------------------------------------------------------------------------------- /vue/public/UEditor/themes/default/images/loaderror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/themes/default/images/loaderror.png -------------------------------------------------------------------------------- /vue/public/UEditor/themes/default/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/themes/default/images/loading.gif -------------------------------------------------------------------------------- /vue/public/UEditor/themes/default/images/lock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/themes/default/images/lock.gif -------------------------------------------------------------------------------- /vue/public/UEditor/themes/default/images/neweditor-tab-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/themes/default/images/neweditor-tab-bg.png -------------------------------------------------------------------------------- /vue/public/UEditor/themes/default/images/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/themes/default/images/pagebreak.gif -------------------------------------------------------------------------------- /vue/public/UEditor/themes/default/images/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/themes/default/images/scale.png -------------------------------------------------------------------------------- /vue/public/UEditor/themes/default/images/sortable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/themes/default/images/sortable.png -------------------------------------------------------------------------------- /vue/public/UEditor/themes/default/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/themes/default/images/spacer.gif -------------------------------------------------------------------------------- /vue/public/UEditor/themes/default/images/sparator_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/themes/default/images/sparator_v.png -------------------------------------------------------------------------------- /vue/public/UEditor/themes/default/images/table-cell-align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/themes/default/images/table-cell-align.png -------------------------------------------------------------------------------- /vue/public/UEditor/themes/default/images/tangram-colorpicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/themes/default/images/tangram-colorpicker.png -------------------------------------------------------------------------------- /vue/public/UEditor/themes/default/images/toolbar_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/themes/default/images/toolbar_bg.png -------------------------------------------------------------------------------- /vue/public/UEditor/themes/default/images/unhighlighted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/themes/default/images/unhighlighted.gif -------------------------------------------------------------------------------- /vue/public/UEditor/themes/default/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/themes/default/images/upload.png -------------------------------------------------------------------------------- /vue/public/UEditor/themes/default/images/videologo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/themes/default/images/videologo.gif -------------------------------------------------------------------------------- /vue/public/UEditor/themes/default/images/word.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/themes/default/images/word.gif -------------------------------------------------------------------------------- /vue/public/UEditor/themes/default/images/wordpaste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/public/UEditor/themes/default/images/wordpaste.png -------------------------------------------------------------------------------- /vue/public/UEditor/themes/iframe.css: -------------------------------------------------------------------------------- 1 | /*可以在这里添加你自己的css*/ 2 | -------------------------------------------------------------------------------- /vue/public/UEditor/third-party/highcharts/modules/heatmap.js: -------------------------------------------------------------------------------- 1 | (function(b){var k=b.seriesTypes,l=b.each;k.heatmap=b.extendClass(k.map,{colorKey:"z",useMapGeometry:!1,pointArrayMap:["y","z"],translate:function(){var c=this,b=c.options,i=Number.MAX_VALUE,j=Number.MIN_VALUE;c.generatePoints();l(c.data,function(a){var e=a.x,f=a.y,d=a.z,g=(b.colsize||1)/2,h=(b.rowsize||1)/2;a.path=["M",e-g,f-h,"L",e+g,f-h,"L",e+g,f+h,"L",e-g,f+h,"Z"];a.shapeType="path";a.shapeArgs={d:c.translatePath(a.path)};typeof d==="number"&&(d>j?j=d:d 2 | 3 | 4 | 5 | 14 | 15 | 18 | -------------------------------------------------------------------------------- /vue/src/components/mobileConfig/index.js: -------------------------------------------------------------------------------- 1 | const path = require('path') 2 | const files = require.context('./', false, /\.vue$/) 3 | 4 | const modules = {} 5 | files.keys().forEach(key => { 6 | const name = path.basename(key, '.vue') 7 | modules[name] = files(key).default || files(key) 8 | }) 9 | export default modules 10 | -------------------------------------------------------------------------------- /vue/src/components/mobileConfigRight/c_hot_box.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 10 | 11 | 14 | -------------------------------------------------------------------------------- /vue/src/components/mobileConfigRight/index.js: -------------------------------------------------------------------------------- 1 | const path = require('path') 2 | const files = require.context('./', false, /\.vue$/) 3 | 4 | const modules = {} 5 | files.keys().forEach(key => { 6 | const name = path.basename(key, '.vue') 7 | modules[name] = files(key).default || files(key) 8 | }) 9 | export default modules 10 | -------------------------------------------------------------------------------- /vue/src/components/mobilePage/index.js: -------------------------------------------------------------------------------- 1 | const path = require('path') 2 | const files = require.context('./', false, /\.vue$/) 3 | 4 | const modules = {} 5 | files.keys().forEach(key => { 6 | const name = path.basename(key, '.vue') 7 | modules[name] = files(key).default || files(key) 8 | }) 9 | export default modules 10 | -------------------------------------------------------------------------------- /vue/src/i18n/index.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue'; 2 | import VueI18n from 'vue-i18n'; 3 | import store from '@/store/index'; 4 | 5 | import Languages from '@/i18n/locale'; 6 | 7 | store.dispatch('admin/i18n/getLocale'); 8 | 9 | const locale = store.state.admin.i18n.locale; 10 | 11 | Vue.use(VueI18n); 12 | 13 | export default new VueI18n({ 14 | locale, 15 | messages: Languages 16 | }); 17 | -------------------------------------------------------------------------------- /vue/src/i18n/locale.js: -------------------------------------------------------------------------------- 1 | // 导入自有语言包 2 | import zhCN from './locale/zh-CN'; 3 | // import enUS from './locale/en-US'; 4 | 5 | // 导入 iView 语言包 6 | import zhCNiView from 'view-design/dist/locale/zh-CN'; 7 | // import enUSiView from 'view-design/dist/locale/en-US'; 8 | 9 | // 导入布局语言包 10 | import layoutLocale from '@/layouts/basic-layout/i18n'; 11 | 12 | // 合并语言包 13 | export default { 14 | 'zh-CN': Object.assign(zhCN, zhCNiView, layoutLocale['zh-CN']) 15 | // 'en-US': Object.assign(enUS, enUSiView, layoutLocale['en-US']) 16 | }; 17 | -------------------------------------------------------------------------------- /vue/src/layouts/basic-layout/mixins/translate-title.js: -------------------------------------------------------------------------------- 1 | export default { 2 | methods: { 3 | tTitle (title) { 4 | if (title && title.indexOf('$t:') === 0) { 5 | return this.$t(title.split('$t:')[1]); 6 | } else { 7 | return title; 8 | } 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vue/src/libs/random_str.js: -------------------------------------------------------------------------------- 1 | // 生成随机字符串 2 | export default function (len = 32) { 3 | const $chars = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890'; 4 | const maxPos = $chars.length; 5 | let str = ''; 6 | for (let i = 0; i < len; i++) { 7 | str += $chars.charAt(Math.floor(Math.random() * maxPos)); 8 | } 9 | return str; 10 | } 11 | -------------------------------------------------------------------------------- /vue/src/libs/util.db.js: -------------------------------------------------------------------------------- 1 | import low from 'lowdb'; 2 | import LocalStorage from 'lowdb/adapters/LocalStorage'; 3 | 4 | const adapter = new LocalStorage('admin'); 5 | const db = low(adapter); 6 | 7 | db 8 | .defaults({ 9 | sys: {}, 10 | database: {} 11 | }) 12 | .write(); 13 | 14 | export default db; 15 | -------------------------------------------------------------------------------- /vue/src/menu/header.js: -------------------------------------------------------------------------------- 1 | // 菜单,顶栏 2 | 3 | export default [ 4 | { 5 | path: '/', 6 | title: '首页', 7 | icon: 'md-home', 8 | hideSider: false, 9 | name: 'home' 10 | }, 11 | { 12 | path: '/log', 13 | title: '日志', 14 | icon: 'md-locate', 15 | hideSider: true, 16 | name: 'system' 17 | } 18 | ]; 19 | -------------------------------------------------------------------------------- /vue/src/menu/modules/dashboard.js: -------------------------------------------------------------------------------- 1 | const pre = '/dashboard/'; 2 | 3 | export default { 4 | path: '/dashboard', 5 | title: 'Dashboard', 6 | header: 'home', 7 | icon: 'md-speedometer', 8 | children: [ 9 | { 10 | path: `${pre}console`, 11 | title: '主控台' 12 | } 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /vue/src/menu/modules/log.js: -------------------------------------------------------------------------------- 1 | export default { 2 | path: '/log', 3 | title: '前端日志', 4 | header: 'system', 5 | icon: 'md-locate' 6 | } 7 | -------------------------------------------------------------------------------- /vue/src/menu/sider.js: -------------------------------------------------------------------------------- 1 | // 菜单,侧边栏 2 | import dashboard from './modules/dashboard'; 3 | 4 | // 系统 5 | import log from './modules/log'; 6 | 7 | export default [ 8 | log 9 | ]; 10 | -------------------------------------------------------------------------------- /vue/src/mixins/app.js: -------------------------------------------------------------------------------- 1 | /** 2 | * 通用混合 3 | * */ 4 | export default { 5 | methods: { 6 | // 当 $route 更新时触发 7 | appRouteChange (to, from) { 8 | 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vue/src/mock/admin-mock/patch/withCredentials.js: -------------------------------------------------------------------------------- 1 | export default function (Mock) { 2 | // http://cnine.me/note/FrontEnd/mock-lose-cookies-dbg.html 3 | Mock.XHR.prototype.__send = Mock.XHR.prototype.send; 4 | Mock.XHR.prototype.send = function () { 5 | if (this.custom.xhr) this.custom.xhr.withCredentials = this.withCredentials || false; 6 | this.__send.apply(this, arguments); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vue/src/mock/index.js: -------------------------------------------------------------------------------- 1 | import adminMock from './admin-mock'; 2 | 3 | const req = context => context.keys().map(context); 4 | const options = req(require.context('./api/', true, /\.js$/)) 5 | .filter(e => e.default) 6 | .map(e => e.default); 7 | 8 | options.forEach(option => { 9 | adminMock.load(option); 10 | }); 11 | -------------------------------------------------------------------------------- /vue/src/pages/account/mixins.js: -------------------------------------------------------------------------------- 1 | import iHeaderI18n from '@/layouts/basic-layout/header-i18n'; 2 | import { mapState } from 'vuex'; 3 | 4 | export default { 5 | components: { iHeaderI18n }, 6 | computed: { 7 | ...mapState('admin/layout', [ 8 | 'showI18n' 9 | ]) 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vue/src/pages/app/wechat/reply/index.vue: -------------------------------------------------------------------------------- 1 | 9 | 10 | 15 | 16 | 19 | -------------------------------------------------------------------------------- /vue/src/pages/echarts/trade/product.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 10 | 11 | -------------------------------------------------------------------------------- /vue/src/pages/marketing/systemConfig/index.vue: -------------------------------------------------------------------------------- 1 | 11 | 12 | 17 | 18 | 21 | -------------------------------------------------------------------------------- /vue/src/pages/system/error/403/index.vue: -------------------------------------------------------------------------------- 1 | 6 | 9 | -------------------------------------------------------------------------------- /vue/src/pages/system/error/404/index.vue: -------------------------------------------------------------------------------- 1 | 6 | 9 | -------------------------------------------------------------------------------- /vue/src/pages/system/error/500/index.vue: -------------------------------------------------------------------------------- 1 | 6 | 9 | -------------------------------------------------------------------------------- /vue/src/plugins/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * 插件 3 | * */ 4 | 5 | // 错误捕获 6 | import pluginError from '@/plugins/error'; 7 | // 日志插件 8 | import pluginLog from '@/plugins/log'; 9 | // 鉴权指令 10 | import directiveAuth from '@/plugins/auth'; 11 | 12 | export default { 13 | async install (Vue, options) { 14 | // 插件 15 | Vue.use(pluginError); 16 | Vue.use(pluginLog); 17 | 18 | // 指令 19 | Vue.directive('auth', directiveAuth); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /vue/src/router/modules/index.js: -------------------------------------------------------------------------------- 1 | import BasicLayout from '@/layouts/basic-layout'; 2 | 3 | const meta = { 4 | auth: true 5 | }; 6 | 7 | const pre = 'home_'; 8 | 9 | export default { 10 | path: '/admin/home', 11 | name: 'home', 12 | header: 'home', 13 | redirect: { 14 | name: `${pre}index` 15 | }, 16 | meta, 17 | component: BasicLayout, 18 | children: [ 19 | { 20 | path: '/', 21 | name: `${pre}index`, 22 | meta: { 23 | auth: ['admin-index-index'], 24 | title: '主页' 25 | }, 26 | component: () => import('@/pages/index/index') 27 | } 28 | ] 29 | }; 30 | -------------------------------------------------------------------------------- /vue/src/router/modules/order.js: -------------------------------------------------------------------------------- 1 | import BasicLayout from '@/layouts/basic-layout'; 2 | 3 | const pre = 'order_'; 4 | 5 | export default { 6 | path: '/admin/order', 7 | name: 'order', 8 | header: 'order', 9 | redirect: { 10 | name: `${pre}list` 11 | }, 12 | component: BasicLayout, 13 | children: [ 14 | { 15 | path: 'list', 16 | name: `${pre}list`, 17 | meta: { 18 | auth: ['admin-order-storeOrder-index'], 19 | title: '订单管理' 20 | }, 21 | component: () => import('@/pages/order/orderList/index') 22 | } 23 | ] 24 | }; 25 | -------------------------------------------------------------------------------- /vue/src/store/index.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue'; 2 | import Vuex from 'vuex'; 3 | 4 | import admin from './modules/admin' 5 | 6 | Vue.use(Vuex); 7 | 8 | export default new Vuex.Store({ 9 | modules: { 10 | admin 11 | } 12 | }) 13 | -------------------------------------------------------------------------------- /vue/src/store/modules/admin/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * 该文件启用 `@/store/index.js` 导入所有 vuex 模块。 3 | * 这个文件是一次性创建的,不应该被修改。 4 | */ 5 | 6 | const files = require.context('./modules', false, /\.js$/); 7 | const modules = {}; 8 | 9 | files.keys().forEach(key => { 10 | modules[key.replace(/(\.\/|\.js)/g, '')] = files(key).default 11 | }); 12 | 13 | export default { 14 | namespaced: true, 15 | modules 16 | }; 17 | -------------------------------------------------------------------------------- /vue/src/styles/default/index.less: -------------------------------------------------------------------------------- 1 | // 自定义主题 2 | // 详见 https://www.iviewui.com/docs/guide/theme 3 | @import '~view-design/src/styles/index.less'; 4 | 5 | @menu-dark-title: #191a23; 6 | @menu-dark-active-bg: #101117; 7 | -------------------------------------------------------------------------------- /vue/src/styles/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/src/styles/font/iconfont.eot -------------------------------------------------------------------------------- /vue/src/styles/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/src/styles/font/iconfont.ttf -------------------------------------------------------------------------------- /vue/src/styles/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/src/styles/font/iconfont.woff -------------------------------------------------------------------------------- /vue/src/styles/font/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbpShop/abpshop/e61be93d5b39b3587f8e1cb5ed2c410372608ac4/vue/src/styles/font/iconfont.woff2 -------------------------------------------------------------------------------- /vue/src/styles/index.less: -------------------------------------------------------------------------------- 1 | @import "./default/index.less"; 2 | @import "./font/iconfont.css"; 3 | @import "./setting.less"; 4 | @import "./common.less"; 5 | 6 | @import "./layout/index.less"; 7 | 8 | @import "./pages/account.less"; 9 | @import "./style.css"; 10 | -------------------------------------------------------------------------------- /vue/src/styles/layout/index.less: -------------------------------------------------------------------------------- 1 | @import "basic-layout/layout.less"; 2 | @import "basic-layout/menu.less"; 3 | -------------------------------------------------------------------------------- /vue/src/styles/setting.less: -------------------------------------------------------------------------------- 1 | // 侧边菜单宽度,需与 setting.js 的 menuSideWidth 保持一致 2 | @menuSideWidth: 200px; 3 | -------------------------------------------------------------------------------- /vue/src/utils/authLapse.js: -------------------------------------------------------------------------------- 1 | export function authLapse (data) { 2 | return new Promise((resolve, reject) => { 3 | this.$Notice.warning({ 4 | title: data.title, 5 | duration: 3, 6 | desc: data.info, 7 | render: h => { 8 | return h('div', [ 9 | h('a', { 10 | attrs: { 11 | href: 'http://www.yznt.com' 12 | } 13 | }, data.info) 14 | ]) 15 | } 16 | }); 17 | // if(data.status === false){ 18 | // 19 | // } 20 | }) 21 | } 22 | -------------------------------------------------------------------------------- /vue/src/utils/index.js: -------------------------------------------------------------------------------- 1 | export function importAll (r) { 2 | let __modules = {} 3 | r.keys().forEach(key => { 4 | let m = r(key).default 5 | let n = m.name; 6 | __modules[n] = m 7 | }); 8 | return __modules 9 | } 10 | -------------------------------------------------------------------------------- /vue/src/utils/modalSure.js: -------------------------------------------------------------------------------- 1 | export function modelSure (formRequestPromise, Title) { 2 | return new Promise((resolve, reject) => { 3 | this.$Modal.confirm({ 4 | title: Title, 5 | content: '

确定要删除吗?

删除后将无法恢复,请谨慎操作!

', 6 | onOk: () => { 7 | formRequestPromise.then(({ data }) => { 8 | }).catch(() => { 9 | this.$Message.error('表单加载失败') 10 | }) 11 | } 12 | // onCancel: () => { 13 | // this.$Message.info('取消成功'); 14 | // } 15 | }); 16 | }) 17 | } 18 | -------------------------------------------------------------------------------- /vue/tests/unit/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | env: { 3 | jest: true 4 | }, 5 | rules: { 6 | 'import/no-extraneous-dependencies': 'off' 7 | } 8 | } --------------------------------------------------------------------------------