个税在线申报-申报表导出功能的完成
This commit is contained in:
parent
ea3cfbe0fc
commit
bc952ecaad
|
|
@ -8,7 +8,19 @@
|
|||
|
||||
.formWrapper {
|
||||
line-height: 40px;
|
||||
border-bottom: 1px solid #eee;
|
||||
border: 1px solid #eee;
|
||||
|
||||
.ant-col-12 {
|
||||
padding: 0 16px;
|
||||
}
|
||||
|
||||
& > div:first-child {
|
||||
border-bottom: 1px solid #eee;
|
||||
|
||||
& > div:first-child {
|
||||
border-right: 1px solid #e5e5e5;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.operateBarWrapper {
|
||||
|
|
|
|||
|
|
@ -73,7 +73,7 @@ class EmployeeDeclareDetailCalcDialog extends Component {
|
|||
<span className="title">{getLabel(111, "报送失败数据详情")}</span>
|
||||
</Col>
|
||||
<Col span={12} className="declareCalcDialogTitle-right">
|
||||
<Button type="primary" onClick={this.handleSubmit}>{getLabel(81272, "导出全部")}</Button>
|
||||
{/*<Button type="primary" onClick={this.handleSubmit}>{getLabel(81272, "导出全部")}</Button>*/}
|
||||
</Col>
|
||||
</Row>)}
|
||||
style={{
|
||||
|
|
|
|||
|
|
@ -388,9 +388,9 @@ class Index extends Component {
|
|||
const menu = (
|
||||
<Menu onClick={this.handleMenuClick}>
|
||||
<Menu.Item key="1">{getLabel(32136, "批量删除")}</Menu.Item>
|
||||
<Menu.Item key="2">{getLabel(111, "批量编辑")}</Menu.Item>
|
||||
<Menu.Item key="3">{getLabel(81272, "导出全部")}</Menu.Item>
|
||||
<Menu.Item key="4">{getLabel(543715, "导出所选")}</Menu.Item>
|
||||
{/*<Menu.Item key="2">{getLabel(111, "批量编辑")}</Menu.Item>*/}
|
||||
{/*<Menu.Item key="3">{getLabel(81272, "导出全部")}</Menu.Item>*/}
|
||||
{/*<Menu.Item key="4">{getLabel(543715, "导出所选")}</Menu.Item>*/}
|
||||
</Menu>
|
||||
);
|
||||
const buttons = [
|
||||
|
|
@ -422,7 +422,7 @@ class Index extends Component {
|
|||
onClick={this.handleAdd}
|
||||
overlay={
|
||||
<Menu>
|
||||
<Menu.Item key="1">{getLabel(32935, "导入")}</Menu.Item>
|
||||
{/*<Menu.Item key="1">{getLabel(32935, "导入")}</Menu.Item>*/}
|
||||
</Menu>
|
||||
}
|
||||
type="primary">{getLabel(1421, "新增")}</Dropdown.Button>,
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ const { getLabel } = WeaLocaleProvider;
|
|||
class TaxFilingInfoDialofg extends Component {
|
||||
|
||||
componentWillReceiveProps(nextProps, nextContext) {
|
||||
if (nextProps.visible !== this.props.visible && nextProps.visible) {
|
||||
if (nextProps.visible !== this.props.visible && nextProps.visible && !_.isEmpty(nextProps.taxAgentTaxReturnCheckFormDTO)) {
|
||||
const { taxAgentTaxReturnCheckFormDTO, taxAgentStore: { taxfillInfoForm } } = nextProps;
|
||||
taxfillInfoForm.initFormFields(taxFillCondition);
|
||||
const fields = _.map(taxFillCondition[0].items, it => {
|
||||
|
|
|
|||
Loading…
Reference in New Issue