import React from 'react'; import { Row, Col, Table, DatePicker } from "antd" import { inject, observer } from 'mobx-react'; import { WeaInput, WeaTextarea, WeaSearchGroup, WeaSelect } from "ecCom"; import { slideColumns} from './columns'; import "./editSlideContent.less" import { WeaTableNew } from "comsMobx" const WeaTable = WeaTableNew.WeaTable; import moment from 'moment' const { MonthPicker } = DatePicker; let emptyItem = { incomeLowerLimit: "0.00", incomeUpperLimit: "0.00", dutyFreeValue: "0.00", dutyFreeRate: "0.00", taxableIncomeLl: "0.00", taxableIncomeUl: "0.00", taxRate: "0.00", taxDeduction: "0.00" } @inject('otherDeductStore', "taxAgentStore") @observer export default class EditSlideContent extends React.Component { constructor(props) { super(props); this.state = { taxAgentId: "", startDate: "", endDate: "", editable: this.props.editable === undefined ? "true": this.props.editable } } componentWillMount() { // 初始化渲染页面 const { taxAgentStore: { fetchTaxAgentOption } } = this.props; fetchTaxAgentOption(); } addItem() { const { taxRateStore: {setDataSource}} = this.props; let dataSource = [...this.props.taxRateStore.dataSource]; let indexNum = 1; if(dataSource.length > 0) { indexNum = dataSource[dataSource.length - 1].indexNum + 1 } let item = {...emptyItem} item.indexNum = indexNum dataSource.push(item); setDataSource(dataSource) } fetchCumDeductDetailList(param) { const { otherDeductStore} = this.props; const { getOtherDeductDetailList, currentRecord } = otherDeductStore; getOtherDeductDetailList(currentRecord.id, param); } // 日期格式变化加载数据 handleFetchCumDeductDetailList(startDate, endDate, taxAgentId) { let declareMonth = [] if(startDate != "" && startDate != undefined) { declareMonth.push(startDate); } if(endDate != "" && endDate != undefined) { declareMonth.push(endDate); } let item = { taxAgentId: taxAgentId } if(declareMonth.length != 0) { item.declareMonth = declareMonth } this.fetchCumDeductDetailList(item) } render() { const { taxAgentStore: {taxAgentOption}} = this.props; const { otherDeductStore } = this.props; const { slideTableStore, currentRecord } = otherDeductStore; const { startDate, endDate, taxAgentId } = this.state; return (