xg
This commit is contained in:
@@ -113,7 +113,7 @@
|
||||
</div>
|
||||
<!-- 风险解除 -->
|
||||
<!-- v-if="info.status == 3" -->
|
||||
<div class="item-wrapper">
|
||||
<div class="item-wrapper" v-if="info.status == 3">
|
||||
<div class="item-header">
|
||||
<div class="left">
|
||||
<h2>风险解除跟踪</h2>
|
||||
|
||||
@@ -93,9 +93,9 @@ export default {
|
||||
}
|
||||
}
|
||||
|
||||
let fromData = new FormData()
|
||||
var formData = new FormData()
|
||||
for (let key in params) {
|
||||
fromData.append(key, params[key])
|
||||
formData.append(key, params[key])
|
||||
}
|
||||
this.$http.post(url , formData).then(res => {
|
||||
if (res.code === 0) {
|
||||
|
||||
@@ -112,31 +112,24 @@ export default {
|
||||
current: img
|
||||
})
|
||||
},
|
||||
|
||||
submit() {
|
||||
if (this.type == 0) { // 纳入审核
|
||||
this.$http.post(`/app/apppreventionreturntopoverty/examine`,null,{
|
||||
params: {
|
||||
var url = `/app/apppreventionreturntopoverty/examine`
|
||||
var params = {
|
||||
...this.form,
|
||||
id: this.id,
|
||||
}
|
||||
}).then(res => {
|
||||
if (res.code == 0) {
|
||||
this.$u.toast('提交成功')
|
||||
uni.$emit('reload')
|
||||
setTimeout(() =>{
|
||||
uni.navigateBack({
|
||||
delta: 2
|
||||
})
|
||||
},600)
|
||||
}
|
||||
})
|
||||
} else if (this.type == 1){ // 解除审核
|
||||
this.$http.post(`/app/apppreventionreturntopoverty/relieve`,null,{
|
||||
params: {
|
||||
...this.form,
|
||||
id: this.id,
|
||||
url = `/app/apppreventionreturntopoverty/relieve`
|
||||
}
|
||||
}).then(res => {
|
||||
|
||||
var formData = new FormData()
|
||||
for (let key in params) {
|
||||
formData.append(key, params[key])
|
||||
}
|
||||
|
||||
this.$http.post(url,formData).then(res => {
|
||||
if (res.code == 0) {
|
||||
this.$u.toast('提交成功')
|
||||
uni.$emit('reload')
|
||||
@@ -148,7 +141,6 @@ export default {
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user