feat: 电子药箱小程序 - 4Tab药品管理

- 电子药箱: 药品库存管理 + 手动录入 + 今日用药打卡
- 药品百科: 搜索 + 分类筛选 + 20种药品静态数据
- 惠教中心: 4条药品使用指南课程
- 我的: 家庭成员信息管理
- 自定义TabBar + navigation-bar组件
- SVG药品分类插图
This commit is contained in:
陈誉午
2026-07-29 11:20:52 +08:00
commit 994b267f5c
683 changed files with 43849 additions and 0 deletions
@@ -0,0 +1,51 @@
// @ts-nocheck
Component({
properties: {
placeholder: {
type: String,
value: "请输入内容"
},
value: {
type: String,
value: ''
},
redirect: { //页面跳转的路径
type: String,
value: ''
}
},
methods: {
onInput(e: any) {
this.setData({ value: e.detail.value })
//抛出一个事件,让父组件拿到输入值
this.triggerEvent('change', e.detail.value)
},
onSearch() {
const keyword = this.data.value.trim()
if (keyword === '' || keyword == undefined) {
wx.showToast({
title: '请输入商品名称!',
icon: 'none'
})
return
}
// 如果父组件绑定有search,则调父组件的方法
if (this.dataset.hasOwnProperty('search')) {
this.triggerEvent('search', keyword)
return
}
//否则执行默认跳转逻辑
if (this.data.redirect) {
wx.navigateTo({
url: `${this.data.redirect}?keyword=${keyword}`
})
} else {
wx.showToast({
title: '未配置跳转页面',
icon: 'none'
})
}
}
}
})