Files
dvcp_v2_wxcp_app/src/apps/AppMonitoringObject/MonitorRemoveView.vue

36 lines
578 B
Vue
Raw Normal View History

2022-04-26 14:17:48 +08:00
<template>
<div class="MonitorRemoveView">
</div>
</template>
<script>
export default {
name: "MonitorRemoveView",
data() {
return {
id: '',
pass: '',
}
},
onLoad(o) {
this.pass = o.pass;
this.id = o.id;
},
methods: {
submit() {
this.$http.post(`/app/apppreventionreturntopoverty/relieve?id=${this.id}&pass=${pass}`).then(res => {
if (res.code === 0) {
this.$u.toast('操作成功')
uni.$emit('reload')
this.getInfo()
}
})
}
},
}
</script>
<style>
</style>