diff --git a/pc4mobx/hrmSalary/pages/mySalaryMobile/components/payrollList/index.js b/pc4mobx/hrmSalary/pages/mySalaryMobile/components/payrollList/index.js
index 5e4cf85b..ae884bc6 100644
--- a/pc4mobx/hrmSalary/pages/mySalaryMobile/components/payrollList/index.js
+++ b/pc4mobx/hrmSalary/pages/mySalaryMobile/components/payrollList/index.js
@@ -19,7 +19,10 @@ class Index extends Component {
{
_.map(dataSource, it => {
return
- {moment(it.salaryYearMonth).format("YYYY-MM")}
+
+ {moment(it.salaryYearMonth).format("YYYY-MM")}
+ {`${getLabel(15323, "第")}${it.acctTimes}${getLabel(18929, "次")}`}
+
{getLabel(111, "发放时间")}
{moment(it.sendTime).format("YYYY-MM")}
diff --git a/pc4mobx/hrmSalary/pages/mySalaryMobile/index.less b/pc4mobx/hrmSalary/pages/mySalaryMobile/index.less
index 2db7cfab..9dd4d275 100644
--- a/pc4mobx/hrmSalary/pages/mySalaryMobile/index.less
+++ b/pc4mobx/hrmSalary/pages/mySalaryMobile/index.less
@@ -74,12 +74,23 @@
.salaryMonth {
display: flex;
padding: 10px;
+ justify-content: space-between;
+ align-items: center;
border-bottom: 1px solid #e5e5e5;
& > span:first-child {
color: #2db7f5;
font-size: 14px;
}
+
+ & > span:last-child {
+ background: rgba(45, 183, 245, .1);
+ color: #2db7f5;
+ font-size: 12px;
+ display: inline-block;
+ padding: 4px;
+ transform: scale(.8);
+ }
}
.sendTime {