27 lines
445 B
JavaScript
27 lines
445 B
JavaScript
/*
|
|
* 自定义多选下拉框
|
|
* 支持搜索
|
|
* @Author: 黎永顺
|
|
* @Date: 2024/9/13
|
|
* @Wechat:
|
|
* @Email: 971387674@qq.com
|
|
* @description:
|
|
*/
|
|
import React, { Component } from "react";
|
|
import { WeaLocaleProvider } from "ecCom";
|
|
import "./index.less";
|
|
|
|
const getLabel = WeaLocaleProvider.getLabel;
|
|
|
|
class Index extends Component {
|
|
render() {
|
|
return (
|
|
<div>
|
|
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default Index;
|