|
@@ -177,11 +177,20 @@ import XLSX from "xlsx";
|
|
|
spinner: 'el-icon-loading',
|
|
|
background: 'rgba(0, 0, 0, 0.7)'
|
|
|
});
|
|
|
- let curr = this.current;
|
|
|
- let pagesize1 = this.pagesize;
|
|
|
- this.current = 1;
|
|
|
- this.pagesize = this.total;
|
|
|
- await this.loadData();
|
|
|
+
|
|
|
+ var recodes = [];
|
|
|
+ for(var j=1;j<=this.total/10000+1;j++){
|
|
|
+ const formData = new FormData();
|
|
|
+ formData.append('current', j);
|
|
|
+ formData.append('size', 10000);
|
|
|
+ for(var i in this.formCondition){
|
|
|
+ formData.append(i,this.formCondition[i]);
|
|
|
+ }
|
|
|
+ const response = await this.$http.post(`noCar/findNocarCalculateInfo`, formData);
|
|
|
+ if (response.data.code === 0) {
|
|
|
+ recodes = recodes.concat(response.data.data.records);
|
|
|
+ }
|
|
|
+ }
|
|
|
// 设置当前日期
|
|
|
let time = new Date();
|
|
|
//console.log(time);
|
|
@@ -189,32 +198,42 @@ import XLSX from "xlsx";
|
|
|
let month = time.getMonth() + 1;
|
|
|
let day = time.getDate();
|
|
|
let name = "无车计费查询列表_"+year + "" + month + "" + day;
|
|
|
- // console.log(name)
|
|
|
- /* generate workbook object from table */
|
|
|
- // .table要导出的是哪一个表格
|
|
|
- var wb = XLSX.utils.table_to_book(document.querySelector(".table"),{ raw: true });
|
|
|
- this.formartNum(wb);
|
|
|
- /* get binary string as output */
|
|
|
- var wbout = XLSX.write(wb, {
|
|
|
- bookType: "xlsx",
|
|
|
- bookSST: true,
|
|
|
- type: "array"
|
|
|
- });
|
|
|
- try {
|
|
|
- // name+'.xlsx'表示导出的excel表格名字
|
|
|
- FileSaver.saveAs(
|
|
|
- new Blob([wbout], { type: "application/octet-stream" }),
|
|
|
- name + ".xlsx"
|
|
|
- );
|
|
|
- } catch (e) {
|
|
|
- if (typeof console !== "undefined") console.log(e, wbout);
|
|
|
- }
|
|
|
- this.current = curr;
|
|
|
- this.pagesize = pagesize1;
|
|
|
- this.loadData();
|
|
|
- loading.close();
|
|
|
- return wbout;
|
|
|
+ let cloums = [
|
|
|
+ {"title":"主体名称","key":"companyLongName"},
|
|
|
+ {"title":"购方名称","key":"buyerName"},
|
|
|
+ {"title":"购方税号","key":"buyerTaxpayerCode"},
|
|
|
+ {"title":"交易Id","key":"tradeId"},
|
|
|
+ {"title":"费用","key":"fee"},
|
|
|
+ {"title":"计费时间","key":"calculateTime"},
|
|
|
+ {"title":"开票时间","key":"invoiceMakeTime"},
|
|
|
+ ];
|
|
|
+ await this.exportExcelComm(cloums,recodes,name,loading);
|
|
|
},
|
|
|
+ // 导出Excel
|
|
|
+ exportExcelComm(columns,list,excelName,loading){
|
|
|
+ require.ensure([], () => {
|
|
|
+ const { export_json_to_excel } = require('@/vendor/Export2Excel');
|
|
|
+ let tHeader = []
|
|
|
+ let filterVal = []
|
|
|
+ columns.forEach(item =>{
|
|
|
+ tHeader.push(item.title)
|
|
|
+ filterVal.push(item.key)
|
|
|
+ })
|
|
|
+ for(var i =0;i<list.length/200000;i++){
|
|
|
+ const data = this.formatJson(filterVal, list.slice(i*200000,(i+1)*200000>list.length?list.length:(i+1)*200000));
|
|
|
+ export_json_to_excel(tHeader, data, excelName+'_'+i);
|
|
|
+ }
|
|
|
+
|
|
|
+ loading.close();
|
|
|
+ })
|
|
|
+ },
|
|
|
+ formatJson (filterVal, jsonData) {
|
|
|
+ return jsonData.map(v => filterVal.map(j => {
|
|
|
+ return v[j];
|
|
|
+
|
|
|
+ }));
|
|
|
+ },
|
|
|
+
|
|
|
}
|
|
|
};
|
|
|
</script>
|