管理员申请

This commit is contained in:
shijingjing
2022-04-26 14:17:48 +08:00
parent d7cb903c17
commit 8c54d439eb
3 changed files with 192 additions and 21 deletions

View File

@@ -0,0 +1,36 @@
<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>