2018-08-12 17:35:13 +08:00

12 lines
211 B
JavaScript

import Page from '../../common/page';
Page({
onTapLeft() {
wx.showToast({ title: '点击返回', icon: 'none' });
},
onTapRight() {
wx.showToast({ title: '点击按钮', icon: 'none' });
}
});