新增分享,找回密码,实名认证,签约

This commit is contained in:
唐明明
2023-08-25 14:04:31 +08:00
parent 32cc588ae7
commit 0f7c37d548
106 changed files with 2130 additions and 1313 deletions

View File

@@ -0,0 +1,35 @@
Page({
/**
* 页面的初始数据
*/
data: {
title: "",
text : ""
},
/**
* 生命周期函数--页面加载
*/
onLoad(e){
if(e.type == 'sign'){
this.setData({
title: "签署完成",
text : "签署完成,恭喜您升级为平台会员"
})
}
if(e.type == 'idcard'){
this.setData({
title: "认证完成",
text : "实名认证已完成"
})
}
},
/**
* 返回
*/
onBack(){
wx.navigateBack()
}
})