提交 394b980b7b460cdde6921ff99b0a3022a9e58c14

作者 pangy
1 个父辈 4e7a0563

工资条 详情里加系统字段(外层字段)

税率%   实发字段
@@ -199,6 +199,10 @@ Page({ @@ -199,6 +199,10 @@ Page({
199 if (!title){ 199 if (!title){
200 title = titleData['original_column'] 200 title = titleData['original_column']
201 } 201 }
  202 + if (!value) {
  203 + value = data[titleData['key']] + ('tax_rate' == titleData['key'] ? '%' : '')
  204 + }
  205 + if (!title || value == '0') continue;
202 details.push({ 206 details.push({
203 title: title, 207 title: title,
204 value: value 208 value: value
@@ -45,7 +45,7 @@ @@ -45,7 +45,7 @@
45 <text class='text_999_28'>发薪日:<text class='text_333_28'>{{item.payroll_date}}</text></text> 45 <text class='text_999_28'>发薪日:<text class='text_333_28'>{{item.payroll_date}}</text></text>
46 <text class='text_999_28'>计薪时间:<text class='text_333_28'>{{item.count_date}}</text></text> 46 <text class='text_999_28'>计薪时间:<text class='text_333_28'>{{item.count_date}}</text></text>
47 <text class='text_999_28'>应发金额:<text class='text_333_28'>{{item.pay_salary}}</text></text> 47 <text class='text_999_28'>应发金额:<text class='text_333_28'>{{item.pay_salary}}</text></text>
48 - <text class='text_999_28'>实发:<text class='text_333_28 text_color_28'>¥{{item.salary}}</text></text> 48 + <text class='text_999_28'>实发:<text class='text_333_28 text_color_28'>¥{{item.real_salary}}</text></text>
49 <view class='divide_line_f5f5f5' style='margin:20rpx 0'></view> 49 <view class='divide_line_f5f5f5' style='margin:20rpx 0'></view>
50 <view wx:if="{{!item.isshow}}" bindtap='gospan' id='{{index}}'> 50 <view wx:if="{{!item.isshow}}" bindtap='gospan' id='{{index}}'>
51 <text style='font-size:28rpx;color:#4e8fe7;text-align:left'>展开</text> 51 <text style='font-size:28rpx;color:#4e8fe7;text-align:left'>展开</text>
注册登录 后发表评论