| | |
| | | } |
| | | |
| | | let _columns = [] |
| | | let remarks = [] |
| | | if (window.GLOB.process && card.intertype !== 'inner') { |
| | | let cols = [] |
| | | fields.forEach(col => { |
| | |
| | | |
| | | cols.push(col.field.toLowerCase()) |
| | | _columns.push(col) |
| | | |
| | | if (col.type === 'text' && col.field !== 'BID') { |
| | | remarks.push(col) |
| | | } |
| | | }) |
| | | |
| | | columns.forEach(col => { |
| | |
| | | </Select> |
| | | </Form.Item> |
| | | </Col> : null} |
| | | {window.GLOB.process && card.intertype !== 'inner' && verify.workFlow === 'true' && verify.flowType !== 'start' ? <Col span={8}> |
| | | <Form.Item label={ |
| | | <Tooltip placement="bottomLeft" title="可通过表单字段填写审批或驳回的备注信息。"> |
| | | <QuestionCircleOutlined className="mk-form-tip" /> |
| | | 备注字段 |
| | | </Tooltip> |
| | | }> |
| | | <Select allowClear value={verify.flowRemark} onChange={(val) => {this.onOptionChange(val || '', 'flowRemark')}}> |
| | | {remarks.map(option => |
| | | <Select.Option key={option.field} value={option.field}> |
| | | {option.label} |
| | | </Select.Option> |
| | | )} |
| | | </Select> |
| | | </Form.Item> |
| | | </Col> : null} |
| | | <Col span={24}></Col> |
| | | <Col span={8}> |
| | | <Form.Item label={ |