Commit 2e08d7c2 authored by XieZhiXiong's avatar XieZhiXiong

feat: 添加 formily商城多选框 组件

parent 1948838e
/*
* @Author: XieZhiXiong
* @Date: 2021-06-25 14:19:50
* @LastEditors: XieZhiXiong
* @LastEditTime: 2021-06-25 14:23:25
* @Description: formily 商城多选框
*/
import React from 'react';
import { connect } from '@formily/antd';
import ApplicableList from '../../ApplicableList';
const FormilyApplicableList = connect()((props) => {
const {
dataSource,
value,
onChange,
} = props;
return <ApplicableList options={dataSource} value={value} onChange={onChange} />
});
export default FormilyApplicableList;
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment