diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/Payslip/Payslip/list.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/Payslip/Payslip/list.vue index 6192ef664..396d1ef44 100644 --- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/Payslip/Payslip/list.vue +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/Payslip/Payslip/list.vue @@ -25,15 +25,29 @@ + + + + 应发合计 + ¥{{list.length > 0 ? list[0].TotalGrossPay || 0 : 0}} + + + + 代扣合计 + ¥{{list.length > 0 ? list[0].DeductionsSubtotal || 0 : 0}} + + + + + - + - + 基本工资 岗位工资: @@ -66,7 +80,7 @@ 百分之十: {{ displayListItem(item, 'TenPercent') }} - + 绩效工资 基础绩效: {{ displayListItem(item, 'BasicsPerformance') }} @@ -75,7 +89,7 @@ 奖励绩效: {{ displayListItem(item, 'AwardPerformance') }} - + 单列绩效 基础绩效: {{ displayListItem(item, 'SeparateBasicsPerformance') }} @@ -84,7 +98,7 @@ 奖励绩效: {{ displayListItem(item, 'SeparateAwardPerformance') }} - + 津贴补贴 艰边津贴: {{ displayListItem(item, 'RoughEdgeAllowance') }} @@ -101,7 +115,7 @@ 特级教师津贴: {{ displayListItem(item, 'SuperfineTeacherResearch') }} - + 改革性补贴 交通补贴: {{ displayListItem(item, 'Transportation') }} @@ -171,7 +185,7 @@ 其他: {{ displayListItem(item, 'Other') }} - + - - + - + --> @@ -572,7 +585,15 @@ reset() { this.queryData = this.COPY(this.defaultQueryData) this.searchChange() - } + }, + + // 点击跳转到详情页 + GoTosingle(type){ + let _this = this + uni.navigateTo({ + url: './single?type='+type+'&item='+encodeURIComponent(JSON.stringify(_this.list)) + }); + } } } @@ -586,6 +607,8 @@ padding-left: 0; padding-right: 0; padding-top: 0; + padding-bottom: 0; + border-top: none !important; } .customlist-item-field{ padding-left: 10px; @@ -662,7 +685,16 @@ font-size: 16px; line-height: 36px; background: #f1f1f1; - margin-top: 5px; padding-left: 5px; } + .item-titlewrap{ + color: #000; + font-size: 16px; + line-height: 50px; + background: #f1f1f1; + padding:0 10px; + border-bottom: 1rpx solid #ddd; + display: flex; + justify-content: space-between; + } \ No newline at end of file diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/Payslip/Payslip/single.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/Payslip/Payslip/single.vue index 7aaba5065..1010ff97f 100644 --- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/Payslip/Payslip/single.vue +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/Payslip/Payslip/single.vue @@ -1,43 +1,44 @@