|
@@ -253,6 +253,12 @@ export default{
|
|
this.formList.startTime = this.formList.invoiceMakeTime[0];
|
|
this.formList.startTime = this.formList.invoiceMakeTime[0];
|
|
this.formList.endTime = this.formList.invoiceMakeTime[1];
|
|
this.formList.endTime = this.formList.invoiceMakeTime[1];
|
|
}
|
|
}
|
|
|
|
+ const loading = this.$loading({
|
|
|
|
+ lock: true,
|
|
|
|
+ text: '系统正在努力接收中,过程大概需要几分钟的时间,请您耐心等待...',
|
|
|
|
+ spinner: 'el-icon-loading',
|
|
|
|
+ background: 'rgba(0, 0, 0, 0.7)'
|
|
|
|
+ });
|
|
const response = await this.$http.post(`/selfCar/findSelfcarInvoiceByTime`, this.formList);
|
|
const response = await this.$http.post(`/selfCar/findSelfcarInvoiceByTime`, this.formList);
|
|
var {data: { code, msg, data }} = response;
|
|
var {data: { code, msg, data }} = response;
|
|
if(code === 0) {
|
|
if(code === 0) {
|
|
@@ -263,6 +269,7 @@ export default{
|
|
}else{
|
|
}else{
|
|
this.$message.error(msg);
|
|
this.$message.error(msg);
|
|
}
|
|
}
|
|
|
|
+ loading.close();
|
|
},
|
|
},
|
|
async initCompanyList(){
|
|
async initCompanyList(){
|
|
const response = await this.$http.post(`lowerService/customeRecQueryList`, {"customerName":sessionStorage.getItem('userName')});
|
|
const response = await this.$http.post(`lowerService/customeRecQueryList`, {"customerName":sessionStorage.getItem('userName')});
|