diff --git a/README.md b/README.md index 6fb397c..692c9ca 100644 --- a/README.md +++ b/README.md @@ -112,6 +112,7 @@ breedingPlan: { sex: '雄性',//字符 饲养动物性别 phase: '',//字符 饲养动物生长阶段:幼年期、成长期、成年期、老年期 state: 0,//int 状态(0正常 1异常) + roleId: null,//负责执行计划的饲养员id describe: ''//字符 饲养计划的描述 } ``` @@ -142,6 +143,8 @@ breedingPlan: { ## 档案管理 + + ## 健康检测 ## 统计分析 @@ -172,8 +175,7 @@ breedingPlan: { ### footer -- [ ] 基本界面 -- [ ] 基本方法 +- [x] 基本界面 - [ ] 优化界面样式 ### main diff --git a/src/components/ZooAside.vue b/src/components/ZooAside.vue index b6a0611..1e92d7b 100644 --- a/src/components/ZooAside.vue +++ b/src/components/ZooAside.vue @@ -1,22 +1,22 @@ @@ -24,7 +24,18 @@ export default { \ No newline at end of file diff --git a/src/components/ZooBreedingPlanFormDialog.vue b/src/components/ZooBreedingPlanFormDialog.vue index c015ca9..4d22f25 100644 --- a/src/components/ZooBreedingPlanFormDialog.vue +++ b/src/components/ZooBreedingPlanFormDialog.vue @@ -10,6 +10,7 @@ export default { sex: '雄性',//字符 饲养动物性别 phase: '',//字符 饲养动物阶段:幼年期、成长期、成年期、老年期 state: 0,//int 状态(0正常 1异常) + roleId: null,//负责执行计划的饲养员id describe: ''//字符 饲养计划的描述 }, formAction: { @@ -66,6 +67,9 @@ export default { 异常 + + + -import {HomeFilled, SwitchButton} from "@element-plus/icons-vue"; +import {House, SwitchButton} from "@element-plus/icons-vue"; export default { name: "ZooHeader", computed: { - HomeFilled() { - return HomeFilled + House() { + return House }, SwitchButton() { return SwitchButton @@ -35,7 +35,7 @@ export default {