Commit e1651b8e authored by weishengfei's avatar weishengfei

feat(My): 添加产检提醒功能

- 在 My.vue 文件中添加了产检提醒功能的卡片
- 新增了一个名为"c"的对象,包含产检提醒的背景图、描述、链接等信息
- 将产检提醒卡片添加到 toolList 中
parent 92158408
......@@ -470,9 +470,20 @@ onMounted(async () => {
},
"title": "喂养记录"
}
const c = {
"bgUrl": "my/suyuan.png",
"desc": "产检提醒",
"link": {
"extra": {babyId: babyId.value},
"type": 1,
"url": "/pages/postnatalCheckUp/postnatalCheckUp"
},
"title": "产检提醒"
}
toolList.value.push(a);
toolList.value.push(b);
toolList.value.push(c);
});
watch([() => userStore.userInfo, () => userStore.babyInfo], () => {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment