对接API对接文档

Flowable流程设计器对接了很多后台的API接口,只需要按照我们的数据结构拼装就可以完美集成设计器

API接口分类

  • 后台流程设计器接口
  • 前台流程回显模拟接口

后台流程设计器接口

  • 公共分页对象 Query
名称类型描述
pageSizeInteger每页多少条
pageNumInteger页码

获取函数列表

  • 接口名

getFunctionVariableVos

  • 请求URL

/flow/bpmnDesigner/prod/api

  • 请求方式

Get

  • 请求参数

  • 返回字段
名称类型描述
successboolean成功状态:true/false
codeString状态码:100/101
msgString提示信息
dataPlusVariableVo变量对象实体
  • 返回示例
{
  "code": "100",
  "msg": "OK",
  "data": [
    {
      "name": "变量List是否相等",
      "code": "var:contains()",
      "prefix": null,
      "function": null,
      "remark": null
    },
    {
      "name": "变量List任意判断",
      "code": "var:containsAny()",
      "prefix": null,
      "function": null,
      "remark": null
    }
  ],
  "success": true
}

获取组织树

  • 接口名

getOrgTree

  • 请求URL

/flow/bpmnDesigner/prod/api

  • 请求方式

Get

  • 请求参数

  • 返回字段
名称类型描述
successboolean成功状态:true/false
codeString状态码:100/101
msgString提示信息
dataPlusOrgTreeVo变量对象实体
  • 返回示例
{
  "code": "100",
  "msg": "OK",
  "data": [
    {
      "id": "1",
      "pid": null,
      "code": "1000",
      "name": "中国石化",
      "shortName": "中国石化",
      "companyId": null,
      "companyName": null,
      "sourceType": "1",
      "leaderCode": null,
      "leaderName": null
    },
    {
      "id": "2",
      "pid": "1",
      "code": "100001",
      "name": "北京市石化",
      "shortName": "北京市石化",
      "companyId": null,
      "companyName": null,
      "sourceType": "1",
      "leaderCode": null,
      "leaderName": null
    }
  ],
  "success": true
}

通过条件获取人员分页列表

  • 接口名

getPersonalPagerModel

  • 请求URL

/flow/bpmnDesigner/prod/api

  • 请求方式

POST

  • 请求参数
名称类型描述
entityTcompanyId:公司id
queryQuery见公共分页对象
  • 返回字段
名称类型描述
successboolean成功状态:true/false
codeString状态码:100/101
msgString提示信息
dataPlusPersonal变量对象实体
  • 返回示例
{
  "code": "100",
  "msg": "OK",
  "data": {
    "total": 10,
    "rows": [
      {
        "createTime": null,
        "creator": null,
        "updateTime": null,
        "updator": null,
        "delFlag": 1,
        "keyword": null,
        "id": "1",
        "code": "10000",
        "name": "易烊千玺",
        "leaderCode": null,
        "leaderName": null,
        "headImg": null,
        "mobile": null,
        "email": "liuwenjun05101@163.com",
        "deptId": "27",
        "deptName": "领导班子",
        "companyId": "1",
        "companyName": "中国石化",
        "status": 1,
        "leaveDate": null,
        "thirdParty": null,
        "thirdUserId": null,
        "thirdUnionId": null,
        "ddUserid": null,
        "sex": 0,
        "address": null,
        "fax": null,
        "positionCode": null,
        "positionName": null,
        "jobGradeCode": null,
        "jobGradeName": null,
        "deptCode": null,
        "companyCode": null,
        "roles": null,
        "companyIds": null,
        "deptIds": null
      },
      {
        "createTime": null,
        "creator": null,
        "updateTime": null,
        "updator": null,
        "delFlag": 1,
        "keyword": null,
        "id": "2",
        "code": "10001",
        "name": "刘德华",
        "leaderCode": null,
        "leaderName": null,
        "headImg": null,
        "mobile": null,
        "email": "liuwenjun05102@163.com",
        "deptId": "27",
        "deptName": "领导班子",
        "companyId": "1",
        "companyName": "中国石化",
        "status": 1,
        "leaveDate": null,
        "thirdParty": null,
        "thirdUserId": null,
        "thirdUnionId": null,
        "ddUserid": null,
        "sex": 0,
        "address": null,
        "fax": null,
        "positionCode": null,
        "positionName": null,
        "jobGradeCode": null,
        "jobGradeName": null,
        "deptCode": null,
        "companyCode": null,
        "roles": null,
        "companyIds": null,
        "deptIds": null
      }
    ]
  },
  "success": true
}

获取普通角色列表

  • 接口名

getRolePagerModel

  • 请求URL

/flow/bpmnDesigner/prod/api

  • 请求方式

POST

  • 请求参数
名称类型描述
entityTcompanyId:公司id
queryQuery见公共分页对象
  • 返回字段
名称类型描述
successboolean成功状态:true/false
codeString状态码:100/101
msgString提示信息
dataPlusRole变量对象实体
  • 返回示例
{
  "code": "100",
  "msg": "OK",
  "data": {
    "total": 10,
    "rows": [
      {
        "createTime": "2021-11-03 14:07:53",
        "creator": null,
        "updateTime": "2021-11-03 14:07:54",
        "updator": "10100",
        "delFlag": 1,
        "keyword": null,
        "id": "4028d82e7ce46658017ce46938b80007",
        "companyId": null,
        "positionId": null,
        "name": "rrr",
        "type": 0,
        "sn": "rrrrr",
        "note": null,
        "orderNo": 0,
        "companyName": null,
        "personalId": null,
        "companies": null,
        "personals": null
      },
      {
        "createTime": "2021-07-27 10:56:08",
        "creator": "10100",
        "updateTime": "2021-07-27 10:56:09",
        "updator": "10100",
        "delFlag": 1,
        "keyword": null,
        "id": "9438f35c7c886fcede59329a2b2442c3",
        "companyId": "2",
        "positionId": null,
        "name": "主管",
        "type": 0,
        "sn": "portal_news_noticetest",
        "note": "aaaaaaaaa",
        "orderNo": 1,
        "companyName": null,
        "personalId": null,
        "companies": null,
        "personals": null
      }
    ]
  },
  "success": true
}

获取公司列表

  • 接口名

getCompanies

  • 请求URL

/flow/bpmnDesigner/prod/api

  • 请求方式

POST

  • 请求参数

  • 返回字段
名称类型描述
successboolean成功状态:true/false
codeString状态码:100/101
msgString提示信息
dataPlusCompany变量对象实体
  • 返回示例
{
 "code": "100",
 "msg": "OK",
 "data": [
   {
     "createTime": null,
     "creator": null,
     "updateTime": "2023-01-22 17:43:19",
     "updator": "10100",
     "delFlag": 1,
     "keyword": null,
     "id": "1",
     "typeId": "4",
     "pid": null,
     "cname": "中国石化",
     "shortName": "中国石化",
     "ename": null,
     "code": "1000",
     "descr": null,
     "orderNo": 1,
     "status": 1,
     "pcode": null,
     "userName": null,
     "roleSnList": null,
     "companyIds": null,
     "typeCode": null,
     "typeName": null
   },
   {
     "createTime": null,
     "creator": null,
     "updateTime": "2021-10-08 23:31:15",
     "updator": "10100",
     "delFlag": 1,
     "keyword": null,
     "id": "2",
     "typeId": "3",
     "pid": "1",
     "cname": "北京市石化",
     "shortName": "北京市石化",
     "ename": null,
     "code": "100001",
     "descr": null,
     "orderNo": 2,
     "status": 1,
     "pcode": null,
     "userName": null,
     "roleSnList": null,
     "companyIds": null,
     "typeCode": null,
     "typeName": null
   }
 ],
 "success": true
}

表单code获取表单的变量

  • 接口名

getFormVariablesByCode

  • 请求URL

/flow/bpmnDesigner/prod/api

  • 请求方式

GET

  • 请求参数

  • 返回字段
名称类型描述
successboolean成功状态:true/false
codeString状态码:100/101
msgString提示信息
dataPlusVariableVo变量对象实体
  • 返回示例
{
  "code": "100",
  "msg": "OK",
  "data": [
    {
      "name": "提交单位",
      "code": "launch_company_id",
      "prefix": "form",
      "function": null,
      "remark": null
    },
    {
      "name": "所在部门",
      "code": "launch_department_id",
      "prefix": "form",
      "function": null,
      "remark": null
    }
  ],
  "success": true
}

获取公司矩阵变量列表

  • 接口名

getMatrixCompanyVariables

  • 请求URL

/flow/bpmnDesigner/prod/api

  • 请求方式

POST

  • 请求参数

  • 返回字段
名称类型描述
successboolean成功状态:true/false
codeString状态码:100/101
msgString提示信息
dataPlusVariableVo变量对象实体
  • 返回示例
{
  "code": "100",
  "msg": "OK",
  "data": [
    {
      "name": "总监",
      "code": "zj",
      "prefix": "mcompany",
      "function": null,
      "remark": null
    },
    {
      "name": "分管领导",
      "code": "fgld",
      "prefix": "mcompany",
      "function": null,
      "remark": null
    }
  ],
  "success": true
}

获取部门矩阵变量列表

  • 接口名

getMatrixDeptVariables

  • 请求URL

/flow/bpmnDesigner/prod/api

  • 请求方式

GET

  • 请求参数

  • 返回字段
名称类型描述
successboolean成功状态:true/false
codeString状态码:100/101
msgString提示信息
dataPlusVariableVo变量对象实体
  • 返回示例
{
  "code": "100",
  "msg": "OK",
  "data": [
    {
      "name": "测试",
      "code": "cs",
      "prefix": "mdept",
      "function": null,
      "remark": null
    },
    {
      "name": "部门分管领导",
      "code": "bmfgld",
      "prefix": "mdept",
      "function": null,
      "remark": null
    }
  ],
  "success": true
}

获取公司变量列表

  • 接口名

getCompanyVariables

  • 请求URL

/flow/bpmnDesigner/prod/api

  • 请求方式

GET

  • 请求参数

  • 返回字段
名称类型描述
successboolean成功状态:true/false
codeString状态码:100/101
msgString提示信息
dataPlusVariableVo变量对象实体
  • 返回示例
{
  "code": "100",
  "msg": "OK",
  "data": [
    {
      "name": "公司编码",
      "code": "code",
      "prefix": "ucompany",
      "function": null,
      "remark": null
    },
    {
      "name": "公司ID",
      "code": "companyId",
      "prefix": "ucompany",
      "function": null,
      "remark": null
    }
  ],
  "success": true
}

获取部门变量列表

  • 接口名

getDeptVariables

  • 请求URL

/flow/bpmnDesigner/prod/api

  • 请求方式

POST

  • 请求参数

  • 返回字段
名称类型描述
successboolean成功状态:true/false
codeString状态码:100/101
msgString提示信息
dataPlusVariableVo变量对象实体
  • 返回示例
{
  "code": "100",
  "msg": "OK",
  "data": [
    {
      "name": "部门ID",
      "code": "deptId",
      "prefix": "udept",
      "function": null,
      "remark": null
    },
    {
      "name": "部门编码",
      "code": "code",
      "prefix": "udept",
      "function": null,
      "remark": null
    }
  ],
  "success": true
}

获取发起人变量列表

  • 接口名

getPersonalVariables

  • 请求URL

/flow/bpmnDesigner/prod/api

  • 请求方式

GET

  • 请求参数

  • 返回字段
名称类型描述
successboolean成功状态:true/false
codeString状态码:100/101
msgString提示信息
dataPlusVariableVo变量对象实体
  • 返回示例
{
  "code": "100",
  "msg": "OK",
  "data": [
    {
      "name": "工号",
      "code": "code",
      "prefix": "user",
      "function": null,
      "remark": null
    },
    {
      "name": "部门编码",
      "code": "deptCode",
      "prefix": "user",
      "function": null,
      "remark": null
    }
  ],
  "success": true
}

获取角色矩阵(公司和部门矩阵)

  • 接口名

/getMatrixRoles/{roleType} roleType 1:公司矩阵 2:部门矩阵

  • 请求URL

/flow/bpmnDesigner/prod/api

  • 请求方式

GET

  • 请求参数

  • 返回字段
名称类型描述
successboolean成功状态:true/false
codeString状态码:100/101
msgString提示信息
dataPlusCompany变量对象实体
  • 返回示例
{
  "code": "100",
  "msg": "OK",
  "data": [
    {
      "createTime": "2021-07-06 18:18:34",
      "creator": null,
      "updateTime": "2021-07-06 18:18:34",
      "updator": "10100",
      "delFlag": 1,
      "keyword": null,
      "id": "4028d8367a79ae02017a79b1fc8d0003",
      "companyId": null,
      "positionId": null,
      "name": "部门经理",
      "type": 2,
      "sn": "bmjl",
      "note": "BBBB",
      "orderNo": 1,
      "companyName": null,
      "personalId": null,
      "companies": null,
      "personals": null
    },
    {
      "createTime": "2021-07-06 18:20:32",
      "creator": null,
      "updateTime": "2021-07-06 18:20:33",
      "updator": "10100",
      "delFlag": 1,
      "keyword": null,
      "id": "4028d8367a7a6563017a7a6563790000",
      "companyId": null,
      "positionId": null,
      "name": "集团总经理",
      "type": 2,
      "sn": "jtzjl",
      "note": "3123",
      "orderNo": 12312,
      "companyName": null,
      "personalId": null,
      "companies": null,
      "personals": null
    }
  ],
  "success": true
}

获取监听器参数列表

  • 接口名

getListenersAndParams

  • 请求URL

/flow/bpmnDesigner/prod/api

  • 请求方式

POST

  • 请求参数
名称类型描述
flowListenerT流程监听器实体对象,详细字段见【请求实体参数】
  • 请求实体参数
名称类型描述
typeString类型 java 表达式 代理表达式
nameString名称
listenerTypeString监听器类型 任务监听还是执行监听
  • 返回字段
名称类型描述
successboolean成功状态:true/false
codeString状态码:100/101
msgString提示信息
dataPlusListener变量对象实体
  • 返回示例
{
  "code": "100",
  "msg": "OK",
  "data": [
    {
      "createTime": "2023-03-30 20:43:15",
      "creator": null,
      "updateTime": null,
      "updator": null,
      "delFlag": 1,
      "keyword": null,
      "id": "1417664296511062017",
      "type": "class",
      "name": "SSS",
      "listenerType": "taskListener",
      "value": "BBB",
      "remark": "CCC",
      "orderNo": null,
      "flowListenerParamList": [
        {
          "id": "1417687094298128386",
          "listenerId": "1417664296511062017",
          "name": "aaa",
          "type": "string",
          "value": "bbb"
        },
        {
          "id": "1417687167346126849",
          "listenerId": "1417664296511062017",
          "name": "rtergsdf",
          "type": "string",
          "value": "gsertwerwgwgwe"
        }
      ]
    },
    {
      "createTime": "2023-03-30 20:43:15",
      "creator": null,
      "updateTime": null,
      "updator": null,
      "delFlag": 1,
      "keyword": null,
      "id": "1417674151619706882",
      "type": "class",
      "name": "eEEEEEEEEEEEEEEE",
      "listenerType": "taskListener",
      "value": "BBBBBBBBBBBBBBBB",
      "remark": "DDDDDDDDDDDDD",
      "orderNo": null,
      "flowListenerParamList": [
        {
          "id": "1417687119040327681",
          "listenerId": "1417674151619706882",
          "name": "asdfadfa",
          "type": "string",
          "value": "sdfdfasdfasdfsa"
        },
        {
          "id": "1417687190016339969",
          "listenerId": "1417674151619706882",
          "name": "wertwertwe",
          "type": "string",
          "value": "twertwertwert"
        }
      ]
    }
  ],
  "success": true
}

保存表单的设置信息

  • 接口名

saveOne

  • 请求URL

/flow/form/show

  • 请求方式

POST

  • 请求参数
名称类型描述
formItemShowT表单项的显示,详细字段见【请求实体参数】
  • 请求实体参数
名称类型描述
formCodeString表单的code
labelNameStringlabel名称
makModelString设计器定义的model
operateTypeInteger操作类型 HIDE(0, "隐藏"), SHOW(1, "仅可见"), EDIT(2, "可编辑")
  • 返回字段
名称类型描述
successboolean成功状态:true/false
codeString状态码:100/101
msgString提示信息
data
  • 请求示例
{
  "createTime": null,
  "creator": null,
  "updateTime": null,
  "updator": null,
  "delFlag": 1,
  "keyword": null,
  "id": null,
  "formId": null,
  "formCode": "rs_00068",
  "labelName": "姓名",
  "controlType": "input",
  "makType": "",
  "makModel": "input_1gjy9oeq",
  "makKey": "name",
  "fieldType": null,
  "fieldName": null,
  "fieldLength": null,
  "fieldDecimalLength": null,
  "fieldIswf": 0,
  "fieldIsnull": 1,
  "filedIsAutoIncrement": null,
  "fieldDefaultValue": "",
  "operateType": 3
}

通过表单code获取表单项列表

  • 接口名

getFormItemByFormCode/{formType}/{formCode} formType:表单类型 formCode:表单编码

  • 请求URL

/flow/form/show

  • 请求方式

GET

  • 请求参数

  • 返回字段
名称类型描述
successboolean成功状态:true/false
codeString状态码:100/101
msgString提示信息
dataPlusFormItem变量对象实体
  • 返回示例
{
  "code": "100",
  "msg": "OK",
  "data": [
    {
      "createTime": null,
      "creator": null,
      "updateTime": null,
      "updator": null,
      "delFlag": 1,
      "keyword": null,
      "id": null,
      "formId": null,
      "formCode": "rs_00068",
      "labelName": "姓名",
      "controlType": "input",
      "makType": "",
      "makModel": "input_1gjy9oeq",
      "makKey": "name",
      "fieldType": null,
      "fieldName": null,
      "fieldLength": null,
      "fieldDecimalLength": null,
      "fieldIswf": 0,
      "fieldIsnull": 1,
      "filedIsAutoIncrement": null,
      "fieldDefaultValue": "",
      "operateType": null
    },
    {
      "createTime": null,
      "creator": null,
      "updateTime": null,
      "updator": null,
      "delFlag": 1,
      "keyword": null,
      "id": null,
      "formId": null,
      "formCode": "rs_00068",
      "labelName": "性别",
      "controlType": "select",
      "makType": null,
      "makModel": "select_quug54bq",
      "makKey": "sex",
      "fieldType": null,
      "fieldName": null,
      "fieldLength": null,
      "fieldDecimalLength": null,
      "fieldIswf": 0,
      "fieldIsnull": 1,
      "filedIsAutoIncrement": null,
      "fieldDefaultValue": "",
      "operateType": null
    }
  ],
  "success": true
}

通过节点id获取表单项显示列表

  • 接口名

getFormItemShowsByActivityId

  • 请求URL

/flow/form/show

  • 请求方式

POST

  • 请求参数

  • 返回字段
名称类型描述
successboolean成功状态:true/false
codeString状态码:100/101
msgString提示信息
dataPlusCompany变量对象实体
  • 返回示例
{
  "code": "100",
  "msg": "OK",
  "data": [
    {
      "createTime": null,
      "creator": null,
      "updateTime": null,
      "updator": null,
      "delFlag": 1,
      "keyword": null,
      "id": null,
      "formId": null,
      "formCode": "rs_00068",
      "labelName": "姓名",
      "controlType": "input",
      "makType": "",
      "makModel": "input_1gjy9oeq",
      "makKey": "1gjy9oeq",
      "fieldType": null,
      "fieldName": null,
      "fieldLength": null,
      "fieldDecimalLength": null,
      "fieldIswf": 0,
      "fieldIsnull": 1,
      "filedIsAutoIncrement": null,
      "fieldDefaultValue": "",
      "operateType": 1
    }, {
      "createTime": null,
      "creator": null,
      "updateTime": null,
      "updator": null,
      "delFlag": 1,
      "keyword": null,
      "id": null,
      "formId": null,
      "formCode": "rs_00068",
      "labelName": "性别",
      "controlType": "select",
      "makType": null,
      "makModel": "select_quug54bq",
      "makKey": "quug54bq",
      "fieldType": null,
      "fieldName": null,
      "fieldLength": null,
      "fieldDecimalLength": null,
      "fieldIswf": 0,
      "fieldIsnull": 1,
      "filedIsAutoIncrement": null,
      "fieldDefaultValue": "",
      "operateType": 0
    }
  ],
  "success": true
}

获取线表达式

  • 接口名

getSequenceFlowVariableVos

  • 请求URL

/flow/bpmnDesigner/prod/api

  • 请求方式

GET

  • 请求参数

  • 返回字段
名称类型描述
successboolean成功状态:true/false
codeString状态码:100/101
msgString提示信息
dataPlusVariableVo变量对象实体
  • 返回示例
{
  "code": "100",
  "msg": "OK",
  "data": [
    {
        "name":"提交人",
        "code":"code",
        "prefix":"user",
        "function":null,
        "remark":null
      },
      {
        "name":"直属领导",
        "code":"leaderCode",
        "prefix":"user",
        "function":null,
        "remark":null
      }
  ],
  "success": true
}

获取第三方平台类型

  • 接口名

getPlatformType

  • 请求URL

/flow/bpmnDesigner/prod/api

  • 请求方式

GET

  • 请求参数

  • 返回字段
名称类型描述
successboolean成功状态:true/false
codeString状态码:100/101
msgString提示信息
dataStringdingtalk or feishu
  • 返回示例
{
  "code": "100",
  "msg": "OK",
  "data": "dingtalk",
  "success": true
}

保存模型的xml文件

  • 接口名

saveBpmnModel

  • 请求URL

/flow/bpmnDesigner/prod/api

  • 请求方式

POST

  • 请求参数
名称类型描述
modelInfoVoTbpmn模型vo,详细字段见【请求实体参数】
  • 请求实体参数
名称类型描述
modelIdString模型id
modelKeyString模型key
modelNameString模型名称
modelXmlStringbpmn模型xml
categoryCodeString分类编码
  • 返回字段
名称类型描述
successboolean成功状态:true/false
codeString状态码:100/101
msgString提示信息
data
  • 返回示例
{
  "code": "100",
  "msg": "OK",
  "data": null,
  "success": true
}

分页查询模型列表

  • 接口名

getModelInfoPagerModel

  • 请求URL

/flow/bpmnDesigner/prod/api

  • 请求方式

POST

  • 请求参数
名称类型描述
entityT查询条件对象
queryQuery见公共分页对象
  • 返回字段
名称类型描述
successboolean成功状态:true/false
codeString状态码:100/101
msgString提示信息
dataModelInfoVo变量对象实体
  • 返回示例
{
  "code": "100",
  "msg": "OK",
  "data": [
    {
        "createTime":"2023-04-09 22:44:46",
        "creator":"10100",
        "updateTime":"2023-04-09 22:47:01",
        "updator":"admin",
        "delFlag":1,
        "keyword":null,
        "id":"8c7aefbf087f4d680fc36b871d77c967",
        "modelId":"1252465dd6e511eda69100ff2cb2ed0e",
        "name":"老王的钉钉测试",
        "modelKey":"dd",
        "modelType":0,
        "formType":1,
        "appSn":"businessFlow",
        "appName":"业务流程",
        "categoryCode":"zshjt",
        "categoryName":"中石化集团",
        "status":3,
        "statusName":"已发布",
        "extendStatus":3,
        "extendStatusName":null,
        "ownDeptId":"29",
        "ownDeptName":"技术部",
        "flowOwnerNo":"18888",
        "flowOwnerName":"老王",
        "processDockingNo":"18888",
        "processDockingName":"老王",
        "applyCompanies":null,
        "showStatus":1,
        "appliedRange":3,
        "appliedRangeName":null,
        "authPointList":"[\"before_addsign\", \"hold\", \"coordination\", \"turn_do\", \"approve\", \"turn_read\", \"reject\", \"claim\", \"revoke\"]",
        "superuser":"[]",
        "businessUrl":null,
        "skipSet":1,
        "modelIcon":null,
        "orderNo":100,
        "categoryCodes":null,
        "processDefinitionId":null,
        "modelXml":null,
        "version":null,
        "companyId":null
      },
      {
        "createTime":"2023-03-24 22:58:27",
        "creator":"10100",
        "updateTime":"2023-04-09 22:38:53",
        "updator":"admin",
        "delFlag":1,
        "keyword":null,
        "id":"bab48a9f6be8301189e79d8e5acd23d6",
        "modelId":"54f50299ca5411ed9bcc00ff2cb2ed0e",
        "name":"王敏测试流程模板",
        "modelKey":"wm_model",
        "modelType":0,
        "formType":1,
        "appSn":"businessFlow",
        "appName":"业务流程",
        "categoryCode":"ht",
        "categoryName":"合同管理",
        "status":3,
        "statusName":"已发布",
        "extendStatus":3,
        "extendStatusName":null,
        "ownDeptId":"28",
        "ownDeptName":"人资部",
        "flowOwnerNo":"18888",
        "flowOwnerName":"老王",
        "processDockingNo":"18888",
        "processDockingName":"老王",
        "applyCompanies":null,
        "showStatus":1,
        "appliedRange":2,
        "appliedRangeName":null,
        "authPointList":"[\"approve\", \"hold\", \"turn_do\", \"coordination\", \"review\", \"after_addsign\", \"before_addsign\", \"reject\", \"revoke\", \"turn_read\", \"delegate\", \"claim\", \"unclaim\"]",
        "superuser":"[]",
        "businessUrl":null,
        "skipSet":1,
        "modelIcon":null,
        "orderNo":100,
        "categoryCodes":null,
        "processDefinitionId":null,
        "modelXml":null,
        "version":null,
        "companyId":null
      }
  ],
  "success": true
}

通过code获取表单信息

  • 接口名

getCustomFormVoByCode

  • 请求URL

/flow/bpmnDesigner/prod/api

  • 请求方式

GET

  • 请求参数

  • 返回字段
名称类型描述
successboolean成功状态:true/false
codeString状态码:100/101
msgString提示信息
dataPlusFormInfo变量对象实体
  • 返回示例
{
  "code": "100",
  "msg": "OK",
  "data": [
    {
        "createTime": "2024-02-20 15:34:48",
        "creator": "10100",
        "updateTime": "2024-02-20 15:34:48",
        "updator": "10100",
        "delFlag": 1,
        "keyword": null,
        "id": "0c6c5c49add4f83c3be9d46324fe8eae",
        "categoryCode": "ty",
        "title": "测试流程",
        "code": "ty_00035",
        "name": "测试流程",
        "content": "<!DOCTYPE html>\n<html class=\"\">\n<head>\n  <meta charset=\"UTF-8\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no\" />\n  <link rel=\"stylesheet\" href=\"https://unpkg.com/element-plus/dist/index.css\">\n  <link rel=\"stylesheet\" href=\"https://form.making.link/public/lib/form-making-v3/dist/index.css\">\n</head>\n<body>\n  <div id=\"app\">\n    <fm-generate-form\n      :data=\"jsonData\" \n      :remote=\"remoteFuncs\"\n      :remote-option=\"dynamicData\"\n      ref=\"generateForm\"\n    >\n    </fm-generate-form>\n  </div>\n  <script src=\"https://unpkg.com/vue@next/dist/vue.global.prod.js\"></script>\n  <script src=\"https://unpkg.com/element-plus\"></script>\n  <script src=\"https://form.making.link/public/lib/form-making-v3/dist/form-making-v3.umd.js\"></script>\n  <script>\n    Vue.createApp({\n      data () {\n        return {\n          jsonData: {\"list\":[{\"key\":\"k6czcupe\",\"icon\":\"icon-tabs\",\"name\":\"标签页\",\"tabs\":[{\"list\":[{\"key\":\"hgbvir19\",\"icon\":\"icon-zhediemianban\",\"name\":\"折叠面板\",\"tabs\":[{\"list\":[{\"key\":\"02b0je0s\",\"icon\":\"icon-input\",\"name\":\"单行文本\",\"type\":\"input\",\"model\":\"input_02b0je0s\",\"rules\":[],\"events\":{\"onBlur\":\"\",\"onFocus\":\"\",\"onChange\":\"\"},\"options\":{\"tip\":\"\",\"width\":\"\",\"hidden\":false,\"pattern\":\"\",\"subform\":false,\"dataBind\":true,\"dataType\":\"\",\"disabled\":false,\"required\":false,\"clearable\":false,\"maxlength\":\"\",\"validator\":\"\",\"labelWidth\":100,\"remoteFunc\":\"func_02b0je0s\",\"customClass\":\"\",\"customProps\":{},\"placeholder\":\"\",\"tableColumn\":false,\"defaultValue\":\"\",\"isLabelWidth\":false,\"patternCheck\":false,\"remoteOption\":\"option_02b0je0s\",\"showPassword\":false,\"dataTypeCheck\":false,\"showWordLimit\":false,\"patternMessage\":\"\",\"validatorCheck\":false,\"dataTypeMessage\":\"\",\"requiredMessage\":\"\"}},{\"key\":\"ubcyup1i\",\"icon\":\"icon-input\",\"name\":\"单行文本\",\"type\":\"input\",\"model\":\"input_ubcyup1i\",\"rules\":[],\"events\":{\"onBlur\":\"\",\"onFocus\":\"\",\"onChange\":\"\"},\"options\":{\"tip\":\"\",\"width\":\"\",\"hidden\":false,\"pattern\":\"\",\"subform\":false,\"dataBind\":true,\"dataType\":\"\",\"disabled\":false,\"required\":false,\"clearable\":false,\"maxlength\":\"\",\"validator\":\"\",\"labelWidth\":100,\"remoteFunc\":\"func_ubcyup1i\",\"customClass\":\"\",\"customProps\":{},\"placeholder\":\"\",\"tableColumn\":false,\"defaultValue\":\"\",\"isLabelWidth\":false,\"patternCheck\":false,\"remoteOption\":\"option_ubcyup1i\",\"showPassword\":false,\"dataTypeCheck\":false,\"showWordLimit\":false,\"patternMessage\":\"\",\"validatorCheck\":false,\"dataTypeMessage\":\"\",\"requiredMessage\":\"\"}}],\"name\":\"collapse_1\",\"title\":\"Collapse 1\"}],\"type\":\"collapse\",\"model\":\"collapse_hgbvir19\",\"rules\":[],\"options\":{\"type\":\"\",\"hidden\":false,\"subform\":false,\"accordion\":false,\"remoteFunc\":\"func_hgbvir19\",\"customClass\":\"\",\"tableColumn\":false,\"remoteOption\":\"option_hgbvir19\"}}],\"name\":\"tab_1\",\"label\":\"Tab 1\"}],\"type\":\"tabs\",\"model\":\"tabs_k6czcupe\",\"rules\":[],\"options\":{\"type\":\"\",\"hidden\":false,\"subform\":false,\"remoteFunc\":\"func_k6czcupe\",\"customClass\":\"\",\"tabPosition\":\"top\",\"tableColumn\":false,\"remoteOption\":\"option_k6czcupe\"}},{\"key\":\"zh3s63gk\",\"icon\":\"icon-jinggaotishi\",\"name\":\"提示\",\"type\":\"alert\",\"model\":\"alert_zh3s63gk\",\"rules\":[],\"options\":{\"type\":\"info\",\"title\":\"Info alert\",\"width\":\"\",\"center\":false,\"effect\":\"light\",\"hidden\":false,\"subform\":false,\"closable\":true,\"showIcon\":false,\"remoteFunc\":\"func_zh3s63gk\",\"customProps\":{},\"description\":\"\",\"tableColumn\":false,\"remoteOption\":\"option_zh3s63gk\"}}],\"config\":{\"ui\":\"element\",\"size\":\"default\",\"width\":\"100%\",\"layout\":\"horizontal\",\"hideLabel\":false,\"labelWidth\":100,\"customClass\":\"\",\"eventScript\":[{\"key\":\"mounted\",\"name\":\"mounted\",\"func\":\"\"},{\"key\":\"refresh\",\"name\":\"refresh\",\"func\":\"\"}],\"labelPosition\":\"left\",\"hideErrorMessage\":false}},\n          remoteFuncs: {\n            \n          },\n          dynamicData: {\n            \n          }\n        }\n      }\n    }).use(ElementPlus).use(FormMakingV3).mount('#app')\n  </script>\n</body>\n</html>",
        "version": "1.0",
        "formJson": "{\"list\": [{\"key\": \"k6czcupe\", \"icon\": \"icon-tabs\", \"name\": \"标签页\", \"tabs\": [{\"list\": [{\"key\": \"hgbvir19\", \"icon\": \"icon-zhediemianban\", \"name\": \"折叠面板\", \"tabs\": [{\"list\": [{\"key\": \"02b0je0s\", \"icon\": \"icon-input\", \"name\": \"单行文本\", \"type\": \"input\", \"model\": \"input_02b0je0s\", \"rules\": [], \"events\": {\"onBlur\": \"\", \"onFocus\": \"\", \"onChange\": \"\"}, \"options\": {\"tip\": \"\", \"width\": \"\", \"hidden\": false, \"pattern\": \"\", \"subform\": false, \"dataBind\": true, \"dataType\": \"\", \"disabled\": false, \"required\": false, \"clearable\": false, \"maxlength\": \"\", \"validator\": \"\", \"labelWidth\": 100, \"remoteFunc\": \"func_02b0je0s\", \"customClass\": \"\", \"customProps\": {}, \"placeholder\": \"\", \"tableColumn\": false, \"defaultValue\": \"\", \"isLabelWidth\": false, \"patternCheck\": false, \"remoteOption\": \"option_02b0je0s\", \"showPassword\": false, \"dataTypeCheck\": false, \"showWordLimit\": false, \"patternMessage\": \"\", \"validatorCheck\": false, \"dataTypeMessage\": \"\", \"requiredMessage\": \"\"}}, {\"key\": \"ubcyup1i\", \"icon\": \"icon-input\", \"name\": \"单行文本\", \"type\": \"input\", \"model\": \"input_ubcyup1i\", \"rules\": [], \"events\": {\"onBlur\": \"\", \"onFocus\": \"\", \"onChange\": \"\"}, \"options\": {\"tip\": \"\", \"width\": \"\", \"hidden\": false, \"pattern\": \"\", \"subform\": false, \"dataBind\": true, \"dataType\": \"\", \"disabled\": false, \"required\": false, \"clearable\": false, \"maxlength\": \"\", \"validator\": \"\", \"labelWidth\": 100, \"remoteFunc\": \"func_ubcyup1i\", \"customClass\": \"\", \"customProps\": {}, \"placeholder\": \"\", \"tableColumn\": false, \"defaultValue\": \"\", \"isLabelWidth\": false, \"patternCheck\": false, \"remoteOption\": \"option_ubcyup1i\", \"showPassword\": false, \"dataTypeCheck\": false, \"showWordLimit\": false, \"patternMessage\": \"\", \"validatorCheck\": false, \"dataTypeMessage\": \"\", \"requiredMessage\": \"\"}}], \"name\": \"collapse_1\", \"title\": \"Collapse 1\"}], \"type\": \"collapse\", \"model\": \"collapse_hgbvir19\", \"rules\": [], \"options\": {\"type\": \"\", \"hidden\": false, \"subform\": false, \"accordion\": false, \"remoteFunc\": \"func_hgbvir19\", \"customClass\": \"\", \"tableColumn\": false, \"remoteOption\": \"option_hgbvir19\"}}], \"name\": \"tab_1\", \"label\": \"Tab 1\"}], \"type\": \"tabs\", \"model\": \"tabs_k6czcupe\", \"rules\": [], \"options\": {\"type\": \"\", \"hidden\": false, \"subform\": false, \"remoteFunc\": \"func_k6czcupe\", \"customClass\": \"\", \"tabPosition\": \"top\", \"tableColumn\": false, \"remoteOption\": \"option_k6czcupe\"}}, {\"key\": \"zh3s63gk\", \"icon\": \"icon-jinggaotishi\", \"name\": \"提示\", \"type\": \"alert\", \"model\": \"alert_zh3s63gk\", \"rules\": [], \"options\": {\"type\": \"info\", \"title\": \"Info alert\", \"width\": \"\", \"center\": false, \"effect\": \"light\", \"hidden\": false, \"subform\": false, \"closable\": true, \"showIcon\": false, \"remoteFunc\": \"func_zh3s63gk\", \"customProps\": {}, \"description\": \"\", \"tableColumn\": false, \"remoteOption\": \"option_zh3s63gk\"}}], \"config\": {\"ui\": \"element\", \"size\": \"default\", \"width\": \"100%\", \"layout\": \"horizontal\", \"hideLabel\": false, \"labelWidth\": 100, \"customClass\": \"\", \"eventScript\": [{\"key\": \"mounted\", \"func\": \"\", \"name\": \"mounted\"}, {\"key\": \"refresh\", \"func\": \"\", \"name\": \"refresh\"}], \"labelPosition\": \"left\", \"hideErrorMessage\": false}}",
        "flowLevelFlag": 0,
        "formStatus": 2,
        "tableName": "tbl_cus_ty_00035",
        "statusName": null,
        "keyWord": null,
        "nameLike": null,
        "codeLike": null,
        "categoryCodes": null,
        "sortNumber": null,
        "appliedRangeName": null
      }
  ],
  "success": true
}

分页获取表单列表

  • 接口名

getCustomFormPagerModel

  • 请求URL

/flow/bpmnDesigner/prod/api

  • 请求方式

POST

  • 请求参数

  • 返回字段
名称类型描述
successboolean成功状态:true/false
codeString状态码:100/101
msgString提示信息
dataPlusFormInfo变量对象实体
  • 返回示例
{
  "code": "100",
  "msg": "OK",
  "data": [
    {
        "createTime": "2024-02-20 15:34:48",
        "creator": "10100",
        "updateTime": "2024-02-20 15:34:48",
        "updator": "10100",
        "delFlag": 1,
        "keyword": null,
        "id": "0c6c5c49add4f83c3be9d46324fe8eae",
        "categoryCode": "ty",
        "title": "测试流程",
        "code": "ty_00035",
        "name": "测试流程",
        "content": "<!DOCTYPE html>\n<html class=\"\">\n<head>\n  ...</html>",
        "version": "1.0",
        "formJson": "{\"list\": [{\"key\": \"k6czcupe\", \"icon\": \"icon-tabs\", \"name\": \"标签页\", \"tabs\": [{\"list\": [{\"key\": \"hgbvir19\", \"icon\": \"icon-zhediemianban\", \"name\": \"折叠面板\", \"tabs\": [{\"list\": [{\"key\": \"02b0je0s\", \"icon\": \"icon-input\", \"name\": \"单行文本\", \"type\": \"input\", \"model\": \"input_02b0je0s\", \"rules\": [], \"events\": {\"onBlur\": \"\", \"onFocus\": \"\", \"onChange\": \"\"}, \"options\": {\"tip\": \"\", \"width\": \"\", \"hidden\": false, \"pattern\": \"\", \"subform\": false, \"dataBind\": true, \"dataType\": \"\", \"disabled\": false, \"required\": false, \"clearable\": false, \"maxlength\": \"\", \"validator\": \"\", \"labelWidth\": 100, \"remoteFunc\": \"func_02b0je0s\", \"customClass\": \"\", \"customProps\": {}, \"placeholder\": \"\", \"tableColumn\": false, \"defaultValue\": \"\", \"isLabelWidth\": false, \"patternCheck\": false, \"remoteOption\": \"option_02b0je0s\", \"showPassword\": false, \"dataTypeCheck\": false, \"showWordLimit\": false, \"patternMessage\": \"\", \"validatorCheck\": false, \"dataTypeMessage\": \"\", \"requiredMessage\": \"\"}}, {\"key\": \"ubcyup1i\", \"icon\": \"icon-input\", \"name\": \"单行文本\", \"type\": \"input\", \"model\": \"input_ubcyup1i\", \"rules\": [], \"events\": {\"onBlur\": \"\", \"onFocus\": \"\", \"onChange\": \"\"}, \"options\": {\"tip\": \"\", \"width\": \"\", \"hidden\": false, \"pattern\": \"\", \"subform\": false, \"dataBind\": true, \"dataType\": \"\", \"disabled\": false, \"required\": false, \"clearable\": false, \"maxlength\": \"\", \"validator\": \"\", \"labelWidth\": 100, \"remoteFunc\": \"func_ubcyup1i\", \"customClass\": \"\", \"customProps\": {}, \"placeholder\": \"\", \"tableColumn\": false, \"defaultValue\": \"\", \"isLabelWidth\": false, \"patternCheck\": false, \"remoteOption\": \"option_ubcyup1i\", \"showPassword\": false, \"dataTypeCheck\": false, \"showWordLimit\": false, \"patternMessage\": \"\", \"validatorCheck\": false, \"dataTypeMessage\": \"\", \"requiredMessage\": \"\"}}], \"name\": \"collapse_1\", \"title\": \"Collapse 1\"}], \"type\": \"collapse\", \"model\": \"collapse_hgbvir19\", \"rules\": [], \"options\": {\"type\": \"\", \"hidden\": false, \"subform\": false, \"accordion\": false, \"remoteFunc\": \"func_hgbvir19\", \"customClass\": \"\", \"tableColumn\": false, \"remoteOption\": \"option_hgbvir19\"}}], \"name\": \"tab_1\", \"label\": \"Tab 1\"}], \"type\": \"tabs\", \"model\": \"tabs_k6czcupe\", \"rules\": [], \"options\": {\"type\": \"\", \"hidden\": false, \"subform\": false, \"remoteFunc\": \"func_k6czcupe\", \"customClass\": \"\", \"tabPosition\": \"top\", \"tableColumn\": false, \"remoteOption\": \"option_k6czcupe\"}}, {\"key\": \"zh3s63gk\", \"icon\": \"icon-jinggaotishi\", \"name\": \"提示\", \"type\": \"alert\", \"model\": \"alert_zh3s63gk\", \"rules\": [], \"options\": {\"type\": \"info\", \"title\": \"Info alert\", \"width\": \"\", \"center\": false, \"effect\": \"light\", \"hidden\": false, \"subform\": false, \"closable\": true, \"showIcon\": false, \"remoteFunc\": \"func_zh3s63gk\", \"customProps\": {}, \"description\": \"\", \"tableColumn\": false, \"remoteOption\": \"option_zh3s63gk\"}}], \"config\": {\"ui\": \"element\", \"size\": \"default\", \"width\": \"100%\", \"layout\": \"horizontal\", \"hideLabel\": false, \"labelWidth\": 100, \"customClass\": \"\", \"eventScript\": [{\"key\": \"mounted\", \"func\": \"\", \"name\": \"mounted\"}, {\"key\": \"refresh\", \"func\": \"\", \"name\": \"refresh\"}], \"labelPosition\": \"left\", \"hideErrorMessage\": false}}",
        "flowLevelFlag": 0,
        "formStatus": 2,
        "tableName": "tbl_cus_ty_00035",
        "statusName": null,
        "keyWord": null,
        "nameLike": null,
        "codeLike": null,
        "categoryCodes": null,
        "sortNumber": null,
        "appliedRangeName": null
      },
      {
        "createTime": "2023-12-09 17:33:57",
        "creator": "10100",
        "updateTime": "2024-01-14 23:27:24",
        "updator": "admin",
        "delFlag": 1,
        "keyword": null,
        "id": "11b86dfa49d2fd1bc6425a70b2278cda",
        "categoryCode": "ty",
        "title": "上传文件",
        "code": "ty_00017",
        "name": "上传文件",
        "content": "<!DOCTYPE html>\n<html class=\"\">\n<head>\n  ...</html>",
        "version": "1.0",
        "formJson": "{\"list\": [{\"key\": \"lxj2veni\", \"icon\": \"icon-html\", \"name\": \"HTML\", \"type\": \"html\", \"model\": \"html_lxj2veni\", \"rules\": [], \"events\": {\"onChange\": \"\"}, \"options\": {\"hidden\": false, \"dataBind\": false, \"hideLabel\": true, \"labelWidth\": 100, \"remoteFunc\": \"func_lxj2veni\", \"tableColumn\": false, \"defaultValue\": \"<div style=\\\"text-align: center;font-size: 20px;font-weight: bold;\\\">\\n  人员履历表\\n</div>\", \"isLabelWidth\": false, \"remoteOption\": \"option_lxj2veni\"}}, {\"key\": \"cmkd5l54\", \"icon\": \"icon-table1\", \"name\": \"Table\", \"rows\": [{\"columns\": [{\"key\": \"zpv0ribc\", \"list\": [{\"key\": \"clxgkhdl\", \"icon\": \"icon-wenzishezhi-\", \"name\": \"Text\", \"type\": \"text\", \"model\": \"text_clxgkhdl\", \"rules\": [], \"events\": {\"onChange\": \"\"}, \"options\": {\"hidden\": false, \"dataBind\": false, \"hideLabel\": true, \"labelWidth\": 100, \"remoteFunc\": \"func_clxgkhdl\", \"customClass\": \"\", \"tableColumn\": false, \"defaultValue\": \"姓名\", \"isLabelWidth\": false, \"remoteOption\": \"option_clxgkhdl\"}}], \"type\": \"td\", \"rules\": [], \"options\": {\"align\": \"left\", \"width\": \"110px\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"rowspan\": 1, \"customClass\": \"\"}}, {\"key\": \"lyik11u4\", \"list\": [{\"key\": \"1gjy9oeq\", \"icon\": \"icon-input\", \"name\": \"Input\", \"type\": \"input\", \"model\": \"input_1gjy9oeq\", \"rules\": [], \"events\": {\"onBlur\": \"\", \"onFocus\": \"\", \"onChange\": \"\"}, \"options\": {\"width\": \"\", \"hidden\": false, \"pattern\": \"\", \"dataBind\": true, \"dataType\": \"\", \"disabled\": false, \"required\": false, \"hideLabel\": true, \"validator\": \"\", \"labelWidth\": 100, \"remoteFunc\": \"func_1gjy9oeq\", \"customClass\": \"\", \"placeholder\": \"\", \"tableColumn\": false, \"defaultValue\": \"\", \"isLabelWidth\": false, \"patternCheck\": false, \"remoteOption\": \"option_1gjy9oeq\", \"showPassword\": false, \"dataTypeCheck\": false, \"patternMessage\": \"\", \"validatorCheck\": false, \"dataTypeMessage\": \"\", \"requiredMessage\": \"\"}}], \"type\": \"td\", \"rules\": [], \"options\": {\"align\": \"left\", \"width\": \"110px\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"rowspan\": 1, \"customClass\": \"\"}}, {\"key\": \"swh49h9t\", \"list\": [{\"key\": \"t50qb9ic\", \"icon\": \"icon-wenzishezhi-\", \"name\": \"Text\", \"type\": \"text\", \"model\": \"text_t50qb9ic\", \"rules\": [], \"events\": {\"onChange\": \"\"}, \"options\": {\"hidden\": false, \"dataBind\": false, \"hideLabel\": true, \"labelWidth\": 100, \"remoteFunc\": \"func_t50qb9ic\", \"customClass\": \"\", \"tableColumn\": false, \"defaultValue\": \"性别\", \"isLabelWidth\": false, \"remoteOption\": \"option_t50qb9ic\"}}], \"type\": \"td\", \"rules\": [], \"options\": {\"align\": \"left\", \"width\": \"80px\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"rowspan\": 1, \"customClass\": \"\"}}, {\"key\": \"7ai8eikb\", \"list\": [{\"key\": \"iqcxupcf\", \"icon\": \"icon-input\", \"name\": \"Input\", \"type\": \"input\", \"model\": \"input_iqcxupcf\", \"rules\": [], \"events\": {\"onBlur\": \"\", \"onFocus\": \"\", \"onChange\": \"\"}, \"options\": {\"width\": \"\", \"hidden\": false, \"pattern\": \"\", \"dataBind\": true, \"dataType\": \"\", \"disabled\": false, \"required\": false, \"hideLabel\": true, \"validator\": \"\", \"labelWidth\": 100, \"remoteFunc\": \"func_iqcxupcf\", \"customClass\": \"\", \"placeholder\": \"\", \"tableColumn\": false, \"defaultValue\": \"\", \"isLabelWidth\": false, \"patternCheck\": false, \"remoteOption\": \"option_iqcxupcf\", \"showPassword\": false, \"dataTypeCheck\": false, \"patternMessage\": \"\", \"validatorCheck\": false, \"dataTypeMessage\": \"\", \"requiredMessage\": \"\"}}], \"type\": \"td\", \"rules\": [], \"options\": {\"align\": \"left\", \"width\": \"110px\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"rowspan\": 1, \"customClass\": \"\"}}, {\"key\": \"geokzd58\", \"list\": [{\"key\": \"ui8x9dpc\", \"icon\": \"icon-wenzishezhi-\", \"name\": \"Text\", \"type\": \"text\", \"model\": \"text_ui8x9dpc\", \"rules\": [], \"events\": {\"onChange\": \"\"}, \"options\": {\"hidden\": false, \"dataBind\": false, \"hideLabel\": true, \"labelWidth\": 100, \"remoteFunc\": \"func_ui8x9dpc\", \"customClass\": \"\", \"tableColumn\": false, \"defaultValue\": \"出生年月\", \"isLabelWidth\": false, \"remoteOption\": \"option_ui8x9dpc\"}}], \"type\": \"td\", \"rules\": [], \"options\": {\"align\": \"left\", \"width\": \"80px\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"rowspan\": 1, \"customClass\": \"\"}}, {\"key\": \"o7pb2bvo\", \"list\": [{\"key\": \"1eqlirta\", \"icon\": \"icon-date\", \"name\": \"Date\", \"type\": \"date\", \"model\": \"date_1eqlirta\", \"rules\": [], \"events\": {\"onBlur\": \"\", \"onFocus\": \"\", \"onChange\": \"\"}, \"options\": {\"type\": \"date\", \"width\": \"100%\", \"format\": \"YYYY-MM-DD\", \"hidden\": false, \"dataBind\": true, \"disabled\": false, \"editable\": true, \"readonly\": false, \"required\": false, \"clearable\": true, \"hideLabel\": true, \"timestamp\": false, \"validator\": \"\", \"labelWidth\": 100, \"remoteFunc\": \"func_1eqlirta\", \"customClass\": \"\", \"placeholder\": \"\", \"tableColumn\": false, \"defaultValue\": \"\", \"isLabelWidth\": false, \"remoteOption\": \"option_1eqlirta\", \"endPlaceholder\": \"\", \"validatorCheck\": false, \"requiredMessage\": \"\", \"startPlaceholder\": \"\"}}], \"type\": \"td\", \"rules\": [], \"options\": {\"align\": \"left\", \"width\": \"110px\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"rowspan\": 1, \"customClass\": \"\"}}, {\"key\": \"bjjig35t\", \"list\": [{\"key\": \"qtbrnlxh\", \"icon\": \"icon-wenzishezhi-\", \"name\": \"Text\", \"type\": \"text\", \"model\": \"text_qtbrnlxh\", \"rules\": [], \"events\": {\"onChange\": \"\"}, \"options\": {\"hidden\": false, \"dataBind\": false, \"hideLabel\": true, \"labelWidth\": 100, \"remoteFunc\": \"func_qtbrnlxh\", \"customClass\": \"\", \"tableColumn\": false, \"defaultValue\": \"民族\", \"isLabelWidth\": false, \"remoteOption\": \"option_qtbrnlxh\"}}], \"type\": \"td\", \"rules\": [], \"options\": {\"align\": \"left\", \"width\": \"80px\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"rowspan\": 1, \"customClass\": \"\"}}, {\"key\": \"0fq6gzqr\", \"list\": [{\"key\": \"kyejndku\", \"icon\": \"icon-input\", \"name\": \"Input\", \"type\": \"input\", \"model\": \"input_kyejndku\", \"rules\": [], \"events\": {\"onBlur\": \"\", \"onFocus\": \"\", \"onChange\": \"\"}, \"options\": {\"width\": \"\", \"hidden\": false, \"pattern\": \"\", \"dataBind\": true, \"dataType\": \"\", \"disabled\": false, \"required\": false, \"hideLabel\": true, \"validator\": \"\", \"labelWidth\": 100, \"remoteFunc\": \"func_kyejndku\", \"customClass\": \"\", \"placeholder\": \"\", \"tableColumn\": false, \"defaultValue\": \"\", \"isLabelWidth\": false, \"patternCheck\": false, \"remoteOption\": \"option_kyejndku\", \"showPassword\": false, \"dataTypeCheck\": false, \"patternMessage\": \"\", \"validatorCheck\": false, \"dataTypeMessage\": \"\", \"requiredMessage\": \"\"}}], \"type\": \"td\", \"rules\": [], \"options\": {\"align\": \"left\", \"width\": \"110px\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"rowspan\": 1, \"customClass\": \"\"}}, {\"key\": \"28ovby75\", \"list\": [{\"key\": \"949ekym6\", \"icon\": \"icon-tupian\", \"name\": \"Image\", \"type\": \"imgupload\", \"model\": \"imgupload_949ekym6\", \"rules\": [], \"events\": {\"onChange\": \"\", \"onRemove\": \"\", \"onSelect\": \"\", \"onUploadError\": \"\", \"onUploadSuccess\": \"\"}, \"options\": {\"min\": 0, \"size\": {\"width\": 100, \"height\": 100}, \"limit\": 8, \"token\": \"\", \"width\": \"\", \"action\": \"https://tools-server.making.link/api/transfer\", \"domain\": \"https://tcdn.form.making.link/\", \"hidden\": false, \"isEdit\": true, \"headers\": [], \"isQiniu\": false, \"dataBind\": true, \"disabled\": false, \"isDelete\": true, \"multiple\": false, \"readonly\": false, \"required\": false, \"hideLabel\": true, \"tokenFunc\": \"funcGetToken\", \"tokenType\": \"datasource\", \"validator\": \"\", \"labelWidth\": 100, \"remoteFunc\": \"func_949ekym6\", \"customClass\": \"\", \"tableColumn\": false, \"defaultValue\": [], \"isLabelWidth\": false, \"remoteOption\": \"option_949ekym6\", \"validatorCheck\": false, \"withCredentials\": false}}], \"type\": \"td\", \"rules\": [], \"options\": {\"align\": \"left\", \"width\": \"110px\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"markCol\": 0, \"markRow\": 0, \"rowspan\": 3, \"customClass\": \"\"}}]}, {\"columns\": [{\"key\": \"1rspi959\", \"list\": [{\"key\": \"gwtlna7r\", \"icon\": \"icon-wenzishezhi-\", \"name\": \"Text\", \"type\": \"text\", \"model\": \"text_gwtlna7r\", \"rules\": [], \"events\": {\"onChange\": \"\"}, \"options\": {\"hidden\": false, \"dataBind\": false, \"hideLabel\": true, \"labelWidth\": 100, \"remoteFunc\": \"func_gwtlna7r\", \"customClass\": \"\", \"tableColumn\": false, \"defaultValue\": \"政治面貌\", \"isLabelWidth\": false, \"remoteOption\": \"option_gwtlna7r\"}}], \"type\": \"td\", \"rules\": [], \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"rowspan\": 1, \"customClass\": \"\"}}, {\"key\": \"13obiqkb\", \"list\": [{\"key\": \"26sro4xb\", \"icon\": \"icon-input\", \"name\": \"Input\", \"type\": \"input\", \"model\": \"input_26sro4xb\", \"rules\": [], \"events\": {\"onBlur\": \"\", \"onFocus\": \"\", \"onChange\": \"\"}, \"options\": {\"width\": \"\", \"hidden\": false, \"pattern\": \"\", \"dataBind\": true, \"dataType\": \"\", \"disabled\": false, \"required\": false, \"hideLabel\": true, \"validator\": \"\", \"labelWidth\": 100, \"remoteFunc\": \"func_26sro4xb\", \"customClass\": \"\", \"placeholder\": \"\", \"tableColumn\": false, \"defaultValue\": \"\", \"isLabelWidth\": false, \"patternCheck\": false, \"remoteOption\": \"option_26sro4xb\", \"showPassword\": false, \"dataTypeCheck\": false, \"patternMessage\": \"\", \"validatorCheck\": false, \"dataTypeMessage\": \"\", \"requiredMessage\": \"\"}}], \"type\": \"td\", \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"rowspan\": 1, \"customClass\": \"\"}}, {\"key\": \"rlj90rwl\", \"list\": [{\"key\": \"9jxtu9oj\", \"icon\": \"icon-wenzishezhi-\", \"name\": \"Text\", \"type\": \"text\", \"model\": \"text_9jxtu9oj\", \"rules\": [], \"events\": {\"onChange\": \"\"}, \"options\": {\"hidden\": false, \"dataBind\": false, \"hideLabel\": true, \"labelWidth\": 100, \"remoteFunc\": \"func_9jxtu9oj\", \"customClass\": \"\", \"tableColumn\": false, \"defaultValue\": \"职称\", \"isLabelWidth\": false, \"remoteOption\": \"option_9jxtu9oj\"}}], \"type\": \"td\", \"rules\": [], \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"rowspan\": 1, \"customClass\": \"\"}}, {\"key\": \"go4qigfr\", \"list\": [{\"key\": \"dswg77st\", \"icon\": \"icon-input\", \"name\": \"Input\", \"type\": \"input\", \"model\": \"input_dswg77st\", \"rules\": [], \"events\": {\"onBlur\": \"\", \"onFocus\": \"\", \"onChange\": \"\"}, \"options\": {\"width\": \"\", \"hidden\": false, \"pattern\": \"\", \"dataBind\": true, \"dataType\": \"\", \"disabled\": false, \"required\": false, \"hideLabel\": true, \"validator\": \"\", \"labelWidth\": 100, \"remoteFunc\": \"func_dswg77st\", \"customClass\": \"\", \"placeholder\": \"\", \"tableColumn\": false, \"defaultValue\": \"\", \"isLabelWidth\": false, \"patternCheck\": false, \"remoteOption\": \"option_dswg77st\", \"showPassword\": false, \"dataTypeCheck\": false, \"patternMessage\": \"\", \"validatorCheck\": false, \"dataTypeMessage\": \"\", \"requiredMessage\": \"\"}}], \"type\": \"td\", \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"rowspan\": 1, \"customClass\": \"\"}}, {\"key\": \"gpuidgfo\", \"list\": [{\"key\": \"s4dvlprn\", \"icon\": \"icon-wenzishezhi-\", \"name\": \"Text\", \"type\": \"text\", \"model\": \"text_s4dvlprn\", \"rules\": [], \"events\": {\"onChange\": \"\"}, \"options\": {\"hidden\": false, \"dataBind\": false, \"hideLabel\": true, \"labelWidth\": 100, \"remoteFunc\": \"func_s4dvlprn\", \"customClass\": \"\", \"tableColumn\": false, \"defaultValue\": \"文化程度\", \"isLabelWidth\": false, \"remoteOption\": \"option_s4dvlprn\"}}], \"type\": \"td\", \"rules\": [], \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"rowspan\": 1, \"customClass\": \"\"}}, {\"key\": \"y1haht6a\", \"list\": [{\"key\": \"3ddkxhh8\", \"icon\": \"icon-input\", \"name\": \"Input\", \"type\": \"input\", \"model\": \"input_3ddkxhh8\", \"rules\": [], \"events\": {\"onBlur\": \"\", \"onFocus\": \"\", \"onChange\": \"\"}, \"options\": {\"width\": \"\", \"hidden\": false, \"pattern\": \"\", \"dataBind\": true, \"dataType\": \"\", \"disabled\": false, \"required\": false, \"hideLabel\": true, \"validator\": \"\", \"labelWidth\": 100, \"remoteFunc\": \"func_3ddkxhh8\", \"customClass\": \"\", \"placeholder\": \"\", \"tableColumn\": false, \"defaultValue\": \"\", \"isLabelWidth\": false, \"patternCheck\": false, \"remoteOption\": \"option_3ddkxhh8\", \"showPassword\": false, \"dataTypeCheck\": false, \"patternMessage\": \"\", \"validatorCheck\": false, \"dataTypeMessage\": \"\", \"requiredMessage\": \"\"}}], \"type\": \"td\", \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"rowspan\": 1, \"customClass\": \"\"}}, {\"key\": \"sr8vtlke\", \"list\": [{\"key\": \"kwnh39dd\", \"icon\": \"icon-wenzishezhi-\", \"name\": \"Text\", \"type\": \"text\", \"model\": \"text_kwnh39dd\", \"rules\": [], \"events\": {\"onChange\": \"\"}, \"options\": {\"hidden\": false, \"dataBind\": false, \"hideLabel\": true, \"labelWidth\": 100, \"remoteFunc\": \"func_kwnh39dd\", \"customClass\": \"\", \"tableColumn\": false, \"defaultValue\": \"联系电话\", \"isLabelWidth\": false, \"remoteOption\": \"option_kwnh39dd\"}}], \"type\": \"td\", \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"rowspan\": 1, \"customClass\": \"\"}}, {\"key\": \"ydh3rqcf\", \"list\": [{\"key\": \"abey4tog\", \"icon\": \"icon-input\", \"name\": \"Input\", \"type\": \"input\", \"model\": \"input_abey4tog\", \"rules\": [], \"events\": {\"onBlur\": \"\", \"onFocus\": \"\", \"onChange\": \"\"}, \"options\": {\"width\": \"\", \"hidden\": false, \"pattern\": \"\", \"dataBind\": true, \"dataType\": \"\", \"disabled\": false, \"required\": false, \"hideLabel\": true, \"validator\": \"\", \"labelWidth\": 100, \"remoteFunc\": \"func_abey4tog\", \"customClass\": \"\", \"placeholder\": \"\", \"tableColumn\": false, \"defaultValue\": \"\", \"isLabelWidth\": false, \"patternCheck\": false, \"remoteOption\": \"option_abey4tog\", \"showPassword\": false, \"dataTypeCheck\": false, \"patternMessage\": \"\", \"validatorCheck\": false, \"dataTypeMessage\": \"\", \"requiredMessage\": \"\"}}], \"type\": \"td\", \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"rowspan\": 1, \"customClass\": \"\"}}, {\"key\": \"u6cy5zdp\", \"list\": [], \"type\": \"td\", \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"markCol\": 0, \"markRow\": 1, \"rowspan\": 1, \"invisible\": true, \"customClass\": \"\"}}]}, {\"columns\": [{\"key\": \"8q33ghii\", \"list\": [{\"key\": \"j2ws5soj\", \"icon\": \"icon-wenzishezhi-\", \"name\": \"Text\", \"type\": \"text\", \"model\": \"text_j2ws5soj\", \"rules\": [], \"events\": {\"onChange\": \"\"}, \"options\": {\"hidden\": false, \"dataBind\": false, \"hideLabel\": true, \"labelWidth\": 100, \"remoteFunc\": \"func_j2ws5soj\", \"customClass\": \"\", \"tableColumn\": false, \"defaultValue\": \"参加工作时间\", \"isLabelWidth\": false, \"remoteOption\": \"option_j2ws5soj\"}}], \"type\": \"td\", \"rules\": [], \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"markCol\": 0, \"markRow\": 0, \"rowspan\": 1, \"invisible\": false, \"customClass\": \"\"}}, {\"key\": \"0jsslprq\", \"list\": [{\"key\": \"v5gyuh3r\", \"icon\": \"icon-date\", \"name\": \"Date\", \"type\": \"date\", \"model\": \"date_v5gyuh3r\", \"rules\": [], \"events\": {\"onBlur\": \"\", \"onFocus\": \"\", \"onChange\": \"\"}, \"options\": {\"type\": \"date\", \"width\": \"100%\", \"format\": \"YYYY-MM-DD\", \"hidden\": false, \"dataBind\": true, \"disabled\": false, \"editable\": true, \"readonly\": false, \"required\": false, \"clearable\": true, \"hideLabel\": true, \"timestamp\": false, \"validator\": \"\", \"labelWidth\": 100, \"remoteFunc\": \"func_v5gyuh3r\", \"customClass\": \"\", \"placeholder\": \"\", \"tableColumn\": false, \"defaultValue\": \"\", \"isLabelWidth\": false, \"remoteOption\": \"option_v5gyuh3r\", \"endPlaceholder\": \"\", \"validatorCheck\": false, \"requiredMessage\": \"\", \"startPlaceholder\": \"\"}}], \"type\": \"td\", \"rules\": [], \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 3, \"markCol\": 0, \"markRow\": 0, \"rowspan\": 1, \"invisible\": false, \"customClass\": \"\"}}, {\"key\": \"xo0bar2h\", \"list\": [], \"type\": \"td\", \"rules\": [], \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 2, \"markCol\": 1, \"markRow\": 0, \"rowspan\": 1, \"invisible\": true, \"customClass\": \"\"}}, {\"key\": \"h1tuovgd\", \"list\": [], \"type\": \"td\", \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"markCol\": 2, \"markRow\": 0, \"rowspan\": 1, \"invisible\": true, \"customClass\": \"\"}}, {\"key\": \"8oe4bme5\", \"list\": [{\"key\": \"5iev22bk\", \"icon\": \"icon-wenzishezhi-\", \"name\": \"Text\", \"type\": \"text\", \"model\": \"text_5iev22bk\", \"rules\": [], \"events\": {\"onChange\": \"\"}, \"options\": {\"hidden\": false, \"dataBind\": false, \"hideLabel\": true, \"labelWidth\": 100, \"remoteFunc\": \"func_5iev22bk\", \"customClass\": \"\", \"tableColumn\": false, \"defaultValue\": \"身份证号\", \"isLabelWidth\": false, \"remoteOption\": \"option_5iev22bk\"}}], \"type\": \"td\", \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"rowspan\": 1, \"customClass\": \"\"}}, {\"key\": \"pcoasaz1\", \"list\": [{\"key\": \"1qs5ijzy\", \"icon\": \"icon-input\", \"name\": \"Input\", \"type\": \"input\", \"model\": \"input_1qs5ijzy\", \"rules\": [], \"events\": {\"onBlur\": \"\", \"onFocus\": \"\", \"onChange\": \"\"}, \"options\": {\"width\": \"\", \"hidden\": false, \"pattern\": \"\", \"dataBind\": true, \"dataType\": \"\", \"disabled\": false, \"required\": false, \"hideLabel\": true, \"validator\": \"\", \"labelWidth\": 100, \"remoteFunc\": \"func_1qs5ijzy\", \"customClass\": \"\", \"placeholder\": \"\", \"tableColumn\": false, \"defaultValue\": \"\", \"isLabelWidth\": false, \"patternCheck\": false, \"remoteOption\": \"option_1qs5ijzy\", \"showPassword\": false, \"dataTypeCheck\": false, \"patternMessage\": \"\", \"validatorCheck\": false, \"dataTypeMessage\": \"\", \"requiredMessage\": \"\"}}], \"type\": \"td\", \"rules\": [], \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 3, \"markCol\": 0, \"markRow\": 0, \"rowspan\": 1, \"customClass\": \"\"}}, {\"key\": \"jgxo76sx\", \"list\": [], \"type\": \"td\", \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"markCol\": 1, \"markRow\": 0, \"rowspan\": 1, \"invisible\": true, \"customClass\": \"\"}}, {\"key\": \"91givban\", \"list\": [], \"type\": \"td\", \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"markCol\": 2, \"markRow\": 0, \"rowspan\": 1, \"invisible\": true, \"customClass\": \"\"}}, {\"key\": \"g3kgmprn\", \"list\": [], \"type\": \"td\", \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"markCol\": 0, \"markRow\": 2, \"rowspan\": 1, \"invisible\": true, \"customClass\": \"\"}}]}, {\"columns\": [{\"key\": \"n02ohi3m\", \"list\": [{\"key\": \"xxl6s01t\", \"icon\": \"icon-RectangleCopy\", \"name\": \"Grid\", \"type\": \"grid\", \"model\": \"grid_xxl6s01t\", \"rules\": [], \"columns\": [{\"key\": \"bvwjdi7s\", \"list\": [{\"key\": \"i93ys6rh\", \"icon\": \"icon-radio-active\", \"name\": \"现任职务属:\", \"type\": \"radio\", \"model\": \"radio_i93ys6rh\", \"rules\": [], \"events\": {\"onChange\": \"\"}, \"novalid\": {}, \"options\": {\"props\": {\"label\": \"label\", \"value\": \"value\"}, \"width\": \"\", \"hidden\": false, \"inline\": true, \"remote\": false, \"options\": [{\"label\": \"Option 1\", \"value\": \"任命\"}, {\"label\": \"Option 2\", \"value\": \"聘任\"}, {\"label\": \"Option 3\", \"value\": \"其他\"}], \"dataBind\": true, \"disabled\": false, \"required\": false, \"showLabel\": false, \"validator\": \"\", \"labelWidth\": 100, \"remoteFunc\": \"func_i93ys6rh\", \"remoteType\": \"datasource\", \"customClass\": \"\", \"tableColumn\": false, \"defaultValue\": \"\", \"isLabelWidth\": false, \"remoteOption\": \"option_i93ys6rh\", \"remoteOptions\": [], \"validatorCheck\": false, \"requiredMessage\": \"\"}}], \"type\": \"col\", \"rules\": [], \"options\": {\"lg\": 12, \"md\": 12, \"sm\": 12, \"xl\": 12, \"xs\": 24, \"pull\": 0, \"push\": 0, \"span\": 12, \"offset\": 0, \"customClass\": \"\"}}, {\"key\": \"qae9osrb\", \"list\": [{\"key\": \"lu9syrng\", \"icon\": \"icon-radio-active\", \"name\": \"现任职务:\", \"type\": \"radio\", \"model\": \"radio_lu9syrng\", \"rules\": [], \"events\": {\"onChange\": \"\"}, \"novalid\": {}, \"options\": {\"props\": {\"label\": \"label\", \"value\": \"value\"}, \"width\": \"\", \"hidden\": false, \"inline\": true, \"remote\": false, \"options\": [{\"label\": \"Option 1\", \"value\": \"经理\"}, {\"label\": \"Option 2\", \"value\": \"副经理\"}], \"dataBind\": true, \"disabled\": false, \"required\": false, \"showLabel\": false, \"validator\": \"\", \"labelWidth\": 100, \"remoteFunc\": \"func_i93ys6rh\", \"remoteType\": \"datasource\", \"customClass\": \"\", \"tableColumn\": false, \"defaultValue\": \"\", \"isLabelWidth\": false, \"remoteOption\": \"option_i93ys6rh\", \"remoteOptions\": [], \"validatorCheck\": false, \"requiredMessage\": \"\"}}], \"type\": \"col\", \"options\": {\"lg\": 12, \"md\": 12, \"sm\": 12, \"xl\": 12, \"xs\": 24, \"pull\": 0, \"push\": 0, \"span\": 12, \"offset\": 0, \"customClass\": \"\"}}], \"options\": {\"flex\": true, \"align\": \"top\", \"gutter\": 0, \"hidden\": false, \"justify\": \"start\", \"hideLabel\": true, \"remoteFunc\": \"func_xxl6s01t\", \"responsive\": true, \"customClass\": \"\", \"tableColumn\": false, \"remoteOption\": \"option_xxl6s01t\"}}], \"type\": \"td\", \"rules\": [], \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 9, \"markCol\": 0, \"markRow\": 0, \"rowspan\": 1, \"customClass\": \"\"}}, {\"key\": \"a772opdo\", \"list\": [], \"type\": \"td\", \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"markCol\": 1, \"markRow\": 0, \"rowspan\": 1, \"invisible\": true, \"customClass\": \"\"}}, {\"key\": \"5btq81rq\", \"list\": [], \"type\": \"td\", \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"markCol\": 2, \"markRow\": 0, \"rowspan\": 1, \"invisible\": true, \"customClass\": \"\"}}, {\"key\": \"z52prau6\", \"list\": [], \"type\": \"td\", \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"markCol\": 3, \"markRow\": 0, \"rowspan\": 1, \"invisible\": true, \"customClass\": \"\"}}, {\"key\": \"6bqk4h0u\", \"list\": [], \"type\": \"td\", \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"markCol\": 4, \"markRow\": 0, \"rowspan\": 1, \"invisible\": true, \"customClass\": \"\"}}, {\"key\": \"258qmkz2\", \"list\": [], \"type\": \"td\", \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"markCol\": 5, \"markRow\": 0, \"rowspan\": 1, \"invisible\": true, \"customClass\": \"\"}}, {\"key\": \"19u28qls\", \"list\": [], \"type\": \"td\", \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"markCol\": 6, \"markRow\": 0, \"rowspan\": 1, \"invisible\": true, \"customClass\": \"\"}}, {\"key\": \"1z19hmmi\", \"list\": [], \"type\": \"td\", \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"markCol\": 7, \"markRow\": 0, \"rowspan\": 1, \"invisible\": true, \"customClass\": \"\"}}, {\"key\": \"8mi4kgcy\", \"list\": [], \"type\": \"td\", \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"markCol\": 8, \"markRow\": 0, \"rowspan\": 1, \"invisible\": true, \"customClass\": \"\"}}]}, {\"columns\": [{\"key\": \"fl8uc9m9\", \"list\": [{\"key\": \"sihaugnj\", \"icon\": \"icon-wenzishezhi-\", \"name\": \"Text\", \"type\": \"text\", \"model\": \"text_sihaugnj\", \"rules\": [], \"events\": {\"onChange\": \"\"}, \"options\": {\"hidden\": false, \"dataBind\": false, \"hideLabel\": true, \"labelWidth\": 100, \"remoteFunc\": \"func_sihaugnj\", \"customClass\": \"\", \"tableColumn\": false, \"defaultValue\": \"工作简历\", \"isLabelWidth\": false, \"remoteOption\": \"option_sihaugnj\"}}], \"type\": \"td\", \"rules\": [], \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"markCol\": 0, \"markRow\": 0, \"rowspan\": 4, \"customClass\": \"\"}}, {\"key\": \"a8jsvgfr\", \"list\": [{\"key\": \"c8yehx7k\", \"icon\": \"icon-wenzishezhi-\", \"name\": \"Text\", \"type\": \"text\", \"model\": \"text_c8yehx7k\", \"rules\": [], \"events\": {\"onChange\": \"\"}, \"options\": {\"hidden\": false, \"dataBind\": false, \"hideLabel\": true, \"labelWidth\": 100, \"remoteFunc\": \"func_c8yehx7k\", \"customClass\": \"\", \"tableColumn\": false, \"defaultValue\": \"起止年月\", \"isLabelWidth\": false, \"remoteOption\": \"option_c8yehx7k\"}}], \"type\": \"td\", \"rules\": [], \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 2, \"markCol\": 0, \"markRow\": 0, \"rowspan\": 1, \"customClass\": \"\"}}, {\"key\": \"eaqdlm1j\", \"list\": [], \"type\": \"td\", \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"markCol\": 1, \"markRow\": 0, \"rowspan\": 1, \"invisible\": true, \"customClass\": \"\"}}, {\"key\": \"p69wxvqt\", \"list\": [{\"key\": \"o711h56a\", \"icon\": \"icon-wenzishezhi-\", \"name\": \"Text\", \"type\": \"text\", \"model\": \"text_o711h56a\", \"rules\": [], \"events\": {\"onChange\": \"\"}, \"options\": {\"hidden\": false, \"dataBind\": false, \"hideLabel\": true, \"labelWidth\": 100, \"remoteFunc\": \"func_c8yehx7k\", \"customClass\": \"\", \"tableColumn\": false, \"defaultValue\": \"工作单位\", \"isLabelWidth\": false, \"remoteOption\": \"option_c8yehx7k\"}}], \"type\": \"td\", \"rules\": [], \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 2, \"markCol\": 0, \"markRow\": 0, \"rowspan\": 1, \"customClass\": \"\"}}, {\"key\": \"w546hgyh\", \"list\": [], \"type\": \"td\", \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"markCol\": 1, \"markRow\": 0, \"rowspan\": 1, \"invisible\": true, \"customClass\": \"\"}}, {\"key\": \"v6tuq418\", \"list\": [{\"key\": \"17saaq4j\", \"icon\": \"icon-wenzishezhi-\", \"name\": \"Text\", \"type\": \"text\", \"model\": \"text_17saaq4j\", \"rules\": [], \"events\": {\"onChange\": \"\"}, \"options\": {\"hidden\": false, \"dataBind\": false, \"hideLabel\": true, \"labelWidth\": 100, \"remoteFunc\": \"func_c8yehx7k\", \"customClass\": \"\", \"tableColumn\": false, \"defaultValue\": \"职务\", \"isLabelWidth\": false, \"remoteOption\": \"option_c8yehx7k\"}}], \"type\": \"td\", \"rules\": [], \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 2, \"markCol\": 0, \"markRow\": 0, \"rowspan\": 1, \"customClass\": \"\"}}, {\"key\": \"o1jlkg1e\", \"list\": [], \"type\": \"td\", \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"markCol\": 1, \"markRow\": 0, \"rowspan\": 1, \"invisible\": true, \"customClass\": \"\"}}, {\"key\": \"axu27lco\", \"list\": [{\"key\": \"7krmfnuh\", \"icon\": \"icon-wenzishezhi-\", \"name\": \"Text\", \"type\": \"text\", \"model\": \"text_7krmfnuh\", \"rules\": [], \"events\": {\"onChange\": \"\"}, \"options\": {\"hidden\": false, \"dataBind\": false, \"hideLabel\": true, \"labelWidth\": 100, \"remoteFunc\": \"func_c8yehx7k\", \"customClass\": \"\", \"tableColumn\": false, \"defaultValue\": \"职称\", \"isLabelWidth\": false, \"remoteOption\": \"option_c8yehx7k\"}}], \"type\": \"td\", \"rules\": [], \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 2, \"markCol\": 0, \"markRow\": 0, \"rowspan\": 1, \"customClass\": \"\"}}, {\"key\": \"q42dlbag\", \"list\": [], \"type\": \"td\", \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"markCol\": 1, \"markRow\": 0, \"rowspan\": 1, \"invisible\": true, \"customClass\": \"\"}}]}, {\"columns\": [{\"key\": \"w8sjmtcg\", \"list\": [], \"type\": \"td\", \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"markCol\": 0, \"markRow\": 1, \"rowspan\": 1, \"invisible\": true, \"customClass\": \"\"}}, {\"key\": \"yqldgh3a\", \"list\": [{\"key\": \"r4ju5t8b\", \"icon\": \"icon-input\", \"name\": \"Input\", \"type\": \"input\", \"model\": \"input_r4ju5t8b\", \"rules\": [], \"events\": {\"onBlur\": \"\", \"onFocus\": \"\", \"onChange\": \"\"}, \"options\": {\"width\": \"\", \"hidden\": false, \"pattern\": \"\", \"dataBind\": true, \"dataType\": \"\", \"disabled\": false, \"required\": false, \"hideLabel\": true, \"validator\": \"\", \"labelWidth\": 100, \"remoteFunc\": \"func_r4ju5t8b\", \"customClass\": \"\", \"placeholder\": \"\", \"tableColumn\": false, \"defaultValue\": \"\", \"isLabelWidth\": false, \"patternCheck\": false, \"remoteOption\": \"option_r4ju5t8b\", \"showPassword\": false, \"dataTypeCheck\": false, \"patternMessage\": \"\", \"validatorCheck\": false, \"dataTypeMessage\": \"\", \"requiredMessage\": \"\"}}], \"type\": \"td\", \"rules\": [], \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 2, \"markCol\": 0, \"markRow\": 0, \"rowspan\": 1, \"customClass\": \"\"}}, {\"key\": \"5izdsio4\", \"list\": [], \"type\": \"td\", \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"markCol\": 1, \"markRow\": 0, \"rowspan\": 1, \"invisible\": true, \"customClass\": \"\"}}, {\"key\": \"5qz95aql\", \"list\": [{\"key\": \"ebkl3c7g\", \"icon\": \"icon-input\", \"name\": \"Input\", \"type\": \"input\", \"model\": \"input_ebkl3c7g\", \"rules\": [], \"events\": {\"onBlur\": \"\", \"onFocus\": \"\", \"onChange\": \"\"}, \"options\": {\"width\": \"\", \"hidden\": false, \"pattern\": \"\", \"dataBind\": true, \"dataType\": \"\", \"disabled\": false, \"required\": false, \"hideLabel\": true, \"validator\": \"\", \"labelWidth\": 100, \"remoteFunc\": \"func_r4ju5t8b\", \"customClass\": \"\", \"placeholder\": \"\", \"tableColumn\": false, \"defaultValue\": \"\", \"isLabelWidth\": false, \"patternCheck\": false, \"remoteOption\": \"option_r4ju5t8b\", \"showPassword\": false, \"dataTypeCheck\": false, \"patternMessage\": \"\", \"validatorCheck\": false, \"dataTypeMessage\": \"\", \"requiredMessage\": \"\"}}], \"type\": \"td\", \"rules\": [], \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 2, \"markCol\": 0, \"markRow\": 0, \"rowspan\": 1, \"customClass\": \"\"}}, {\"key\": \"lg09dgz9\", \"list\": [], \"type\": \"td\", \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"markCol\": 1, \"markRow\": 0, \"rowspan\": 1, \"invisible\": true, \"customClass\": \"\"}}, {\"key\": \"onwrn5b8\", \"list\": [{\"key\": \"8m1agnaw\", \"icon\": \"icon-input\", \"name\": \"Input\", \"type\": \"input\", \"model\": \"input_8m1agnaw\", \"rules\": [], \"events\": {\"onBlur\": \"\", \"onFocus\": \"\", \"onChange\": \"\"}, \"options\": {\"width\": \"\", \"hidden\": false, \"pattern\": \"\", \"dataBind\": true, \"dataType\": \"\", \"disabled\": false, \"required\": false, \"hideLabel\": true, \"validator\": \"\", \"labelWidth\": 100, \"remoteFunc\": \"func_r4ju5t8b\", \"customClass\": \"\", \"placeholder\": \"\", \"tableColumn\": false, \"defaultValue\": \"\", \"isLabelWidth\": false, \"patternCheck\": false, \"remoteOption\": \"option_r4ju5t8b\", \"showPassword\": false, \"dataTypeCheck\": false, \"patternMessage\": \"\", \"validatorCheck\": false, \"dataTypeMessage\": \"\", \"requiredMessage\": \"\"}}], \"type\": \"td\", \"rules\": [], \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 2, \"markCol\": 0, \"markRow\": 0, \"rowspan\": 1, \"customClass\": \"\"}}, {\"key\": \"k7zvu4ip\", \"list\": [], \"type\": \"td\", \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"markCol\": 1, \"markRow\": 0, \"rowspan\": 1, \"invisible\": true, \"customClass\": \"\"}}, {\"key\": \"sqjcdrvb\", \"list\": [{\"key\": \"6j3skvun\", \"icon\": \"icon-input\", \"name\": \"Input\", \"type\": \"input\", \"model\": \"input_6j3skvun\", \"rules\": [], \"events\": {\"onBlur\": \"\", \"onFocus\": \"\", \"onChange\": \"\"}, \"options\": {\"width\": \"\", \"hidden\": false, \"pattern\": \"\", \"dataBind\": true, \"dataType\": \"\", \"disabled\": false, \"required\": false, \"hideLabel\": true, \"validator\": \"\", \"labelWidth\": 100, \"remoteFunc\": \"func_r4ju5t8b\", \"customClass\": \"\", \"placeholder\": \"\", \"tableColumn\": false, \"defaultValue\": \"\", \"isLabelWidth\": false, \"patternCheck\": false, \"remoteOption\": \"option_r4ju5t8b\", \"showPassword\": false, \"dataTypeCheck\": false, \"patternMessage\": \"\", \"validatorCheck\": false, \"dataTypeMessage\": \"\", \"requiredMessage\": \"\"}}], \"type\": \"td\", \"rules\": [], \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 2, \"markCol\": 0, \"markRow\": 0, \"rowspan\": 1, \"customClass\": \"\"}}, {\"key\": \"ig3nxt72\", \"list\": [], \"type\": \"td\", \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"markCol\": 1, \"markRow\": 0, \"rowspan\": 1, \"invisible\": true, \"customClass\": \"\"}}]}, {\"columns\": [{\"key\": \"otvid30x\", \"list\": [], \"type\": \"td\", \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"markCol\": 0, \"markRow\": 2, \"rowspan\": 1, \"invisible\": true, \"customClass\": \"\"}}, {\"key\": \"o5u3i7le\", \"list\": [{\"key\": \"8z1r5874\", \"icon\": \"icon-input\", \"name\": \"Input\", \"type\": \"input\", \"model\": \"input_8z1r5874\", \"rules\": [], \"events\": {\"onBlur\": \"\", \"onFocus\": \"\", \"onChange\": \"\"}, \"options\": {\"width\": \"\", \"hidden\": false, \"pattern\": \"\", \"dataBind\": true, \"dataType\": \"\", \"disabled\": false, \"required\": false, \"hideLabel\": true, \"validator\": \"\", \"labelWidth\": 100, \"remoteFunc\": \"func_r4ju5t8b\", \"customClass\": \"\", \"placeholder\": \"\", \"tableColumn\": false, \"defaultValue\": \"\", \"isLabelWidth\": false, \"patternCheck\": false, \"remoteOption\": \"option_r4ju5t8b\", \"showPassword\": false, \"dataTypeCheck\": false, \"patternMessage\": \"\", \"validatorCheck\": false, \"dataTypeMessage\": \"\", \"requiredMessage\": \"\"}}], \"type\": \"td\", \"rules\": [], \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 2, \"markCol\": 0, \"markRow\": 0, \"rowspan\": 1, \"customClass\": \"\"}}, {\"key\": \"t3dzg78q\", \"list\": [], \"type\": \"td\", \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"markCol\": 1, \"markRow\": 0, \"rowspan\": 1, \"invisible\": true, \"customClass\": \"\"}}, {\"key\": \"q79kyvuo\", \"list\": [{\"key\": \"xu47jyes\", \"icon\": \"icon-input\", \"name\": \"Input\", \"type\": \"input\", \"model\": \"input_xu47jyes\", \"rules\": [], \"events\": {\"onBlur\": \"\", \"onFocus\": \"\", \"onChange\": \"\"}, \"options\": {\"width\": \"\", \"hidden\": false, \"pattern\": \"\", \"dataBind\": true, \"dataType\": \"\", \"disabled\": false, \"required\": false, \"hideLabel\": true, \"validator\": \"\", \"labelWidth\": 100, \"remoteFunc\": \"func_r4ju5t8b\", \"customClass\": \"\", \"placeholder\": \"\", \"tableColumn\": false, \"defaultValue\": \"\", \"isLabelWidth\": false, \"patternCheck\": false, \"remoteOption\": \"option_r4ju5t8b\", \"showPassword\": false, \"dataTypeCheck\": false, \"patternMessage\": \"\", \"validatorCheck\": false, \"dataTypeMessage\": \"\", \"requiredMessage\": \"\"}}], \"type\": \"td\", \"rules\": [], \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 2, \"markCol\": 0, \"markRow\": 0, \"rowspan\": 1, \"customClass\": \"\"}}, {\"key\": \"xxb1rwgj\", \"list\": [], \"type\": \"td\", \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"markCol\": 1, \"markRow\": 0, \"rowspan\": 1, \"invisible\": true, \"customClass\": \"\"}}, {\"key\": \"xztjue6c\", \"list\": [{\"key\": \"z94zzx02\", \"icon\": \"icon-input\", \"name\": \"Input\", \"type\": \"input\", \"model\": \"input_z94zzx02\", \"rules\": [], \"events\": {\"onBlur\": \"\", \"onFocus\": \"\", \"onChange\": \"\"}, \"options\": {\"width\": \"\", \"hidden\": false, \"pattern\": \"\", \"dataBind\": true, \"dataType\": \"\", \"disabled\": false, \"required\": false, \"hideLabel\": true, \"validator\": \"\", \"labelWidth\": 100, \"remoteFunc\": \"func_r4ju5t8b\", \"customClass\": \"\", \"placeholder\": \"\", \"tableColumn\": false, \"defaultValue\": \"\", \"isLabelWidth\": false, \"patternCheck\": false, \"remoteOption\": \"option_r4ju5t8b\", \"showPassword\": false, \"dataTypeCheck\": false, \"patternMessage\": \"\", \"validatorCheck\": false, \"dataTypeMessage\": \"\", \"requiredMessage\": \"\"}}], \"type\": \"td\", \"rules\": [], \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 2, \"markCol\": 0, \"markRow\": 0, \"rowspan\": 1, \"customClass\": \"\"}}, {\"key\": \"87bkihvk\", \"list\": [], \"type\": \"td\", \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"markCol\": 1, \"markRow\": 0, \"rowspan\": 1, \"invisible\": true, \"customClass\": \"\"}}, {\"key\": \"rjj9wquq\", \"list\": [{\"key\": \"81k4kwml\", \"icon\": \"icon-input\", \"name\": \"Input\", \"type\": \"input\", \"model\": \"input_81k4kwml\", \"rules\": [], \"events\": {\"onBlur\": \"\", \"onFocus\": \"\", \"onChange\": \"\"}, \"options\": {\"width\": \"\", \"hidden\": false, \"pattern\": \"\", \"dataBind\": true, \"dataType\": \"\", \"disabled\": false, \"required\": false, \"hideLabel\": true, \"validator\": \"\", \"labelWidth\": 100, \"remoteFunc\": \"func_r4ju5t8b\", \"customClass\": \"\", \"placeholder\": \"\", \"tableColumn\": false, \"defaultValue\": \"\", \"isLabelWidth\": false, \"patternCheck\": false, \"remoteOption\": \"option_r4ju5t8b\", \"showPassword\": false, \"dataTypeCheck\": false, \"patternMessage\": \"\", \"validatorCheck\": false, \"dataTypeMessage\": \"\", \"requiredMessage\": \"\"}}], \"type\": \"td\", \"rules\": [], \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 2, \"markCol\": 0, \"markRow\": 0, \"rowspan\": 1, \"customClass\": \"\"}}, {\"key\": \"8xazh13l\", \"list\": [], \"type\": \"td\", \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"markCol\": 1, \"markRow\": 0, \"rowspan\": 1, \"invisible\": true, \"customClass\": \"\"}}]}, {\"columns\": [{\"key\": \"fyedynaq\", \"list\": [], \"type\": \"td\", \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"markCol\": 0, \"markRow\": 3, \"rowspan\": 1, \"invisible\": true, \"customClass\": \"\"}}, {\"key\": \"45eiees6\", \"list\": [{\"key\": \"utrcw0nq\", \"icon\": \"icon-input\", \"name\": \"Input\", \"type\": \"input\", \"model\": \"input_utrcw0nq\", \"rules\": [], \"events\": {\"onBlur\": \"\", \"onFocus\": \"\", \"onChange\": \"\"}, \"options\": {\"width\": \"\", \"hidden\": false, \"pattern\": \"\", \"dataBind\": true, \"dataType\": \"\", \"disabled\": false, \"required\": false, \"hideLabel\": true, \"validator\": \"\", \"labelWidth\": 100, \"remoteFunc\": \"func_r4ju5t8b\", \"customClass\": \"\", \"placeholder\": \"\", \"tableColumn\": false, \"defaultValue\": \"\", \"isLabelWidth\": false, \"patternCheck\": false, \"remoteOption\": \"option_r4ju5t8b\", \"showPassword\": false, \"dataTypeCheck\": false, \"patternMessage\": \"\", \"validatorCheck\": false, \"dataTypeMessage\": \"\", \"requiredMessage\": \"\"}}], \"type\": \"td\", \"rules\": [], \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 2, \"markCol\": 0, \"markRow\": 0, \"rowspan\": 1, \"customClass\": \"\"}}, {\"key\": \"isuqwchb\", \"list\": [], \"type\": \"td\", \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"markCol\": 1, \"markRow\": 0, \"rowspan\": 1, \"invisible\": true, \"customClass\": \"\"}}, {\"key\": \"aip3hnrw\", \"list\": [{\"key\": \"ozeg2lyl\", \"icon\": \"icon-input\", \"name\": \"Input\", \"type\": \"input\", \"model\": \"input_ozeg2lyl\", \"rules\": [], \"events\": {\"onBlur\": \"\", \"onFocus\": \"\", \"onChange\": \"\"}, \"options\": {\"width\": \"\", \"hidden\": false, \"pattern\": \"\", \"dataBind\": true, \"dataType\": \"\", \"disabled\": false, \"required\": false, \"hideLabel\": true, \"validator\": \"\", \"labelWidth\": 100, \"remoteFunc\": \"func_r4ju5t8b\", \"customClass\": \"\", \"placeholder\": \"\", \"tableColumn\": false, \"defaultValue\": \"\", \"isLabelWidth\": false, \"patternCheck\": false, \"remoteOption\": \"option_r4ju5t8b\", \"showPassword\": false, \"dataTypeCheck\": false, \"patternMessage\": \"\", \"validatorCheck\": false, \"dataTypeMessage\": \"\", \"requiredMessage\": \"\"}}], \"type\": \"td\", \"rules\": [], \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 2, \"markCol\": 0, \"markRow\": 0, \"rowspan\": 1, \"customClass\": \"\"}}, {\"key\": \"5vb6ombb\", \"list\": [], \"type\": \"td\", \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"markCol\": 1, \"markRow\": 0, \"rowspan\": 1, \"invisible\": true, \"customClass\": \"\"}}, {\"key\": \"gm1z17vl\", \"list\": [{\"key\": \"0hz4thln\", \"icon\": \"icon-input\", \"name\": \"Input\", \"type\": \"input\", \"model\": \"input_0hz4thln\", \"rules\": [], \"events\": {\"onBlur\": \"\", \"onFocus\": \"\", \"onChange\": \"\"}, \"options\": {\"width\": \"\", \"hidden\": false, \"pattern\": \"\", \"dataBind\": true, \"dataType\": \"\", \"disabled\": false, \"required\": false, \"hideLabel\": true, \"validator\": \"\", \"labelWidth\": 100, \"remoteFunc\": \"func_r4ju5t8b\", \"customClass\": \"\", \"placeholder\": \"\", \"tableColumn\": false, \"defaultValue\": \"\", \"isLabelWidth\": false, \"patternCheck\": false, \"remoteOption\": \"option_r4ju5t8b\", \"showPassword\": false, \"dataTypeCheck\": false, \"patternMessage\": \"\", \"validatorCheck\": false, \"dataTypeMessage\": \"\", \"requiredMessage\": \"\"}}], \"type\": \"td\", \"rules\": [], \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 2, \"markCol\": 0, \"markRow\": 0, \"rowspan\": 1, \"customClass\": \"\"}}, {\"key\": \"w2apmeqc\", \"list\": [], \"type\": \"td\", \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"markCol\": 1, \"markRow\": 0, \"rowspan\": 1, \"invisible\": true, \"customClass\": \"\"}}, {\"key\": \"rrqj7aod\", \"list\": [{\"key\": \"wpjcpiwg\", \"icon\": \"icon-input\", \"name\": \"Input\", \"type\": \"input\", \"model\": \"input_wpjcpiwg\", \"rules\": [], \"events\": {\"onBlur\": \"\", \"onFocus\": \"\", \"onChange\": \"\"}, \"options\": {\"width\": \"\", \"hidden\": false, \"pattern\": \"\", \"dataBind\": true, \"dataType\": \"\", \"disabled\": false, \"required\": false, \"hideLabel\": true, \"validator\": \"\", \"labelWidth\": 100, \"remoteFunc\": \"func_r4ju5t8b\", \"customClass\": \"\", \"placeholder\": \"\", \"tableColumn\": false, \"defaultValue\": \"\", \"isLabelWidth\": false, \"patternCheck\": false, \"remoteOption\": \"option_r4ju5t8b\", \"showPassword\": false, \"dataTypeCheck\": false, \"patternMessage\": \"\", \"validatorCheck\": false, \"dataTypeMessage\": \"\", \"requiredMessage\": \"\"}}], \"type\": \"td\", \"rules\": [], \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 2, \"markCol\": 0, \"markRow\": 0, \"rowspan\": 1, \"customClass\": \"\"}}, {\"key\": \"g9qgkulq\", \"list\": [], \"type\": \"td\", \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"markCol\": 1, \"markRow\": 0, \"rowspan\": 1, \"invisible\": true, \"customClass\": \"\"}}]}, {\"columns\": [{\"key\": \"f5se5x81\", \"list\": [{\"key\": \"pyadlt1a\", \"icon\": \"icon-wenzishezhi-\", \"name\": \"Text\", \"type\": \"text\", \"model\": \"text_pyadlt1a\", \"rules\": [], \"events\": {\"onChange\": \"\"}, \"options\": {\"hidden\": false, \"dataBind\": false, \"hideLabel\": true, \"labelWidth\": 100, \"remoteFunc\": \"func_pyadlt1a\", \"customClass\": \"\", \"tableColumn\": false, \"defaultValue\": \"个人简介\", \"isLabelWidth\": false, \"remoteOption\": \"option_pyadlt1a\"}}], \"type\": \"td\", \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"rowspan\": 1, \"customClass\": \"\"}}, {\"key\": \"hm4wgvp7\", \"list\": [{\"key\": \"2pxu6kk9\", \"icon\": \"icon-diy-com-textarea\", \"name\": \"Textarea\", \"type\": \"textarea\", \"model\": \"textarea_2pxu6kk9\", \"rules\": [], \"events\": {\"onBlur\": \"\", \"onFocus\": \"\", \"onChange\": \"\"}, \"options\": {\"width\": \"\", \"hidden\": false, \"pattern\": \"\", \"dataBind\": true, \"disabled\": false, \"required\": false, \"hideLabel\": true, \"validator\": \"\", \"labelWidth\": 100, \"remoteFunc\": \"func_2pxu6kk9\", \"customClass\": \"\", \"placeholder\": \"\", \"tableColumn\": false, \"defaultValue\": \"\", \"isLabelWidth\": false, \"remoteOption\": \"option_2pxu6kk9\", \"patternMessage\": \"\", \"validatorCheck\": false, \"requiredMessage\": \"\"}}], \"type\": \"td\", \"rules\": [], \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 8, \"markCol\": 0, \"markRow\": 0, \"rowspan\": 1, \"customClass\": \"\"}}, {\"key\": \"junyee27\", \"list\": [], \"type\": \"td\", \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"markCol\": 1, \"markRow\": 0, \"rowspan\": 1, \"invisible\": true, \"customClass\": \"\"}}, {\"key\": \"33je4kxy\", \"list\": [], \"type\": \"td\", \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"markCol\": 2, \"markRow\": 0, \"rowspan\": 1, \"invisible\": true, \"customClass\": \"\"}}, {\"key\": \"b1gt0mgt\", \"list\": [], \"type\": \"td\", \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"markCol\": 3, \"markRow\": 0, \"rowspan\": 1, \"invisible\": true, \"customClass\": \"\"}}, {\"key\": \"h6grumjw\", \"list\": [], \"type\": \"td\", \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"markCol\": 4, \"markRow\": 0, \"rowspan\": 1, \"invisible\": true, \"customClass\": \"\"}}, {\"key\": \"pb74ujye\", \"list\": [], \"type\": \"td\", \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"markCol\": 5, \"markRow\": 0, \"rowspan\": 1, \"invisible\": true, \"customClass\": \"\"}}, {\"key\": \"f5aqw6rn\", \"list\": [], \"type\": \"td\", \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"markCol\": 6, \"markRow\": 0, \"rowspan\": 1, \"invisible\": true, \"customClass\": \"\"}}, {\"key\": \"smorr8ks\", \"list\": [], \"type\": \"td\", \"options\": {\"align\": \"left\", \"width\": \"\", \"height\": \"\", \"valign\": \"top\", \"colspan\": 1, \"markCol\": 7, \"markRow\": 0, \"rowspan\": 1, \"invisible\": true, \"customClass\": \"\"}}]}], \"type\": \"report\", \"model\": \"report_cmkd5l54\", \"rules\": [], \"options\": {\"width\": \"100%\", \"hidden\": false, \"remoteFunc\": \"func_cmkd5l54\", \"borderColor\": \"#999\", \"borderWidth\": 1, \"customClass\": \"\", \"tableColumn\": false, \"remoteOption\": \"option_cmkd5l54\"}, \"headerRow\": [{\"key\": \"pa4zb20w\", \"type\": \"th\", \"options\": {\"width\": \"110px\"}}, {\"key\": \"e6kmtofs\", \"type\": \"th\", \"options\": {\"width\": \"110px\"}}, {\"key\": \"idd8hzdw\", \"type\": \"th\", \"options\": {\"width\": \"80px\"}}, {\"key\": \"aunadsoi\", \"type\": \"th\", \"options\": {\"width\": \"110px\"}}, {\"key\": \"dkr2wfsr\", \"type\": \"th\", \"options\": {\"width\": \"80px\"}}, {\"key\": \"vi0r09di\", \"type\": \"th\", \"options\": {\"width\": \"110px\"}}, {\"key\": \"ma8a5zhs\", \"type\": \"th\", \"options\": {\"width\": \"80px\"}}, {\"key\": \"dmc4fqi7\", \"type\": \"th\", \"options\": {\"width\": \"110px\"}}, {\"key\": \"muv6s1cn\", \"type\": \"th\", \"options\": {\"width\": \"110px\"}}]}], \"config\": {\"ui\": \"element\", \"size\": \"default\", \"width\": \"100%\", \"layout\": \"horizontal\", \"platform\": \"pc\", \"hideLabel\": false, \"labelWidth\": 100, \"customClass\": \"\", \"eventScript\": [{\"key\": \"mounted\", \"func\": \"\", \"name\": \"mounted\"}, {\"key\": \"refresh\", \"func\": \"\", \"name\": \"refresh\"}], \"labelPosition\": \"right\", \"hideErrorMessage\": false}}",
        "flowLevelFlag": 0,
        "formStatus": 3,
        "tableName": "tbl_cus_ty_00017",
        "statusName": null,
        "keyWord": null,
        "nameLike": null,
        "codeLike": null,
        "categoryCodes": null,
        "sortNumber": null,
        "appliedRangeName": null
      }
  ],
  "success": true
}

获取自定义标题的基础数据配置列表

  • 接口名

getProcessNameBaseInfos

  • 请求URL

/flow/bpmnDesigner/prod/api

  • 请求方式

GET

  • 请求参数

  • 返回字段
名称类型描述
successboolean成功状态:true/false
codeString状态码:100/101
msgString提示信息
dataTreeVo变量对象实体
  • 返回示例
{
  "code": "100",
  "msg": "OK",
  "data": [
     {
        "id": "1",
        "sn": "flow.companyName",
        "name": "公司名称",
        "status": "1"
      },
      {
        "id": "2",
        "sn": "flow.deptName",
        "name": "部门名称",
        "status": "1"
      }
  ],
  "success": true
}

保存自定义的流程标题表达式

  • 接口名

saveProcessNameExp

  • 请求URL

/flow/bpmnDesigner/prod/api

  • 请求方式

POST

  • 请求参数
名称类型描述
paramsT自定义流程标题对象,详细字段见【请求实体参数】
  • 请求实体参数
名称类型描述
modelIdString模型id
modelKeyString模型key
modelNameString模型名称
modelXmlStringbpmn模型xml
categoryCodeString分类编码
processNameExpString自定义流程编码名称
  • 返回字段
名称类型描述
successboolean成功状态:true/false
codeString状态码:100/101
msgString提示信息
data
  • 返回示例
{
  "code": "100",
  "msg": "OK",
  "data": null,
  "success": true
}

通过id获取模型对象

  • 接口名

getBpmnByModelId/{modelId}

  • 请求URL

/flow/bpmnDesigner/prod/api

  • 请求方式

GET

  • 请求参数

modelId:模型id

  • 返回字段
名称类型描述
successboolean成功状态:true/false
codeString状态码:100/101
msgString提示信息
dataDeModelVo变量对象实体
  • 返回示例
{
  "code": "100",
  "msg": "OK",
  "data": [
    {
    	"modelId": "1",
    	"modelName": "模型名称",
    	"modelXml": "",
    	"appSn": "系统编码",
    	"processNameExp": "流程名称"
    }
  ],
  "success": true
}

通过key获取模型信息

  • 接口名

/getBpmnByModelKey/{modelKey}

  • 请求URL

/flow/bpmnDesigner/prod/api

  • 请求方式

GET

  • 请求参数

modelKey:模型key

  • 返回字段
名称类型描述
successboolean成功状态:true/false
codeString状态码:100/101
msgString提示信息
datadeModelVo变量对象实体
  • 返回示例
{
  "code": "100",
  "msg": "OK",
  "data": [
    {
      "modelId": "1777994457208717313",
      "modelKey": "ty_00078",
      "modelName": "测试流程123",
      "fileName": null,
      "modelXml": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<definitions xmlns=\"http://www.omg.org/spec/BPMN/20100524/MODEL\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:flowable=\"http://flowable.org/bpmn\" xmlns:bpmndi=\"http://www.omg.org/spec/BPMN/20100524/DI\" ...</definitions>",
      "appSn": "flow",
      "categoryCode": null,
      "description": null,
      "status": null,
      "statusName": null,
      "processNameExp": "${form.input_5h92dhgd}${flow.companyName}${flow.deptName}${flow.userName}${form.textarea_fox5mjz3}${form.number_bhz3f6rv}${flow.userName}"
    }
  ],
  "success": true
}

验证模型的正确性

  • 接口名

validateBpmnModel

  • 请求URL

/flow/bpmnDesigner/prod/api

  • 请求方式

GET

  • 请求参数
名称类型描述
modelInfoVoT模型对象Vo,详细字段见【请求实体参数】
  • 请求实体参数
名称类型描述
modelIdString模型id
modelKeyString模型key
modelNameString模型名称
modelXmlStringbpmn模型xml
appSnString系统编码
categoryCodeString分类编码
processNameExpString自定义流程编码名称
  • 返回字段
名称类型描述
successboolean成功状态:true/false
codeString状态码:100/101
msgString提示信息
datanull
  • 返回示例
{
  "code": "100",
  "msg": "OK",
  "data": null,
  "success": true
}

前台流程回显模拟接口

根据业务单据id获取当前审批人列表

  • 接口名

/getCurrTaskApplyersByBusinessKey/{businessKey}

  • 请求URL

/flow/query

  • 请求方式

GET

  • 请求参数

businessKey:业务单据id

  • 返回字段
名称类型描述
successboolean成功状态:true/false
codeString状态码:100/101
msgString提示信息
dataPlusPersonal审批人对象信息
  • 返回示例
{
  "code": "100",
  "msg": "OK",
  "data": [
    {
      "id": "1",
      "code": "10000",
      "name": "易烊千玺",
      "leaderCode": "10077",
      "leaderName": null,
      "headImg": "",
      "mobile": "18689203258",
      "email": "463805737@qq.com",
      "deptId": "28",
      "deptName": "人资部",
      "companyId": "2",
      "companyName": "北京市石化",
      "status": 1,
      "leaveDate": null,
      "ddUserid": null,
      "thirdParty": null,
      "thirdUserId": "4242263521022988",
      "thirdUnionId": "EyzDVdQECZZyz4ump1xlyQiEiE",
      "sex": 1,
      "address": null,
      "fax": null,
      "positionCode": "d0828e58df6c4f89a9b3e3909852edb5",
      "positionName": null,
      "jobGradeCode": "76ebdf53b8a907bd3eee7c79789d6e6d",
      "jobGradeName": null,
      "deptCode": null,
      "companyCode": null,
      "roles": null,
      "companyIds": null,
      "deptIds": null
    }
  ],
  "success": true
}

根据流程实例id获取高亮线和节点

  • 接口名

/getHighLightedNodeVoByProcessInstanceId/{processInstanceId}

  • 请求URL

/flow/query

  • 请求方式

GET

  • 请求参数

processInstanceId : 流程实例id

  • 返回字段
名称类型描述
successboolean成功状态:true/false
codeString状态码:100/101
msgString提示信息
dataHighLightedNodeVo亮线节点对象信息
  • 返回示例
{
  "code": "100",
  "msg": "OK",
  "data": [
    {
      "highLightedFlows": [
        "Flow_n8dwo5j"
      ],
      "activeActivityIds": [
        "Activity_q8rrx4i"
      ],
      "hisActiveActivityIds": [
        "Event_wvivrj7"
      ],
      "modelXml": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<definitions ...</definitions>",
      "modelName": "易烊千玺发起的付款申请-CW_00009_3"
    }
  ],
  "success": true
}

根据流程实例id和节点id查询节点信息

  • 接口名

/getOneActivityVoByProcessInstanceIdAndActivityId/{processInstanceId}/{activityId}

  • 请求URL

/flow/query

  • 请求方式

GET

  • 请求参数

processInstanceId:流程实例id activityId:节点id

  • 返回字段
名称类型描述
successboolean成功状态:true/false
codeString状态码:100/101
msgString提示信息
dataactivityVo节点对象VO
  • 返回示例
{
  "code": "100",
  "msg": "OK",
  "data": [
    {
      "id": "Activity_0fs9feg",
      "name": "部门主管",
      "assignee": null,
      "candidateUsers": null,
      "candidateGroups": null,
      "multiInstanceAssigneeList": null,
      "userCodes": [
        "10000",
        "10000"
      ],
      "roleSns": [],
      "status": "finish",
      "statusName": "已处理",
      "startDate": "2024-03-25 09:43:46",
      "endDate": "2024-03-25 11:23:32",
      "duration": "1 时 39 分",
      "startUserId": "10000",
      "approver": "易烊千玺"
    }
  ],
  "success": true
}

预览自定义流程图

  • 接口名

getCustomFlowSequenceFlows

  • 请求URL

/flow/query

  • 请求方式

GET

  • 请求参数
名称类型描述
startFormProcessVoT启动表单入参Vo,详细字段见【请求实体参数】
  • 请求实体参数
名称类型描述
modelKeyString模型id
procInstIdString流程实例id
userCodeString用户工号
companyIdString公司id
  • 返回字段
名称类型描述
successboolean成功状态:true/false
codeString状态码:100/101
msgString提示信息
dataList<String>_
  • 返回示例
{
  "code": "100",
  "msg": "OK",
  "data": [
      "Flow_ixv6evv",
      "Flow_1bklqd2",
      "Flow_1q1golp",
      "Flow_063f622",
      "Flow_0i6jiad",
      "Flow_0bav6td",
      "Flow_1w9z5sx",
      "Flow_1b0bai4",
      "Flow_1r0d47g",
      "Flow_15mvpq9",
      "Flow_1cowblu"
    ],
  "success": true
}