|
@@ -775,7 +775,9 @@ export default {
|
|
|
const companyId = this.companyId;
|
|
|
const type = this.companyType;
|
|
|
const payDate = this.payDate;
|
|
|
- this.form.zbiPayDate = payDate
|
|
|
+ if(payDate){
|
|
|
+ this.form.zbiPayDate = payDate
|
|
|
+ }
|
|
|
getOwnCompany()
|
|
|
.then((response) => {
|
|
|
this.company = response.data;
|
|
@@ -842,7 +844,6 @@ export default {
|
|
|
});
|
|
|
if (
|
|
|
this.invoice &&
|
|
|
- this.invoice.ziiId &&
|
|
|
this.invoice.ziiCheckStt != "1"
|
|
|
) {
|
|
|
queryDouble(this.invoice).then((response) => {
|
|
@@ -854,7 +855,11 @@ export default {
|
|
|
});
|
|
|
// this.invoice = this.fileList[0] ? this.fileList[0] : {};
|
|
|
loading.close();
|
|
|
+ }).catch((response) => {
|
|
|
+ loading.close();
|
|
|
});
|
|
|
+ }else{
|
|
|
+ loading.close();
|
|
|
}
|
|
|
},
|
|
|
//去验真
|