Commit dbb46eb1 authored by 华国豪's avatar 华国豪 🙄

1

parent 209c0f8e
...@@ -894,14 +894,27 @@ export default { ...@@ -894,14 +894,27 @@ export default {
methods:{ methods:{
// 催审 // 催审
cuishen: function (cmd, id) { cuishen: function (cmd, id) {
this.apipost(cmd,{FrId: id},res=>{ this.$confirm('确定催审?', this.$t('tips.tips'), {
if(res.data.resultCode==1){ confirmButtonText: this.$t('pub.sureBtn'),
this.Success(res.data.message); cancelButtonText: this.$t('pub.cancelBtn'),
this.getPageList(); type: 'warning'
}else{ }).then(() => {
this.Error(res.data.message); this.loading= true
} this.apipost(cmd,{FrId: id},res=>{
},err=>{}) if(res.data.resultCode==1){
this.Success(res.data.message);
this.getPageList();
}else{
this.Error(res.data.message);
}
},err=>{})
}).catch(() => {
this.$message({
type: 'info',
message: this.$t('ios.yi') + this.$t('pub.cancelBtn')
});
});
}, },
//转交 //转交
getExchange(FrID){ getExchange(FrID){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment