连接了我的项目,我的抽成
This commit is contained in:
@ -1,32 +1,24 @@
|
||||
// pages/personCenter/component/InvitationCodePop/InvitationCodePop.js
|
||||
Component({
|
||||
|
||||
/**
|
||||
* 组件的属性列表
|
||||
*/
|
||||
properties: {
|
||||
// 接收传递进来的二维码图片路径
|
||||
show: { // 控制显示/隐藏
|
||||
type: Boolean,
|
||||
value: false
|
||||
},
|
||||
qrcode: {
|
||||
type: String,
|
||||
value: ""
|
||||
},
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 组件的初始数据
|
||||
*/
|
||||
data: {
|
||||
closeIcon: "./images/cha.png", // 关闭按钮的图标
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 组件的方法列表
|
||||
*/
|
||||
methods: {
|
||||
// 关闭弹窗
|
||||
close() {
|
||||
// 触发关闭弹窗事件
|
||||
this.triggerEvent('close');
|
||||
},
|
||||
|
||||
// 预览二维码
|
||||
previewQrcode() {
|
||||
wx.previewImage({
|
||||
urls: [this.data.qrcode], // 预览图片
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
})
|
Binary file not shown.
Before Width: | Height: | Size: 1.1 KiB |
Reference in New Issue
Block a user