个税在线申报-申报表导出功能的完成
This commit is contained in:
parent
89b28b1d2e
commit
ea3cfbe0fc
|
|
@ -6,9 +6,9 @@ import InsufficientTrafficAlert from "./components/insufficientTrafficAlert";
|
||||||
const getLabel = WeaLocaleProvider.getLabel;
|
const getLabel = WeaLocaleProvider.getLabel;
|
||||||
const tabs = [
|
const tabs = [
|
||||||
{ key: "ENABLE_SETTINGS", title: getLabel(111, "启用设置") },
|
{ key: "ENABLE_SETTINGS", title: getLabel(111, "启用设置") },
|
||||||
{ key: "INTERFACE_FLOW_STATISTICS", title: getLabel(111, "接口流量统计") },
|
// { key: "INTERFACE_FLOW_STATISTICS", title: getLabel(111, "接口流量统计") },
|
||||||
{ key: "INSUFFICIENT_TRAFFIC_ALERT", title: getLabel(111, "流量不足提醒") },
|
// { key: "INSUFFICIENT_TRAFFIC_ALERT", title: getLabel(111, "流量不足提醒") },
|
||||||
{ key: "TRAFFIC_USAGE_RECORD", title: getLabel(111, "流量使用记录") }
|
// { key: "TRAFFIC_USAGE_RECORD", title: getLabel(111, "流量使用记录") }
|
||||||
];
|
];
|
||||||
|
|
||||||
class Index extends Component {
|
class Index extends Component {
|
||||||
|
|
|
||||||
|
|
@ -181,7 +181,7 @@ class TaxAgentSlide extends Component {
|
||||||
CurrentDom = <BaseSettings decentralization={decentralization} isChief={isChief}/>;
|
CurrentDom = <BaseSettings decentralization={decentralization} isChief={isChief}/>;
|
||||||
break;
|
break;
|
||||||
case 1:
|
case 1:
|
||||||
CurrentDom = <TaxDeclarationInfo ref={dom => this.taxInfoRef = dom} taxAgentId={taxAgentId}/>;
|
CurrentDom = <TaxDeclarationInfo ref={dom => this.taxInfoRef = dom} taxAgentId={taxAgentId} isChief={isChief}/>;
|
||||||
break;
|
break;
|
||||||
case 2:
|
case 2:
|
||||||
CurrentDom = <PersonalScope taxAgentId={taxAgentId}/>;
|
CurrentDom = <PersonalScope taxAgentId={taxAgentId}/>;
|
||||||
|
|
|
||||||
|
|
@ -37,7 +37,8 @@ class TaxDeclarationInfo extends Component {
|
||||||
this.setState({
|
this.setState({
|
||||||
fieldItem: _.filter(_.map(fieldList, item => ({
|
fieldItem: _.filter(_.map(fieldList, item => ({
|
||||||
...item,
|
...item,
|
||||||
label: getLabel(item.lanId, item.label)
|
label: getLabel(item.lanId, item.label),
|
||||||
|
viewAttr: this.props.isChief ? item.viewAttr : 1
|
||||||
})), it => it.key !== "account" && it.key !== "realNamePassword")
|
})), it => it.key !== "account" && it.key !== "realNamePassword")
|
||||||
}, () => {
|
}, () => {
|
||||||
this.taxReturnGetForm();
|
this.taxReturnGetForm();
|
||||||
|
|
@ -58,10 +59,10 @@ class TaxDeclarationInfo extends Component {
|
||||||
}
|
}
|
||||||
return {
|
return {
|
||||||
...pre,
|
...pre,
|
||||||
cityVal: [{ id: data[cur], name: data["cityname"] }],
|
|
||||||
[cur]: `${data["nation"]}-${data["province"]}-${data[cur]}`
|
[cur]: `${data["nation"]}-${data["province"]}-${data[cur]}`
|
||||||
};
|
};
|
||||||
}, {})
|
}, {}),
|
||||||
|
cityVal: (data["city"] && data["cityName"]) ? [{ id: data["city"], name: data["cityName"] }] : []
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue