mirror of
https://github.com/crmeb/CRMEB.git
synced 2025-12-11 18:32:50 +00:00
27 lines
408 B
JavaScript
27 lines
408 B
JavaScript
var app = getApp();
|
|
Component({
|
|
properties: {
|
|
sharePacket:{
|
|
type:Object,
|
|
value:{
|
|
isState: true,
|
|
priceName:'',
|
|
}
|
|
}
|
|
},
|
|
data: {
|
|
|
|
},
|
|
attached: function () {
|
|
},
|
|
methods: {
|
|
closeShare:function(){
|
|
this.setData({
|
|
"sharePacket.isState": true
|
|
})
|
|
},
|
|
goShare:function(){
|
|
this.triggerEvent('listenerActionSheet');
|
|
},
|
|
}
|
|
}) |