27 lines
535 B
JavaScript
27 lines
535 B
JavaScript
/*
|
|
* 自定义浏览框组件
|
|
* 单选
|
|
* @Author: 黎永顺
|
|
* @Date: 2024/9/3
|
|
* @Wechat:
|
|
* @Email: 971387674@qq.com
|
|
* @description:
|
|
*/
|
|
import React, { Component } from "react";
|
|
import { WeaLocaleProvider } from "ecCom";
|
|
import AssociativeSearchMult from "./associativeSearchMult";
|
|
|
|
const getLabel = WeaLocaleProvider.getLabel;
|
|
|
|
class AssociativeSearchSingle extends Component {
|
|
|
|
|
|
render() {
|
|
return (
|
|
<AssociativeSearchMult {...this.props}/>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default AssociativeSearchSingle;
|