Commit 4c1ff71f authored by songrui's avatar songrui

随访详情修改

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