|
@@ -235,6 +235,9 @@ import { myQuery } from '@/api/dataIntegration'
|
|
|
import { BaggageMessageQuery } from '@/api/flight'
|
|
|
import tableColsMixin from '../../mixins/tableCols'
|
|
|
import { throttledExportToExcel } from '@/utils/table'
|
|
|
+import * as XLSX from 'xlsx'
|
|
|
+import XLSX_STYLE from 'xlsx-style'
|
|
|
+import FileSaver from 'file-saver'
|
|
|
|
|
|
export default {
|
|
|
name: 'BaggageView',
|
|
@@ -348,12 +351,9 @@ export default {
|
|
|
}
|
|
|
],
|
|
|
baggageBasicInfo: {},
|
|
|
- dialogVisibledele: false,
|
|
|
- active: 2,
|
|
|
infoBtn: '',
|
|
|
infoRadios: ['跟踪信息', '跟踪报文'],
|
|
|
messageList: [],
|
|
|
- checkList: [],
|
|
|
stepNodes: [],
|
|
|
tableCols: [
|
|
|
{
|
|
@@ -624,11 +624,102 @@ export default {
|
|
|
},
|
|
|
exportHandler(refName, tableName) {
|
|
|
const table = this.$refs[refName].$el.cloneNode(true)
|
|
|
- const fileName = `${tableName}-${this.queryData.bagSN}-${this.queryData.flightNO}-${this.queryData.flightDate}.xlsx`
|
|
|
+ const { bagSN, flightNO, flightDate } = this.queryData
|
|
|
+ const fileName = `${tableName}-${bagSN}-${flightNO}-${flightDate}.xlsx`
|
|
|
throttledExportToExcel(table, tableName, fileName)
|
|
|
},
|
|
|
exportMessageToExcel() {
|
|
|
- this.$message.info('开发中')
|
|
|
+ const xlsxDatas = [['Date & Time', 'Message']]
|
|
|
+ xlsxDatas.push(
|
|
|
+ ...this.messageList.map(message => [
|
|
|
+ message.date,
|
|
|
+ message.dataContent.replaceAll(/[\r\n]{2,}/g, '\n').replaceAll('\\', '')
|
|
|
+ ])
|
|
|
+ )
|
|
|
+ const columnWidths = []
|
|
|
+ xlsxDatas.forEach(row => {
|
|
|
+ // 计算每一列宽度,考虑换行
|
|
|
+ row.forEach((cell, columnIndex) => {
|
|
|
+ const cellWidth = Math.max(
|
|
|
+ ...cell
|
|
|
+ .toString()
|
|
|
+ .split('\n')
|
|
|
+ .map(cellRow =>
|
|
|
+ cellRow.split('').reduce((pre, curr) => {
|
|
|
+ const letterSize = curr.charCodeAt(0) > 255 ? 2 : 1
|
|
|
+ return pre + letterSize
|
|
|
+ }, 0)
|
|
|
+ )
|
|
|
+ )
|
|
|
+ if ((!columnWidths[columnIndex] && cellWidth > 0) || cellWidth > columnWidths[columnIndex]) {
|
|
|
+ columnWidths[columnIndex] = cellWidth
|
|
|
+ }
|
|
|
+ })
|
|
|
+ })
|
|
|
+ // 生成表格数据
|
|
|
+ const sheet = XLSX.utils.aoa_to_sheet(xlsxDatas)
|
|
|
+ // 添加列宽度
|
|
|
+ sheet['!cols'] = columnWidths.map(width => ({
|
|
|
+ wch: width + 2
|
|
|
+ }))
|
|
|
+ // 表格对齐、添加边框
|
|
|
+ const borderStyle = {
|
|
|
+ style: 'medium',
|
|
|
+ color: {
|
|
|
+ rgb: 'FFFFFF'
|
|
|
+ }
|
|
|
+ }
|
|
|
+ const reg = /^[A-Z]+([\d]+$)/
|
|
|
+ for (const key in sheet) {
|
|
|
+ const match = reg.test(key)
|
|
|
+ if (match) {
|
|
|
+ const rowIndex = reg.exec(key)[1]
|
|
|
+ let cellStyle = {
|
|
|
+ alignment: {
|
|
|
+ horizontal: 'center',
|
|
|
+ vertical: 'center',
|
|
|
+ wrapText: true
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (Number(rowIndex) === 1) {
|
|
|
+ cellStyle = {
|
|
|
+ ...cellStyle,
|
|
|
+ border: {
|
|
|
+ top: borderStyle,
|
|
|
+ right: borderStyle,
|
|
|
+ bottom: borderStyle,
|
|
|
+ left: borderStyle
|
|
|
+ },
|
|
|
+ font: {
|
|
|
+ color: {
|
|
|
+ rgb: 'FFFFFF'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ fill: {
|
|
|
+ fgColor: {
|
|
|
+ rgb: '3366FF'
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ cellStyle.alignment.horizontal = 'left'
|
|
|
+ }
|
|
|
+ sheet[key].s = cellStyle
|
|
|
+ }
|
|
|
+ }
|
|
|
+ // 表格数据转换
|
|
|
+ const workBook = XLSX.utils.book_new()
|
|
|
+ XLSX.utils.book_append_sheet(workBook, sheet, '行李原始报文')
|
|
|
+ const tableWrite = XLSX_STYLE.write(workBook, {
|
|
|
+ bookType: 'xlsx',
|
|
|
+ bookSST: true,
|
|
|
+ type: 'buffer',
|
|
|
+ cellStyles: true
|
|
|
+ })
|
|
|
+ // 下载表格
|
|
|
+ const { bagSN, flightNO, flightDate } = this.queryData
|
|
|
+ const fileName = `行李原始报文-${bagSN}-${flightNO}-${flightDate}.xlsx`
|
|
|
+ FileSaver.saveAs(new Blob([tableWrite], { type: 'application/octet-stream' }), fileName)
|
|
|
},
|
|
|
// 行李详情基础信息
|
|
|
queryBaggageBasicInfo(dataContent) {
|