curatorStep.js 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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. },
  41. back(){
  42. wx.navigateBack()
  43. },
  44. next(){
  45. // wx.navigateTo({
  46. // url:`/pages/settled/agreement/agreement?id=2`
  47. // })
  48. wx.redirectTo({
  49. url: "/pages/user/personalInfo/personalInfo?type=2"
  50. })
  51. },
  52. /**
  53. * 生命周期函数--监听页面隐藏
  54. */
  55. onHide: function () {
  56. },
  57. /**
  58. * 生命周期函数--监听页面卸载
  59. */
  60. onUnload: function () {
  61. },
  62. /**
  63. * 页面相关事件处理函数--监听用户下拉动作
  64. */
  65. onPullDownRefresh: function () {
  66. },
  67. /**
  68. * 页面上拉触底事件的处理函数
  69. */
  70. onReachBottom: function () {
  71. },
  72. /**
  73. * 用户点击右上角分享
  74. */
  75. onShareAppMessage: function () {
  76. }
  77. })