25 lines
382 B
JavaScript
Executable File
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"
|
|
});
|
|
}
|
|
})
|
|
}
|
|
});
|