adPayDetails.js
1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
// pages/main/advancepayment/adPayDetails/adPayDetails.js
var format = require('../../../../utils/util.js');
var app = getApp();
var baseUrl = app.globalData.baseUrl;
Page({
data: {
// tab切换
isshow: false,
currentTab: 0,
taxDatas: {},
choosed_date: '',
long_date: 0,
isForeign:false
},
onLoad: function (options) {
if (options.date){
var mydate = new Date();
this.setData({
choosed_date: options.date,
isForeign: options.taxpayer_type == 'non-resident'
})
}
if (!options.id) return
const self = this
var Authorization = getApp().globalData.Authorization;
wx.showLoading()
wx.request({
url: baseUrl + "payroll/v1/tax/person-records/" + options.id,
header: {
'Authorization': Authorization
},
success: function (result) {
console.log('成功', result)
self.setData({
taxDatas: that.handleTaxData(result.data)
})
},
fail: function (res) {
console.log('失败', res)
},
complete: function () {
wx.hideLoading()
}
})
},
handleTaxData: function (items) {
for (var i = 0; i < items.length; ++i) {
var item = items[i]
var donation_way
if (item.donation_way == 'quota') {
method = '限额扣除'
} else if (item.donation_way == 'full') {
method = '全额扣除'
} else if (item.donation_way == 'mix') {
method = '混合'
}
item.method = method
}
return items;
},
})