adPayDetails.js
1.1 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
// 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
},
onLoad: function (options) {
if (options.date){
var mydate = new Date();
this.setData({
choosed_date: options.date,
})
}
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)
if (result.personal_income){
self.setData({
taxDatas: result.data
})
}
},
fail: function (res) {
console.log('失败', res)
},
complete: function () {
wx.hideLoading()
}
})
},
})