[添加转账,提现等新功能]

This commit is contained in:
zhangmanman
2021-07-20 09:01:00 +08:00
parent bc38362878
commit c661dd0e16
75 changed files with 1759 additions and 130 deletions

View File

@@ -0,0 +1,23 @@
// 本时生活
Page({
/**
* 页面的初始数据
*/
data: {
passType : '', //是否是首次设置密码
},
/**
* 生命周期函数--监听页面加载
*/
onLoad (options) {
// 检查用户登录状态
const Paypass = wx.getStorageSync("hasPaypass")
this.setData({
passType: Paypass
})
}
})