deductOrPayedDetail.js 2.8 KB
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 () {

  }
})