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

40 lines
577 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() {
app.mpBehavior({ PageName: 'BTN_DOCTORINFOWINDOWCLOSE' });
this.triggerEvent('close');
},
handleTap() {
return false;
},
touchMove() {
return false;
},
},
});