|
@@ -729,7 +729,13 @@ export default {
|
|
|
},
|
|
|
//盖章
|
|
|
contractSigning(){
|
|
|
+ const loading = this.$loading({
|
|
|
+ lock: true,
|
|
|
+ text: 'Loading',
|
|
|
+ background: 'rgba(0, 0, 0,0)'
|
|
|
+ });
|
|
|
contractSigning(this.zcFinanceInf).then((response) => {
|
|
|
+ loading.close();
|
|
|
this.msgSuccess("盖章成功");
|
|
|
if(this.zfpAuthType == '02'){
|
|
|
//关闭短信验证
|
|
@@ -744,6 +750,7 @@ export default {
|
|
|
);
|
|
|
this.$router.go(-1);
|
|
|
}).catch((response) => {
|
|
|
+ loading.close();
|
|
|
});
|
|
|
}
|
|
|
|