jf
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
<div class="Reject">
|
||||
<div class="text-area">
|
||||
<div class="title">不通过理由</div>
|
||||
<textarea placeholder="请输入" maxlength="200"></textarea>
|
||||
<textarea placeholder="请输入" maxlength="200" v-model="value"></textarea>
|
||||
</div>
|
||||
<div class="footer" @click="submit">
|
||||
<div class="btn">保存</div>
|
||||
@@ -16,17 +16,26 @@ export default {
|
||||
data() {
|
||||
return {
|
||||
value: '',
|
||||
id: ''
|
||||
};
|
||||
},
|
||||
onShow() {
|
||||
document.title = '村民圈审核'
|
||||
},
|
||||
onLoad(option) {
|
||||
// this.id = option.id
|
||||
onLoad(o) {
|
||||
this.id = o.id
|
||||
},
|
||||
methods: {
|
||||
submit() {
|
||||
|
||||
this.$http.post('/app/appvillagercircleinfo/examine',null, {
|
||||
params: {
|
||||
id: this.id,
|
||||
pass: 0,
|
||||
opinion: this.value
|
||||
}
|
||||
}).then(res => {
|
||||
console.log(res);
|
||||
})
|
||||
}
|
||||
},
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user