From 43ff36d59f49a44c249cb1ce708d340afc7a231d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=8E=E6=B0=B8=E9=A1=BA?= <971387674@qq.com> Date: Mon, 15 Jan 2024 09:34:49 +0800 Subject: [PATCH] =?UTF-8?q?hotfix/2.9.10.2312.02=20=E5=B7=A5=E8=B5=84?= =?UTF-8?q?=E5=8D=95=E6=9F=A5=E7=9C=8B-=E7=A7=BB=E5=8A=A8=E7=AB=AF?= =?UTF-8?q?=E5=A4=87=E6=B3=A8=E4=BF=A1=E6=81=AF=E5=B1=95=E7=A4=BA=E9=94=99?= =?UTF-8?q?=E8=AF=AF=E7=9A=84=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pc4mobx/hrmSalary/components/mobileTemplate/index.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pc4mobx/hrmSalary/components/mobileTemplate/index.js b/pc4mobx/hrmSalary/components/mobileTemplate/index.js index 7d2106ce..4d1de8c2 100644 --- a/pc4mobx/hrmSalary/components/mobileTemplate/index.js +++ b/pc4mobx/hrmSalary/components/mobileTemplate/index.js @@ -16,6 +16,7 @@ class Index extends Component { render() { const { theme, background, tip, tipPosi, itemTypeList, title } = this.props; const { onlyOneGrup, showData } = dealTemplate(itemTypeList, "mobile"); + console.log(dealTemplate(itemTypeList, "mobile")); return (
{title || getLabel(111, "薪酬预览")}
@@ -31,7 +32,7 @@ class Index extends Component { {/*}*/} { - !onlyOneGrup && tipPosi === "1" && tip && + !onlyOneGrup && tipPosi.toString() === "1" && tip &&
{tip}
}
@@ -46,7 +47,7 @@ class Index extends Component { }
{ - (onlyOneGrup && tipPosi === "1" && tip) && (
+ (onlyOneGrup && tipPosi.toString() === "1" && tip) && (
{getLabel(111, "发放说明")}
{tip}
) @@ -62,7 +63,7 @@ class Index extends Component { }) } { - (onlyOneGrup && tipPosi === "2" && tip) && (
+ (onlyOneGrup && tipPosi.toString() === "2" && tip) && (
{getLabel(111, "发放说明")}
{tip}
) @@ -73,7 +74,7 @@ class Index extends Component { }
{ - !onlyOneGrup && tipPosi === "2" && tip && + !onlyOneGrup && tipPosi.toString() === "2" && tip &&
{tip}
} {this.props.children}