|
@@ -41,13 +41,23 @@ class App extends React.Component {
|
|
|
} else {
|
|
|
content = <FromChooseItem
|
|
|
renderFormList={[
|
|
|
+ // {
|
|
|
+ // name: '步骤描述',
|
|
|
+ // colSpan: 24,
|
|
|
+ // key: 'stepDescription',
|
|
|
+ // type: 'editor',
|
|
|
+ // required: true,
|
|
|
+ // placeholder: '请输入用例操作步骤',
|
|
|
+ // },
|
|
|
{
|
|
|
- name: '步骤描述',
|
|
|
- colSpan: 24,
|
|
|
- key: 'stepDescription',
|
|
|
- type: 'editor',
|
|
|
+ name: '负责人',
|
|
|
+ colSpan: 12,
|
|
|
+ key: 'testOwnerList',
|
|
|
+ type: 'searchPeople',
|
|
|
required: true,
|
|
|
- placeholder: '请输入用例操作步骤',
|
|
|
+ multiple: true,
|
|
|
+ placeholder: '请输入负责人',
|
|
|
+ options: []
|
|
|
}
|
|
|
]}
|
|
|
valueData={{}}
|
|
@@ -57,7 +67,7 @@ class App extends React.Component {
|
|
|
}
|
|
|
setTimeout(() => {
|
|
|
this.onDel()
|
|
|
- }, 2000)
|
|
|
+ }, 200)
|
|
|
return (
|
|
|
<div>
|
|
|
<Button onClick={() => this.handleClick(1, false)}>1</Button>
|