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

1

parent 209c0f8e
...@@ -894,6 +894,12 @@ export default { ...@@ -894,6 +894,12 @@ export default {
methods:{ methods:{
// 催审 // 催审
cuishen: function (cmd, id) { cuishen: function (cmd, id) {
this.$confirm('确定催审?', this.$t('tips.tips'), {
confirmButtonText: this.$t('pub.sureBtn'),
cancelButtonText: this.$t('pub.cancelBtn'),
type: 'warning'
}).then(() => {
this.loading= true
this.apipost(cmd,{FrId: id},res=>{ this.apipost(cmd,{FrId: id},res=>{
if(res.data.resultCode==1){ if(res.data.resultCode==1){
this.Success(res.data.message); this.Success(res.data.message);
...@@ -902,6 +908,13 @@ export default { ...@@ -902,6 +908,13 @@ export default {
this.Error(res.data.message); this.Error(res.data.message);
} }
},err=>{}) },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