/** * * @title 编辑态表格 * @description 这是带有多种不同格式的编辑态表格(编辑态是通过使用不同的render来达到不同编辑格式) * */ import React from "react"; import Table from "../../src"; import Animate from "bee-animate"; import Tooltip from "bee-tooltip"; import Button from "bee-button"; import Form from "bee-form"; import Icon from "bee-icon"; import Input from "bee-form-control"; import Checkbox from "bee-checkbox"; import Datepicker from "bee-datepicker"; import Select from "bee-select"; import renderInput from "../../build/render/InputRender.js"; import renderDate from "../../build/render/DateRender.js"; import renderSelect from "../../build/render/SelectRender.js"; const InputRender = renderInput(Form, Input, Icon); const DateRender = renderDate(Datepicker, Icon); const SelectRender = renderSelect(Select, Icon); const format = "YYYY-MM-DD"; const format2 = "YYYY-MM"; const format3 = "YYYY-MM-DD HH:mm:ss"; const dateInputPlaceholder = "选择日期"; const dateInputPlaceholder2 = "选择年月"; const dataSource = [ { key: "boyuzhou", value: "jack" }, { key: "renhualiu", value: "lucy" }, { key: "yuzhao", value: "yiminghe" } ]; class Demo14 extends React.Component { constructor(props) { super(props); this.state = { dataSource: [ { key: "0", name: "沉鱼", number: "10", age: "y", address: "jack", datepicker: "2017-06-12", MonthPicker: "2017-02" }, { key: "1", name: "落雁", number: "100", age: "y", address: "lucy", datepicker: "2017-06-12", MonthPicker: "2017-02" }, { key: "2", name: "闭月", number: "1000", age: "n", address: "lucy", datepicker: "2017-06-12", MonthPicker: "2017-02" }, { key: "3", name: "羞花", number: "9999", age: "y", address: "lucy", datepicker: "2017-06-12", MonthPicker: "2017-02" } ], count: 4 }; this.columns = [ { title: "普通输入", dataIndex: "name", key: "name", width: "150px", render: (text, record, index) => ( } /> ) }, { title: "货币输入", dataIndex: "number", key: "number", width: "150px", render: (text, record, index) => ( } reg={/^[0-9]+$/} /> ) }, { title: "复选", dataIndex: "age", key: "age", width: "100px", render: (text, record, index) => ( ) }, { title: "下拉框", dataIndex: "address", key: "address", width: "200px", render: (text, record, index) => { return ( ); } }, { title: "年月日", dataIndex: "datepicker", key: "datepicker", width: "200px", render: (text, record, index) => { return ( ); } }, { title: "年月", dataIndex: "MonthPicker", key: "MonthPicker", width: "200px", render: (text, record, index) => { return ( ); } } ]; } check = (flag, obj) => { console.log(flag); console.log(obj); }; onInputChange = (index, key) => { return value => { const dataSource = [...this.state.dataSource]; dataSource[index][key] = value; this.setState({ dataSource }); }; }; onCheckChange = (index, key) => { return value => { const dataSource = [...this.state.dataSource]; dataSource[index][key] = value; this.setState({ dataSource }); }; }; onSelectChange = (index, key) => { return value => { console.log(`selected ${value}`); const dataSource = [...this.state.dataSource]; dataSource[index][key] = value; this.setState({ dataSource }); }; }; onDateChange = d => { console.log(d); }; onDateSelect = d => { console.log(d); }; onDelete = index => { return () => { const dataSource = [...this.state.dataSource]; dataSource.splice(index, 1); this.setState({ dataSource }); }; }; handleAdd = () => { const { count, dataSource } = this.state; const newData = { key: count, name: `凤姐 ${count}`, age: 32, address: "jack", datepicker: "2017-06-12", MonthPicker: "2017-02" }; this.setState({ dataSource: [...dataSource, newData], count: count + 1 }); }; getBodyWrapper = body => { return ( {body.props.children} ); }; getData = () => { console.log(this.state.dataSource); }; render() { const { dataSource } = this.state; const columns = this.columns; return (
); } } export default Demo14;