Files
bsmall/pages/user/user.js
2020-09-24 11:08:03 +08:00

25 lines
382 B
JavaScript
Executable File

const app = getApp()
Page({
data: {
userInfo: {}
},
onLoad() {
this.setData({
userInfo: app.globalData.userInfo
})
},
copyNumber(){
my.setClipboard({
text : this.data.userInfo.gas_number,
success : res=>{
my.showToast({
content: "渠道工号已复制",
type : "none"
});
}
})
}
});