企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
# 选择组织机构 1\.首先,需要使用requireJs加载Fast模块 ``` define(['jquery', 'bootstrap', 'backend', 'table', 'fast'], function ($, undefined, Backend, Table, Fast) {}); ``` 2\.在需要调用组织机构选择弹窗的页面DOM对象的click事件中调用组织机构选择组件 ``` $("#select-org").click(function () { Fast.api.selectOrg(function (data) { if(data){ data.forEach(function(value,index){ console.log(value.id); //选择的组织机构节点的ID console.log(value.text); //选择的组织机构节点的简称 }); } }); }); ``` 回调函数中参数data的格式如下: ``` [ {"id":"组织机构节点ID","name":"组织结构节点名称"} ] ```