From cf268d9931e2e3259a9b101cda4829a763f05ea1 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, 4 Dec 2023 11:35:43 +0800 Subject: [PATCH] =?UTF-8?q?feature/V2-dev=E5=90=88=E5=B9=B6=E5=A4=9A?= =?UTF-8?q?=E8=AF=AD=E8=A8=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pages/socialSecurityBenefits/programme/index.js | 2 +- .../pages/socialSecurityBenefits/programme/index.less | 9 +++++++++ pc4mobx/hrmSalary/stores/programme.js | 6 +++--- 3 files changed, 13 insertions(+), 4 deletions(-) diff --git a/pc4mobx/hrmSalary/pages/socialSecurityBenefits/programme/index.js b/pc4mobx/hrmSalary/pages/socialSecurityBenefits/programme/index.js index 1f47fc37..d58905ab 100644 --- a/pc4mobx/hrmSalary/pages/socialSecurityBenefits/programme/index.js +++ b/pc4mobx/hrmSalary/pages/socialSecurityBenefits/programme/index.js @@ -367,7 +367,7 @@ export default class Programme extends React.Component { this.setState({ showSearchAd: bool })} advanceHeight={200} searchsAd={getSearchs(planSearchForm, _.map(conditons, item => { return { diff --git a/pc4mobx/hrmSalary/pages/socialSecurityBenefits/programme/index.less b/pc4mobx/hrmSalary/pages/socialSecurityBenefits/programme/index.less index fb083858..1bc9d2b0 100644 --- a/pc4mobx/hrmSalary/pages/socialSecurityBenefits/programme/index.less +++ b/pc4mobx/hrmSalary/pages/socialSecurityBenefits/programme/index.less @@ -18,6 +18,15 @@ .tableBar { margin-top: 10px; + + .ant-table-fixed-left { + td { + max-width: 120px; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + } + } } .tableWrapper { diff --git a/pc4mobx/hrmSalary/stores/programme.js b/pc4mobx/hrmSalary/stores/programme.js index a99e6acd..24cb40a2 100644 --- a/pc4mobx/hrmSalary/stores/programme.js +++ b/pc4mobx/hrmSalary/stores/programme.js @@ -171,17 +171,17 @@ export class ProgrammeStore { valideForm(params) { if (!notNull(params.insuranceScheme.paymentType)) { - message.warning("缴纳类型不能为空"); + message.warning(getLabel(111, "缴纳类型不能为空")); return false; } if (!notNull(params.insuranceScheme.schemeName)) { - message.warning("方案名称不能为空"); + message.warning(getLabel(111, "方案名称不能为空")); return false; } if (this.requestParams.sharedType === "1" && !notNull(params.insuranceScheme.taxAgentIds)) { - message.warning("可见性范围不能为空"); + message.warning(getLabel(111, "可见性范围不能为空")); return false; } return true;