/** * @description 下拉选择器 * 待优化功能: * 1. 滚动加载 */ import { Model } from "./Model" import { ComponentFunc } from "../../base" import { Service } from './Service' import { IProps } from "../../../@types/Select" import React from "react" export const Select = function (props: IProps, bool?: boolean): any { if (typeof bool !== "boolean") { const Template: any = ComponentFunc({ props, bool: true, Model, Service }) return