12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <image class="diban" src="/icon/result/diban.png"></image>
- <view class="view-result">
- <view>
- <image src="{{ui.avatar}}"></image>
- <text>{{result.status}}</text>
- <text>{{result.introductions}}</text>
- <text>¥{{ui.income}}</text>
- <text>除去个人缴纳社保{{ui.A}}元、公积金{{ui.B}}元、个人所得税{{ui.C}}元,本月税后工资所得</text>
- </view>
- <button wx:if='{{isRelay}}' bindtap='calculatorAction' style="border-color: rgba(0, 0, 0, 0)" hover-class="none" plain="true">我也要计算</button>
- <button wx:else open-type='share' hover-class="none" plain="true">转发到微信与好友PK</button>
- <navigator
- class="mini"
- target="miniProgram"
- open-type="navigate"
- app-id="wxbf3f03f8a7d0cdcf"
- path=""
- extra-data=""
- version="release"
- >社保公积金自助缴纳
- </navigator>
- </view>
- <view class="conetion">
- <image src="/icon/result/zhuangshi.png"></image>
- </view>
- <view class="yearAction">
- <view>
- <image src="/icon/result/title.png"></image>
- </view>
- <view class="list">
- <view>
- <view>月份</view>
- <view>个人所得税(元)</view>
- <view>税后工资(元)</view>
- </view>
- <view wx:for="{{data[2]}}" wx:for-index="i" wx:key="" style="{{i%2==0 ?'background:#F1FFFE':'background:#F1F8FF'}}">
- <view>{{tools.getT(i)}}</view>
- <view>{{data[2][i]}}</view>
- <view>{{data[3][i]}}</view>
- </view>
- </view>
- <view wx:if="{{medical.s}}" class="medical-view">
- <text>年度汇算清缴退税金额</text>
- <view>
- <view>大病医疗(元)</view>
- <view>{{medical.d}}</view>
- </view>
- </view>
- </view>
- <image class="dibu" src="/icon/result/dibu.png"></image>
- <wxs module="tools">
- var getT = function(i) {
- if (i > 11) {
- return '合计'
- } else {
- return i + 1 + '月'
- }
- }
- module.exports.getT = getT
- </wxs>
|