Commit 4c1ff71f authored by songrui's avatar songrui

随访详情修改

parent 1c971b73
...@@ -149,10 +149,12 @@ export default { ...@@ -149,10 +149,12 @@ export default {
onRefresh() { onRefresh() {
this.load(false) this.load(false)
}, },
toGeneralDetail(val) { toGeneralDetail(item) {
this.$router.push({ this.$router.push({
path: `/doctor/followUp/generalFU/detail`, path: `/doctor/resident/base`,
query: val query: {
residentId: item.residentInfoId
}
}) })
}, },
toAddGeneral(val) { toAddGeneral(val) {
......
...@@ -47,6 +47,13 @@ ...@@ -47,6 +47,13 @@
{{ item.nextVisitDate }} {{ item.nextVisitDate }}
</div> </div>
</div> </div>
<van-divider class='mt-3' />
<div class="flex justify-end">
<van-button round type="primary" class="card-bt" @click="toEdit(item)">修改</van-button>
<van-button round type="primary" class="ml-3 card-bt" @click="toDel(item)">删除</van-button>
</div>
</div> </div>
</div> </div>
<div class="text-center empty" v-else> <div class="text-center empty" v-else>
...@@ -119,6 +126,12 @@ export default { ...@@ -119,6 +126,12 @@ export default {
}, },
tabChange() { tabChange() {
},
toEdit(item) {
},
toDel(item) {
} }
} }
} }
...@@ -132,11 +145,11 @@ export default { ...@@ -132,11 +145,11 @@ export default {
color: #8C8C8C; color: #8C8C8C;
} }
.card-bt { .card-bt {
font-size: 14px;
color: #607FF0; color: #607FF0;
background-color: #F0F3FF; background-color: #F0F3FF;
border: 0; border: 0;
width: 80%; height: 26px;
height: 40px;
} }
} }
</style> </style>
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