@et-modules/test-flow
v1.0.75
Published
@et-modules/test-flow
Downloads
1
Readme
test-flow 组件
使用
import { TestFlow } from '@et-modules/test-flow';
参数说明
| 参数 | 说明 | 类型 | 是否必填 | 默认值 | | - | - | - | - | - | | dataSource | 数据源 | Object | 否 | - | | onChanged | 监听数据变化 | Function | 否 | - | | status | 页面状态的记录 | Object | 否 | - | | onStatusChanged | 监听页面状态的变化 | Function | 否 | - |
示例
import { TestFlow, DEFAULT_FLOW_DATA } from '@et-modules/test-flow';
const App = ({ resourceId }) => {
// DEFAULT_FLOW_DATA 为初始化时的页面数据,data默认值也可为undefined
const [data, setData] = useState(DEFAULT_FLOW_DATA)
const handleChange = (data) => {
console.log('最新的页面数据为===', data)
}
return <TestFlow dataSource={data} onChanged={handleChange}/>
}
报告组件
使用
import { TestFlowReport, IReportDataItem } from '@et-modules/test-flow';
参数说明
| 参数 | 说明 | 类型 | 是否必填 | 默认值 | | - | - | - | - | - | | dataSource | 数据源 | Array | 是 | - |
示例
import { TestFlowReport, IReportDataItem } from '@et-modules/test-flow';
const App = ({ resourceId }) => {
const [data, setData] = useState<IReportDataItem[]>([])
return <TestFlowReport dataSource={data}/>
}