武田小程序
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.

36 lines
468 B

const _app = getApp<IAppOption>();
1 year ago
// pages/story/a.ts
Component({
/**
*
*/
properties: {
show: {
type: Boolean,
value: false,
},
params: {
type: Object,
value: () => {},
},
1 year ago
},
/**
*
*/
data: {},
/**
*
*/
methods: {
onClose() {
this.triggerEvent("close");
},
handleTap() {
return false;
},
},
});