deductOrPayedDetail.js
2.8 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
var app = getApp();
var baseUrl = app.globalData.baseUrl;
Page({
/**
* Page initial data
*/
data: {
year: "2019",
infoList: [{}],
project: ["正常工资薪金", "劳务报酬", "稿酬", "特许经营权使用费"],
deductcontent: ["高级专家延长离退休期间工薪免征个人所得税", "解除劳动合同当地工资3倍以内免税", "符合条件的津补贴免征个人所得税", "生育津贴和生育医疗费免税", "工伤保险免税", "符合条件的外交人员免征个人所得税", "外籍个人出差补贴免税", "外籍个人探亲费、语言训练费、子女教育费免税", "外籍个人生活费用免税", "符合条件的外籍来华专家工资薪金所得免征个人所得税", "薪金所得免征个人所得数", "横琴、香港、澳门居民免税", "平潭台湾居民免税", "安家费、退职费、退休工资、离休工资、离休生活补助费免税"],
deductproperty: ["其他"],
},
/**
* Lifecycle function--Called when page load
*/
onLoad: function (options) {
this.getInfoList()
},
/**
* Lifecycle function--Called when page is initially rendered
*/
onReady: function () {
},
getInfoList: function () {
var that = this
this.Authorization = getApp().globalData.Authorization;
wx.request({
url: baseUrl + "payroll/v1/settlement-tax/reduction-tax",
header: {
'Authorization': this.Authorization
},
data: {
"years": that.data.year,
},
success: function (result) {
console.log("infoList", result)
if (result.statusCode == 200) {
that.setData({
infoList: result.data.items
})
}
},
})
},
/**
* Lifecycle function--Called when page show
*/
onShow: function () {
},
// 所得项目
bindProjectChange: function (e) { },
// 减免事项名称
bindDeductContent: function (e) { },
// 减免性质名称
bindDeductProperty: function (e) { },
// 减免金额
bindIncome: function (e) {
},
addItem: function () {//继续添加
var info = this.data.infoList;
console.log(info);
info.push(this.data.infoList.length);
this.setData({
infoList: info
});
},
goSubmit: function (e) {
console.log('form发生了submit事件,携带数据为:', e.detail.value)
},
/**
* Lifecycle function--Called when page hide
*/
onHide: function () {
},
/**
* Lifecycle function--Called when page unload
*/
onUnload: function () {
},
/**
* Page event handler function--Called when user drop down
*/
onPullDownRefresh: function () {
},
/**
* Called when page reach bottom
*/
onReachBottom: function () {
},
/**
* Called when user click on the top right corner to share
*/
onShareAppMessage: function () {
}
})