监测对象

This commit is contained in:
liuye
2022-03-25 11:46:49 +08:00
parent e0418a7125
commit d62a41541e
2 changed files with 26 additions and 1 deletions

View File

@@ -212,6 +212,13 @@
<div @click="cancel">驳回申请</div>
<div class="confirm-btn" @click="confirm">纳入监测</div>
</div>
<!-- <div class="footer-btn">
<div @click="del">删除人员</div>
<div class="confirm-btn" @click="remove">消除风险</div>
</div>
<div class="footer-btn">
<div class="confirm-btn" @click="submitRemove">申请解除风险</div>
</div> -->
</AiFixedBtn>
</div>
</template>
@@ -381,6 +388,24 @@ export default {
confirm() {
this.$confirm('', '您确认要将此居民纳入监测对象吗?').then(() => {
})
},
del() {
this.$confirm('', '您确认要要删除此监测对象的信息吗?').then(() => {
})
},
remove() {
this.$confirm('', '您确认要解除此监测对象的风险吗?').then(() => {
})
},
submitRemove() {
this.$confirm('', '您确认要申请解除此监测对象的风险吗?').then(() => {
})
}
}