提交 a6d54954 编写于 作者: IBZGIT01's avatar IBZGIT01

ibizdev提交

上级 c81989c8
流水线 #204 已失败
import { environment } from './environment';
export const AppEnvironment = {
// 原型示例数模式
// 原型示例数模式
SampleMode: false,
// 应用名称
AppName: 'Mob',
......@@ -10,13 +12,13 @@ export const AppEnvironment = {
// 系统名称
SysName: 'ionicdemo',
// 远程登录地址
RemoteLogin: 'api/login',
RemoteLogin: environment.production === true ? 'Mob/api/login' : 'api/login',
// session登录地址
AppLogin: 'ibizutil/login',
AppLogin: environment.production === true ? 'Mob/ibizutil/login' : 'ibizutil/login',
// 文件导出
ExportFile: 'ibizutil/download',
ExportFile: environment.production === true ? 'Mob/ibizutil/download' : 'ibizutil/download',
// 文件上传
UploadFile: 'ibizutil/upload',
UploadFile: environment.production === true ? 'Mob/ibizutil/upload' : 'ibizutil/upload',
//登录模式(默认远程登录/session/uac)
LoginModel: 'session'
};
\ No newline at end of file
package com.sa.ibiz.demo.workflow.wfuser;
import java.util.ArrayList;
import java.util.List;
import org.flowable.engine.delegate.DelegateExecution;
import org.springframework.stereotype.Component;
@Component
public class WFUser {
public List<String> getUser(DelegateExecution execution,String strPerson ) {
ArrayList<String> list = new ArrayList<String>();
String[] persons = strPerson.split(",") ;
for (String str : persons) {
list.add(str);
}
return list ;
}
}
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册