|
@@ -387,6 +387,7 @@ import AddBill from "@/views/service/bill/addBill";
|
|
|
import EditBill from "@/views/service/bill/editBill";
|
|
|
import {isOpenApproval} from "@/api/service/credit/approvalRelatedCredit";
|
|
|
import {contractSigning} from "@/api/service/credit/message";
|
|
|
+import { listCompanyHandler } from "@/api/common/companyHandler";
|
|
|
import { amtformat } from "@/utils/amtCommon";
|
|
|
import pdfShow from "./pdfShow";
|
|
|
import Cookies from 'js-cookie';
|
|
@@ -1380,6 +1381,9 @@ export default {
|
|
|
text: 'Loading',
|
|
|
background: 'rgba(0, 0, 0,0)'
|
|
|
});
|
|
|
+
|
|
|
+ listCompanyHandler().then((response) => {
|
|
|
+ if (response.data == true) {
|
|
|
contractSigning(this.form).then((response) => {
|
|
|
loading.close();
|
|
|
const zfiId = this.$route.params && this.$route.params.zfiId;
|
|
@@ -1409,6 +1413,14 @@ export default {
|
|
|
}).catch((response) => {
|
|
|
loading.close();
|
|
|
});
|
|
|
+ } else {
|
|
|
+ loading.close();
|
|
|
+ this.$message({
|
|
|
+ message: "此操作需经办人权限,请确认您是否是经办人",
|
|
|
+ type: 'warning'
|
|
|
+ });
|
|
|
+ }
|
|
|
+ });
|
|
|
},
|
|
|
//去融资
|
|
|
goFinance(){
|