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
+70
View File
@@ -0,0 +1,70 @@
import { request } from './request';
export async function getAddress(ctx:any) {
try {
if (!ctx) return;
wx.showLoading({ title: "获取地址中..." });
const tempAddress = wx.getStorageSync("tempAddress");
const tempAddressId = wx.getStorageSync("tempAddressId");
if (tempAddress && tempAddressId) {
ctx.setData({
defualtAddress: tempAddress,
addressId: tempAddressId
});
wx.removeStorageSync("tempAddress");
wx.removeStorageSync("tempAddressId");
return;
}
const localAddress = wx.getStorageSync("defualtAddress");
const localAddressId = wx.getStorageSync("addressId");
if (localAddress && localAddressId) {
ctx.setData({
defualtAddress: localAddress,
addressId: localAddressId
});
return;
}
const res = await request<any>({
options: {
url: "/app/member-address/search",
data: {
id: Number(wx.getStorageSync("mbuId")),
},
},
});
// @ts-ignore
const defualtAddressObj = res.data?.find((item: any) => item.defaultStatus === true);
if (defualtAddressObj) {
const str = `${defualtAddressObj.location.join("")}${defualtAddressObj.address}`;
ctx.setData({
defualtAddress: str,
addressId: defualtAddressObj.id,
});
wx.setStorageSync("addressId", defualtAddressObj.id);
wx.setStorageSync("defualtAddress", str);
} else {
ctx.setData({
defualtAddress: "未设置地址",
addressId: null,
});
}
} catch (err) {
wx.showToast({
icon: "none",
title: "获取收货地址失败!",
});
} finally {
wx.hideLoading();
}
}