forked from gzzfw/frontEnd/gzDyh

zhangyongtian
2024-08-29 950e277be6a245cd02e1e861db87a49b7cf96eb6
gz-customerSystem/src/views/register/visit/component/applyDialog.jsx
@@ -13,8 +13,8 @@
  caseperfection_organize_active,
} from '@/assets/images/icon';
import { Form, Input, Button, Radio, Select, Modal, Cascader, Upload, Message } from '@arco-design/web-react';
import KeyVisits from "./keyVisits";
import SelectUnitDialog from "./selectUnitDialog";
import KeyVisits from "./KeyVisits";
import SelectUnitDialog from "./SelectUnitDialog";
import {
  IconLink,
} from '@arco-design/web-react/icon';
@@ -146,12 +146,16 @@
              label='民族'
              field='nation'
            >
              <Select placeholder='请选择' allowClear>
                {['汉族',].map((option, index) => (
                  <Option key={option} value={option}>
                    {option}
                  </Option>
                ))}
              <Select
                placeholder='请选择'
                allowClear
                showSearch
                options={$$.options.nation}
                filterOption={(inputValue, option) =>
                  option.props.value.toLowerCase().indexOf(inputValue.toLowerCase()) >= 0 ||
                  option.props.children.toLowerCase().indexOf(inputValue.toLowerCase()) >= 0
                }
              >
              </Select>
            </FormItem>
          </Col>