index.js 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. // pages/invoice/index/index.js
  2. const app = getApp();
  3. const api = app.api;
  4. Page({
  5. /**
  6. * 页面的初始数据
  7. */
  8. data: {
  9. agree:true,
  10. settleInfo:{
  11. artistCaStatus: 0, //艺术家认证状态 0未提交,1已提交,2认证通过,3认证不通过
  12. companyCaStatus: 0, //司认证状态 0未提交,1已提交,2认证通过,3认证不通过
  13. curatorCaStatus: 0, //策展人认证状态 0未提交,1已提交,2认证通过,3认证不通过
  14. isArtist: 0,
  15. isArtistAgree: 0, // 艺术家协议 0未同意,1已同意
  16. isArtistInvoiceAgree: 0, //发票协议
  17. isCompany: 0,
  18. isCompanyAgree: 0, //公司认证协议 0未同意,1已同意
  19. isCurator: 0,
  20. isCuratorAgree: 0, // 策展人协议 0未同意,1已同意
  21. isVerification: null, //身份认证
  22. isWeChatLogin: null
  23. }
  24. },
  25. /**
  26. * 生命周期函数--监听页面加载
  27. */
  28. onLoad: function (options) {
  29. console.log(options)
  30. },
  31. /**
  32. * 生命周期函数--监听页面初次渲染完成
  33. */
  34. onReady: function () {
  35. },
  36. /**
  37. * 生命周期函数--监听页面显示
  38. */
  39. onShow: function () {
  40. this.getData()
  41. },
  42. getData(){
  43. },
  44. goService(){
  45. app.post(api.getUserSettleInfo).then(res=>{
  46. console.log(res);
  47. // this.setData({
  48. // settleInfo:res.data
  49. // })
  50. const data = res.data
  51. if(data.isArtistInvoiceAgree==0){
  52. wx.navigateTo({
  53. url: '/pages/invoice/agreement/agreement'
  54. })
  55. }else if(data.isArtistInvoiceAgree!=0&&!data.isVerification){
  56. wx.navigateTo({
  57. url: '/pages/invoice/authentication/authentication'
  58. })
  59. }else if(data.isArtistInvoiceAgree!=0&&data.isVerification){
  60. wx.navigateTo({
  61. url: '/pages/invoice/contract/contract'
  62. })
  63. }else{
  64. wx.navigateTo({
  65. url: '/pages/invoice/myInvoice/myInvoice'
  66. })
  67. }
  68. })
  69. },
  70. /**
  71. * 生命周期函数--监听页面隐藏
  72. */
  73. onHide: function () {
  74. },
  75. /**
  76. * 生命周期函数--监听页面卸载
  77. */
  78. onUnload: function () {
  79. },
  80. /**
  81. * 页面相关事件处理函数--监听用户下拉动作
  82. */
  83. onPullDownRefresh: function () {
  84. },
  85. /**
  86. * 页面上拉触底事件的处理函数
  87. */
  88. onReachBottom: function () {
  89. },
  90. /**
  91. * 用户点击右上角分享
  92. */
  93. onShareAppMessage: function () {
  94. }
  95. })