|
@@ -928,9 +928,8 @@ import XLSX from "xlsx";
|
|
|
}
|
|
|
},
|
|
|
generateWord(){
|
|
|
- const BASEURL = "http://127.0.0.1:18080/"
|
|
|
const token = sessionStorage.getItem('token');
|
|
|
- window.open(BASEURL+'customer/generateWord?customerRecId='+this.customerRec['id']+'&token='+token);
|
|
|
+ window.open(hostUrl+'customer/generateWord?customerRecId='+this.customerRec['id']+'&token='+token);
|
|
|
},
|
|
|
async customerRecConform(){
|
|
|
const response = await this.$http.post(`customer/customeRec`, this.customerRec);
|
|
@@ -975,9 +974,8 @@ import XLSX from "xlsx";
|
|
|
}
|
|
|
},
|
|
|
contractDownload(){
|
|
|
- const BASEURL = "http://127.0.0.1:18080/"
|
|
|
const token = sessionStorage.getItem('token');
|
|
|
- window.open(BASEURL+'customer/contractDownload?customerRecId='+this.customerRec['id']+'&token='+token);
|
|
|
+ window.open(hostUrl+'customer/contractDownload?customerRecId='+this.customerRec['id']+'&token='+token);
|
|
|
},
|
|
|
// 列表展示
|
|
|
async loadData() {
|