这是基于vue-vben-admin 模板适用于abp vNext的前端管理项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
colin 0c5a11680b upgrade: upgrade abp framework to 9.0.4 1 year ago
..
LINGYUN/Abp/ElsaNext feat(elsa): add elsa 3.0 1 year ago
FodyWeavers.xml feat(elsa): add elsa 3.0 1 year ago
FodyWeavers.xsd feat(elsa): add elsa 3.0 1 year ago
LINGYUN.Abp.ElsaNext.csproj upgrade: upgrade abp framework to 9.0.4 1 year ago
README.md feat(elsa): add elsa 3.0 1 year ago

README.md

LINGYUN.Abp.ElsaNext

elsa-core 工作流的abp集成(3.x版本)

特性

  • 定义AbpTenantResolver与多租户集成,使elsa支持abp租户解析
  • 定义AbpTenantsProvider与多租户集成,使elsa从abp中取租户信息
  • 定义AbpElsaIdGenerator通过IGuidGenerator接口生成工作流标识
  • 定义abp相关JavaScript扩展

配置使用


    [DependsOn(
        typeof(AbpElsaNextModule)
        )]
    public class YouProjectModule : AbpModule
    {
        public override void PreConfigureServices(ServiceConfigurationContext context)
        {
            PreConfigure<IModule>(elsa =>
            {
                // 自定义elsa相关配置
            });
        }
    }