king
2025-01-05 fd47b0ad8062eee8af364c656b59a5378ef918ae
src/templates/zshare/verifycard/uniqueform/index.jsx
@@ -1,7 +1,7 @@
import React, {Component} from 'react'
import PropTypes from 'prop-types'
import { Form, Row, Col, Select, Button } from 'antd'
import './index.scss'
// import './index.scss'
class UniqueForm extends Component {
  static propTpyes = {
@@ -64,11 +64,9 @@
                  }
                ]
              })(
                <Select
                  mode="multiple"
                >
                <Select mode="multiple">
                  {fields.map(item => (
                    <Select.Option key={item.uuid} value={item.field}>{item.label}</Select.Option>
                    <Select.Option key={item.uuid} value={item.field}>{`${item.label}(${item.field})`}</Select.Option>
                  ))}
                </Select>
              )}
@@ -97,7 +95,7 @@
          {btn.Ot !== 'requiredOnce' ? <Col span={7}>
            <Form.Item label="验证类型">
              {getFieldDecorator('verifyType', {
                initialValue: 'physical',
                initialValue: 'logic',
                rules: [
                  {
                    required: true,
@@ -106,8 +104,8 @@
                ]
              })(
                <Select>
                  <Select.Option value="physical"> 物理验证 </Select.Option>
                  <Select.Option value="logic"> 逻辑验证 </Select.Option>
                  <Select.Option value="physical"> 物理验证 </Select.Option>
                </Select>
              )}
            </Form.Item>