const _app = getApp() Page({ data: { popupShow: true, popupType: 'inhibitors', popupParams: {}, unitRange: [ { id: '1', name: 'mg/天', }, { id: '2', name: 'IU/天', }, ], }, onLoad() {}, handlePopupOk() { this.setData({ popupShow: false, }) }, }) export {}