|
@@ -988,10 +988,11 @@ import XLSX from "xlsx";
|
|
|
},
|
|
|
async customerRecquerry(){
|
|
|
console.log(this.customerRec);
|
|
|
- if(this.customerRec['companyName'] == null || this.customerRec['companyReferencenum'] == null){
|
|
|
+ if(this.customerRec['companyName'] == null || this.customerRec['companyReferencenum'] == null
|
|
|
+ || this.customerRec['companyType'] == null){
|
|
|
this.$message({
|
|
|
type: 'error',
|
|
|
- message: '需要填写公司名称和税号'
|
|
|
+ message: '需要填写公司名称、税号和公司类型'
|
|
|
});
|
|
|
}else{
|
|
|
const response = await this.$http.post(`customer/customeRecQueryUpper`, this.customerRec);
|