武田基因病B开发环境
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.

29 lines
373 B

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