产品-薪酬统计分析模块整理

This commit is contained in:
黎永顺 2023-04-28 10:08:14 +08:00
parent 028dcd211a
commit 35fd985246
1 changed files with 2 additions and 3 deletions

View File

@ -167,8 +167,7 @@ class DimensionSlide extends Component {
render() {
const { loading, dimType, setting4RationGroupSpacing, setting4RationGroupIndividual } = this.state;
const { form, condition } = this.props;
console.log(this.props);
const { form, condition, formId } = this.props;
return (
<WeaDialog
{...this.props}
@ -177,7 +176,7 @@ class DimensionSlide extends Component {
className="dimensionSlideWrapper"
title={
<div className="dimensionTitle">
<span>{getLabel(111, "新建统计维度")}</span>
<span>{formId ? getLabel(111, "编辑统计维度") : getLabel(111, "新建统计维度")}</span>
<Button type="primary" onClick={this.handleSave} loading={loading}>{getLabel(111, "保存")}</Button>
</div>
}