qiqi.page
page
模块提供跳转到指定界面的功能。
API
openForm(options): Promise<boolean>
打开单据卡片详情界面
options
对象属性如下:
参数 | 说明 | 类型 | 默认值 |
---|---|---|---|
mode | 模式 (View查看态, Edit编辑态) | string | - |
id | 单据id | string | - |
entityName | 业务对象的名称 | string | |
contextOrgId | 使用组织id, 对于受管控档案必传 | string |
- demo
// 打开报销单查看态
qiqi.page.openForm({
id: 'xxxx',
mode: 'View',
entityName: 'Reimburse'
});