1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- const app = getApp();
- const api = app.api;
- Page({
-
- data: {
- agree:true,
- settleInfo:{
- artistCaStatus: 0,
- companyCaStatus: 0,
- curatorCaStatus: 0,
- isArtist: 0,
- isArtistAgree: 0,
- isArtistInvoiceAgree: 0,
- isCompany: 0,
- isCompanyAgree: 0,
- isCurator: 0,
- isCuratorAgree: 0,
- isVerification: null,
- isWeChatLogin: null
- }
- },
-
- onLoad: function (options) {
- console.log(options)
- },
-
- onReady: function () {
- },
-
- onShow: function () {
- },
- back(){
- wx.navigateBack()
- },
- next(){
-
-
-
- wx.redirectTo({
- url: "/pages/user/personalInfo/personalInfo?type=2"
- })
- },
-
- onHide: function () {
- },
-
- onUnload: function () {
- },
-
- onPullDownRefresh: function () {
- },
-
- onReachBottom: function () {
- },
-
- onShareAppMessage: function () {
- }
- })
|