You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
store_node/miniprogram/pages/profile/profile.js

24 lines
451 B

// profile.js
Page({
data: {
userInfo: {
name: '用户XXX',
avatar: '/images/icons/avatar.png',
desc: '中南民族大学学生'
}
},
onLoad() {
console.log('个人中心页面加载完成')
},
// 显示功能提示
showFeatureTip(e) {
const feature = e.currentTarget.dataset.feature
wx.showToast({
title: `${feature}功能暂未开放`,
icon: 'none',
duration: 2000
})
}
})