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;