优化督办后的提示
parent
09979bc52f
commit
b31e21d30a
|
@ -163,11 +163,13 @@
|
||||||
reexamineEv(){
|
reexamineEv(){
|
||||||
this.$requst.post('/api/administrator/examine',{id:this.id}).then(res => {
|
this.$requst.post('/api/administrator/examine',{id:this.id}).then(res => {
|
||||||
if(res.code==0){
|
if(res.code==0){
|
||||||
console.log(res,'督办复审');
|
this.$toolAll.tools.showToast('督办成功');
|
||||||
// 返回
|
setTimeout(()=>{
|
||||||
uni.navigateBack({
|
// 返回
|
||||||
delta:1
|
uni.navigateBack({
|
||||||
})
|
delta:1
|
||||||
|
})
|
||||||
|
},500)
|
||||||
} else {
|
} else {
|
||||||
this.$toolAll.tools.showToast(res.msg);
|
this.$toolAll.tools.showToast(res.msg);
|
||||||
}
|
}
|
||||||
|
|
|
@ -133,7 +133,8 @@
|
||||||
reexamineEv(id){
|
reexamineEv(id){
|
||||||
this.$requst.post('administrator/examine',{id:id}).then(res => {
|
this.$requst.post('administrator/examine',{id:id}).then(res => {
|
||||||
if(res.code==0){
|
if(res.code==0){
|
||||||
this.$toolAll.tools.showToast('审核成功');
|
this.$toolAll.tools.showToast('督办成功');
|
||||||
|
this.getListEv();
|
||||||
} else {
|
} else {
|
||||||
this.$toolAll.tools.showToast(res.msg);
|
this.$toolAll.tools.showToast(res.msg);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue