Browse Source

新增导出

dev-xx
qb 5 months ago
parent
commit
130e17f828
  1. 6
      package.json
  2. 22
      src/components/ArteryPrintTemplate/ArteryPrintTemplate.vue
  3. 16
      src/components/TripartiteTransferPrintTemplate/TripartiteTransferPrintTemplate.vue
  4. 266
      src/components/tablecmt/tablecmt.vue
  5. 180
      src/utils/export.js
  6. 19
      src/views/distribution/artery/TripartiteTransfer.vue
  7. 19
      src/views/distribution/artery/VehicleArrivalManagement.vue
  8. 18
      src/views/distribution/artery/VehicleStowage.vue
  9. 77
      src/views/distribution/artery/VehicleStowageDetails.vue

6
package.json

@ -19,6 +19,7 @@
"crypto-js": "^4.1.1",
"dayjs": "^1.10.6",
"element-plus": "^2.3.1",
"file-saver": "^2.0.5",
"html2canvas": "^1.4.1",
"js-base64": "^3.7.4",
"js-cookie": "^3.0.0",
@ -34,7 +35,8 @@
"vue-i18n": "^9.1.9",
"vue-qr": "^4.0.9",
"vue-router": "^4.2.4",
"vuex": "^4.0.2"
"vuex": "^4.0.2",
"xlsx-style-vite": "^0.0.2"
},
"devDependencies": {
"@vitejs/plugin-vue": "^1.3.0",
@ -46,6 +48,6 @@
"vite": "^5.4.2",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-vue-setup-extend": "^0.4.0",
"xlsx": "0.18.5"
"xlsx": "^0.18.5"
}
}

22
src/components/ArteryPrintTemplate/ArteryPrintTemplate.vue

@ -226,22 +226,12 @@
<td style="border-bottom: 1px solid #000; border-left: 1px solid #000"></td>
<td style="border-bottom: 1px solid #000; border-left: 1px solid #000"></td>
</tr>
<tr>
<td
style="border-bottom: 1px solid #000; border-left: 1px solid #000"
:colspan="17 + goodsTitleList.length"
contenteditable
>
<span style="display: inline-block; margin-right: 20px; min-width: 200px">
投诉电话4000184668
</span>
<span style="display: inline-block; margin-right: 20px; min-width: 200px">
营业部电话
</span>
<span style="display: inline-block; margin-right: 20px; min-width: 200px">
系统单调度
</span>
</td>
<tr style="border-bottom: 1px solid #000; border-left: 1px solid #000">
<td :colspan="6" contenteditable>投诉电话4000184668</td>
<td :colspan="6" contenteditable>营业部电话</td>
<td :colspan="5 + goodsTitleList.length" contenteditable>系统单调度</td>
</tr>
</table>
</div>

16
src/components/TripartiteTransferPrintTemplate/TripartiteTransferPrintTemplate.vue

@ -7,11 +7,11 @@
<thead>
<tr>
<th colspan="4">
<img src="" alt="暂无图片" />
<img style="height: 40px" src="../../../public/img/htlogo.png" alt="暂无图片" />
</th>
<th colspan="6">干线装载清单</th>
<th colspan="6" style="font-size: 20px">中转装载清单</th>
<th :colspan="3 + goodsTitleList.length + 1">
<img id="imgcode" />
<img id="imgcode" :src="renderInfo.carsNoBase64" />
<div>{{ renderInfo.carsNo }}</div>
</th>
</tr>
@ -106,11 +106,11 @@
<td></td>
</tr>
<tr>
<td :colspan="14 + goodsTitleList.length">
<span style="display: inline-block; margin-right: 20px"> 投诉电话4000184668 </span>
<span style="display: inline-block; margin-right: 20px"> 营业部售后电话 </span>
<span style="display: inline-block; margin-right: 20px"> 系统单调度 </span>
</td>
<td :colspan="5">投诉电话4000184668</td>
<td :colspan="5">营业部售后电话</td>
<td :colspan="4 + goodsTitleList.length">系统单调度</td>
</tr>
</tbody>
</table>

266
src/components/tablecmt/tablecmt.vue

@ -30,95 +30,97 @@
<!-- <template #header>
<el-text class="mx-1">{{ column.label }}</el-text>
</template> -->
<el-table-column
:type="column.type == 12 ? 'index' : ''"
:min-width="column.width"
:prop="column.prop"
:label="column.label"
v-if="column.type != 0"
flexible
show-overflow-tooltip
class="el_boxsa"
>
<template #header>
<el-text class="el_placeholder" v-if="column.type == 1">&nbsp</el-text>
<el-text
v-if="column.type == 1 || column.type == 0 || column.type == 12 || column.type == 6"
class="mx-1"
></el-text>
<el-icon v-if="column.type == 12 && props.isShowRefresh === true" @click="handleRefresh"
><RefreshRight
/></el-icon>
<el-input
v-if="column.type == 2 || column.type == 13"
v-model.trim="column.values"
clearable
:placeholder="`请输入${column.label}`"
@change="inputchange($event, column)"
@keyup.enter="handleInput"
/>
<el-select
v-else-if="column.type == 3 || column.type == 14"
v-model="column.values"
filterable
class="m-2 selectbr"
clearable
:placeholder="`请选择${column.label}`"
@change="selectchange($event, column)"
>
<el-option
v-for="item in column.checkarr"
:key="item.value"
:label="item.label"
:value="item.value"
<template v-if="column.type != 0 && column.type !== 30">
<el-table-column
:type="column.type == 12 ? 'index' : ''"
:min-width="column.width"
:prop="column.prop"
:label="column.label"
flexible
show-overflow-tooltip
class="el_boxsa"
>
<template #header>
<el-text class="el_placeholder" v-if="column.type == 1">&nbsp</el-text>
<el-text
v-if="column.type == 1 || column.type == 0 || column.type == 12 || column.type == 6"
class="mx-1"
></el-text>
<el-icon
v-if="column.type == 12 && props.isShowRefresh === true"
@click="handleRefresh"
><RefreshRight
/></el-icon>
<el-input
v-if="column.type == 2 || column.type == 13"
v-model.trim="column.values"
clearable
:placeholder="`请输入${column.label}`"
@change="inputchange($event, column)"
@keyup.enter="handleInput"
/>
</el-select>
<el-date-picker
v-model="column.values"
v-else-if="column.type == 4"
type="date"
clearable
style="width: auto; height: 23px !important"
:placeholder="`请选择${column.label}`"
@change="timechange($event, column)"
/>
<el-date-picker
v-model="column.values"
v-else-if="column.type == 5"
type="datetime"
clearable
style="width: auto"
size="default"
:placeholder="`请选择${column.label}`"
format="YYYY/MM/DD HH:mm:ss"
@change="timechange($event, column)"
/>
<span v-else></span>
</template>
<template #default="scope">
<el-text
@click.stop
@dblclick.stop="Copytxt(scope.row[column.prop])"
class="mx-2 tabculconte"
:class="
scope.row[column.prop] == props.searchInput && scope.row[column.prop]
? 'static-class'
: ''
"
:id="scope.row[column.prop]"
v-if="Number(column.type) < 6 && Number(column.type) > 0"
>{{ scope.row[column.prop] }}</el-text
>
<el-switch
@change="makeCargo(scope.row, column)"
v-else-if="column.type == 11"
v-model="scope.row[column.prop]"
/>
<!-- <el-text
<el-select
v-else-if="column.type == 3 || column.type == 14"
v-model="column.values"
filterable
class="m-2 selectbr"
clearable
:placeholder="`请选择${column.label}`"
@change="selectchange($event, column)"
>
<el-option
v-for="item in column.checkarr"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-select>
<el-date-picker
v-model="column.values"
v-else-if="column.type == 4"
type="date"
clearable
style="width: auto; height: 23px !important"
:placeholder="`请选择${column.label}`"
@change="timechange($event, column)"
/>
<el-date-picker
v-model="column.values"
v-else-if="column.type == 5"
type="datetime"
clearable
style="width: auto"
size="default"
:placeholder="`请选择${column.label}`"
format="YYYY/MM/DD HH:mm:ss"
@change="timechange($event, column)"
/>
<span v-else></span>
</template>
<template #default="scope">
<el-text
@click.stop
@dblclick.stop="Copytxt(scope.row[column.prop])"
class="mx-2 tabculconte"
:class="
scope.row[column.prop] == props.searchInput && scope.row[column.prop]
? 'static-class'
: ''
"
:id="scope.row[column.prop]"
v-if="Number(column.type) < 6 && Number(column.type) > 0"
>{{ scope.row[column.prop] }}</el-text
>
<el-switch
@change="makeCargo(scope.row, column)"
v-else-if="column.type == 11"
v-model="scope.row[column.prop]"
/>
<!-- <el-text
class="mx-2 tabculconte"
v-for="item in column.checkarr"
v-if="Number(column.type) < 6 && Number(column.type) > 0"
@ -126,37 +128,37 @@
<span v-if="item.value==scope.row[column.prop]">{{ item.label }}</span>
</el-text
> -->
<el-text
style=""
class="mx-2 tabculconte colors"
v-else-if="column.type == 9"
@click="godowns(scope.row[column.downprop])"
>{{ scope.row[column.prop] }}</el-text
>
<el-input
@blur="handleNumberRange(column, scope.row)"
v-else-if="column.type == 10"
v-model.trim="scope.row[column.prop]"
type="number"
:min="0"
:max="scope.row.residueNumber"
></el-input>
<div
class="slotbuts"
v-else-if="column.type == 6 || column.type == 13 || column.type == 14"
>
<slot :scope="scope"> </slot>
</div>
<el-input
v-else-if="column.type == 15"
v-model.trim="scope.row[column.prop]"
style="width: 100%"
:placeholder="'请输入' + column.label"
:disabled="!scope.row.disabled"
clearable
/>
<!-- <el-image
<el-text
style=""
class="mx-2 tabculconte colors"
v-else-if="column.type == 9"
@click="godowns(scope.row[column.downprop])"
>{{ scope.row[column.prop] }}</el-text
>
<el-input
@blur="handleNumberRange(column, scope.row)"
v-else-if="column.type == 10"
v-model.trim="scope.row[column.prop]"
type="number"
:min="0"
:max="scope.row.residueNumber"
></el-input>
<div
class="slotbuts"
v-else-if="column.type == 6 || column.type == 13 || column.type == 14"
>
<slot :scope="scope"> </slot>
</div>
<el-input
v-else-if="column.type == 15"
v-model.trim="scope.row[column.prop]"
style="width: 100%"
:placeholder="'请输入' + column.label"
:disabled="!scope.row.disabled"
clearable
/>
<!-- <el-image
preview-teleported
v-else-if="column.type == 7"
style="width: 60px; height: 60px; margin-left: 10px"
@ -166,19 +168,19 @@
:src="item"
:preview-src-list="scope.row[column.prop].split(',')"
/> -->
<el-image
preview-teleported
v-else-if="column.type == 7"
style="width: 60px; height: 60px; margin-left: 10px"
:initial-index="index"
:z-index="100"
v-for="(item, index) in scope.row[column.prop]?.split(',')"
:src="item"
:preview-src-list="scope.row[column.prop]?.split(',')"
/>
</template>
</el-table-column>
<el-image
preview-teleported
v-else-if="column.type == 7"
style="width: 60px; height: 60px; margin-left: 10px"
:initial-index="index"
:z-index="100"
v-for="(item, index) in scope.row[column.prop]?.split(',')"
:src="item"
:preview-src-list="scope.row[column.prop]?.split(',')"
/>
</template>
</el-table-column>
</template>
<template #header>
<div style="display: inline-block">
<div class="tilbox">

180
src/utils/export.js

@ -0,0 +1,180 @@
import * as XLSX from 'xlsx';
import FileSaver from 'file-saver';
import XLSXS from 'xlsx-style-vite';
import { getObjType, isNumber } from '@/utils/util';
/**
* 根据DOM进行导出
* @param {Element} dom
* @param {String} fileName
*/
export function exportExcelByDom(dom, fileName) {
const book = XLSX.utils.book_new();
const sheet = XLSX.utils.table_to_sheet(dom);
XLSX.utils.book_append_sheet(book, sheet, 'Sheet1');
addRangeBorder(sheet['!merges'], sheet); // 给合并行列赋值样式
setExcelStyle(sheet); // 设置样式
let wbout = XLSXS.write(book, {
bookType: 'xlsx',
bookSST: false,
type: 'binary',
});
try {
FileSaver.saveAs(new Blob([s2ab(wbout)], { type: 'application/octet-stream' }), fileName);
} catch (e) {
console.error(e, wbout, '----->>>');
}
}
// 设置导出Excel样式(统一样式)
function setExcelStyle(data, wpx = 80) {
data['!cols'] = [];
const excludes = ['!cols', '!fullref', '!merges', '!ref', '!rows'];
console.log('data :>> ', data);
for (let key in data) {
if (data.hasOwnProperty(key)) {
if (!excludes.includes(key)) {
data[key].s = {
alignment: {
horizontal: 'center', //水平居中对齐
vertical: 'center', // 垂直居中
wrapText: true,
},
border: {
top: {
style: 'thin',
color: { rgb: '000000' },
},
bottom: {
style: 'thin',
color: { rgb: '000000' },
},
left: {
style: 'thin',
color: { rgb: '000000' },
},
right: {
style: 'thin',
color: { rgb: '000000' },
},
},
// fill: {
// fgColor: { rgb: "00a2ff" },
// },
font: {
sz: 11,
color: {
rgb: '000000',
},
},
bold: true,
numFmt: 0,
};
const _text = data[key].v;
getObjType(_text) === 'string' && (data[key].v = _text.replace('-->', ''));
// 单元格宽度
data['!cols'].push({ wpx });
// 根据不同行添加单元格背景颜色
let color = 'ffffff';
// 文字颜色
let textColor = '000000';
let num = Number(key.slice(1));
num = isNumber(num) ? num : Number(key.slice(2));
if (num === 1) {
color = '172e60';
textColor = 'ffffff';
data[key].s.font.sz = 16;
} else {
}
data[key].s.fill = {
fgColor: { rgb: color, patternType: 'solid' },
};
data[key].s.font.color.rgb = textColor;
}
}
}
}
//给合并行列赋值样式
function addRangeBorder(range, ws) {
let cols = [
'A',
'B',
'C',
'D',
'E',
'F',
'G',
'H',
'I',
'J',
'K',
'L',
'M',
'N',
'O',
'P',
'Q',
'R',
'S',
'T',
'U',
'V',
'W',
'X',
'Y',
'Z',
'AA',
'AB',
'AC',
'AD',
'AE',
'AF',
'AG',
];
console.log('range :>> ', range);
range.forEach(item => {
console.log('item :>> ', item);
let style = {
s: {
border: {
top: {
style: 'thin',
color: { rgb: '000000' },
},
bottom: {
style: 'thin',
color: { rgb: '000000' },
},
left: {
style: 'thin',
color: { rgb: '000000' },
},
right: {
style: 'thin',
color: { rgb: '000000' },
},
},
},
};
// 处理合并行
for (let i = item.s.c; i <= item.e.c; i++) {
ws[`${cols[i]}${Number(item.e.r) + 1}`] = ws[`${cols[i]}${Number(item.e.r) + 1}`] || style;
// 处理合并列
for (let k = item.s.r + 2; k <= item.e.r + 1; k++) {
// console.log(' ws[cols[k] + item.e.r] :>> ', ws[cols[k] + item.e.r]);
ws[cols[i] + k] = ws[cols[i] + k] || style;
}
}
});
return ws;
}
function s2ab(s) {
var buf = new ArrayBuffer(s.length);
var view = new Uint8Array(buf);
for (var i = 0; i != s.length; ++i) view[i] = s.charCodeAt(i) & 0xff;
return buf;
}

19
src/views/distribution/artery/TripartiteTransfer.vue

@ -116,14 +116,14 @@
</el-button>
<!-- 装载卸车清单(财务) -->
<el-button
<!-- <el-button
v-if="permissionObj.TripartiteTransfer_LoadingAndUnloadingList"
type="primary"
icon="Printer"
@click="searchReset()"
>
装载卸车清单(财务)
</el-button>
</el-button> -->
<!-- 发车 -->
<el-button
@ -425,6 +425,7 @@
}"
>
<TripartiteTransferPrintTemplate
ref="truckLoadingDetailNodeRef"
v-if="details.popUpShow.listOfLoadedWagons"
:waybillInfo="details.listOfLoadedWagonsData"
/>
@ -433,6 +434,9 @@
<el-button icon="el-icon-circle-close" @click="details.popUpShow.listOfLoadedWagons = false">
</el-button>
<el-button type="primary" icon="Download" @click="handleExportTruckLoadingDetail">
</el-button>
<el-button type="primary" icon="Printer" @click="handlePrint"> </el-button>
</div>
</el-dialog>
@ -535,6 +539,8 @@ import { useRouter } from 'vue-router';
import type { UploadProps } from 'element-plus';
import { getToken } from '@/utils/auth';
import { compressImageBlob } from '@/components/IMGcompressor/imgcompressor.js';
import { dateNow } from '@/utils/date';
import { exportExcelByDom } from '@/utils/export';
import print from '@/utils/print';
//
@ -692,6 +698,7 @@ const details = reactive<any>({
/** 表格实例 */
const tableNode = ref();
const truckLoadingDetailNodeRef = ref();
// details.columnList.payMethodName.checkArr = details.payMethodOptions;
const { search, query, shortcuts, data, loadingObj, selectionList, drawerShow, page, popUpShow } =
@ -1486,6 +1493,14 @@ const handlePrint = () => {
print(nodeList);
};
/** 装车清单导出 */
const handleExportTruckLoadingDetail = () => {
exportExcelByDom(
truckLoadingDetailNodeRef.value.$el,
details.selectionList[0].carsNo + '' + dateNow() + '.xlsx'
);
};
</script>
<style scoped lang="scss">

19
src/views/distribution/artery/VehicleArrivalManagement.vue

@ -575,14 +575,21 @@
}"
>
<ArteryPrintTemplate
ref="truckLoadingDetailNodeRef"
v-if="details.popUpShow.listOfLoadedWagons"
:waybillInfo="details.listOfLoadedWagonsData"
/>
</div>
<div class="flex-c-c mt10">
<el-button icon="el-icon-circle-close" @click="details.popUpShow.listOfLoadedWagons = false">
</el-button>
<el-button type="primary" icon="Download" @click="handleExportTruckLoadingDetail">
</el-button>
<el-button type="primary" icon="Printer" @click="handlePrint"> </el-button>
</div>
</el-dialog>
@ -673,6 +680,8 @@ import { getListName } from '@/api/basicdata/basicdataVehicle';
import { useRouter, useRoute } from 'vue-router';
import { ElMessage, ElMessageBox } from 'element-plus';
import print from '@/utils/print';
import { exportExcelByDom } from '@/utils/export';
import { dateNow } from '@/utils/date';
//
const $router = useRouter();
@ -684,6 +693,8 @@ const Mydata = ref<any>({});
Mydata.value = JSON.parse(localStorage.getItem('my_data')); //
const truckLoadingDetailNodeRef = ref();
const details = reactive({
/** 是否开启搜索 */
search: false,
@ -1658,6 +1669,14 @@ const handlePrint = () => {
print(nodeList);
};
/** 装车清单导出 */
const handleExportTruckLoadingDetail = () => {
exportExcelByDom(
truckLoadingDetailNodeRef.value.$el,
details.selectionList[0].carsNo + ' - ' + dateNow() + '.xlsx'
);
};
/** 配载图片显示 */
const handleShowVehicleImgs = async ({ row }) => {};
</script>

18
src/views/distribution/artery/VehicleStowage.vue

@ -570,6 +570,7 @@
<ArteryPrintTemplate
v-if="details.popUpShow.listOfLoadedWagons"
:waybillInfo="details.listOfLoadedWagonsData"
ref="truckLoadingDetailNodeRef"
/>
</div>
<div class="dialog-footer">
@ -579,6 +580,11 @@
>
</el-button>
<el-button type="primary" icon="Download" @click="handleExportTruckLoadingDetail">
</el-button>
<el-button type="primary" icon="Printer" @click="handlePrint"> </el-button>
</div>
</div>
@ -629,6 +635,9 @@ import { useStore } from 'vuex';
import { useRouter, useRoute } from 'vue-router';
import { ElMessage, ElMessageBox } from 'element-plus';
import print from '@/utils/print';
import { dateNow } from '@/utils/date';
import { exportExcelByDom } from '@/utils/export';
// import * as XLSX from 'xlsx';
//
const $router = useRouter();
@ -644,6 +653,7 @@ Mydata.value = JSON.parse(localStorage.getItem('my_data')); //获取本地仓库
console.log('Mydata :>> ', Mydata);
const tableNodeRef = ref();
const truckLoadingDetailNodeRef = ref();
const details = reactive<any>({
/** 是否开启搜索 */
@ -1515,6 +1525,14 @@ const handlePrint = () => {
print(nodeList);
};
/** 装车清单导出 */
const handleExportTruckLoadingDetail = () => {
exportExcelByDom(
truckLoadingDetailNodeRef.value.$el,
details.selectionList[0].carsNo + ' - ' + dateNow() + '.xlsx'
);
};
/** 配载图片显示 */
const handleShowVehicleImgs = async ({ row }) => {
$router.push({

77
src/views/distribution/artery/VehicleStowageDetails.vue

@ -181,9 +181,11 @@
>
成本分摊确认
</el-button>
<el-button type="primary" icon="Download" @click="tcTableexport = true">
<!-- <el-button type="primary" icon="Download" @click="tcTableexport = true">
导出
</el-button>
</el-button> -->
<el-button type="primary" icon="Download" @click="handleExport"> 导出 </el-button>
</div>
<div class="avue-crud__right">
<el-button icon="el-icon-refresh" @click="searchChange" circle></el-button>
@ -213,41 +215,20 @@
</template>
</tablecmt>
<!-- <div class="flex">
<el-tabs
v-model="details.type"
tab-position="left"
style="height: 100%; width: fit-content; flex: none"
@tab-click="initOriginWarehouseOrder"
class="demo-tabs"
<div style="overflow: hidden; width: 0; height: 0">
<tablecmt
ref="exportColumnListNode"
:columnList="tableColumnList"
:tableData="detailsRenderData"
:arraySpanMethod="row => arraySpanMethod(row)"
>
<el-tab-pane label="实际数据" name="real"></el-tab-pane>
<el-tab-pane label="计划数据" name="plan"></el-tab-pane>
</el-tabs>
<div class="overflow">
<tablecmt
class="w100"
ref="oldColumnListNode"
:columnList="details.detailsColumnList"
:tableData="detailsRenderData"
:loading="loadingObj.oldListLoading"
@inputTxt="inputsc"
@timeCheck="timesc"
@selectCheck="selectsc"
@selection="selectionChange"
:arraySpanMethod="row => arraySpanMethod(row)"
>
<template #default="slotProps">
<template v-if="slotProps.scope.column.label === '运单号'">
<el-text @click="() => handleGoWayBillDetail(slotProps.scope)">{{
slotProps.scope.row.waybillNo
}}</el-text>
</template>
<template #default="slotProps">
<template v-if="slotProps.scope.column.label === '运单号'">
{{ slotProps.scope.row.waybillNo }}
</template>
</tablecmt>
</div>
</div> -->
</template>
</tablecmt>
</div>
</el-tab-pane>
<el-tab-pane label="日 志 跟 踪" name="tab2">
@ -508,6 +489,8 @@ import { postRemoveCarsLoadScan } from '@/api/distribution/truckLoadingDetails';
import { useRouter, useRoute } from 'vue-router';
import { useStore } from 'vuex';
import { ElMessage, ElMessageBox } from 'element-plus';
import { exportExcelByDom } from '@/utils/export';
import { dateNow } from '@/utils/date';
/** 被合并的列 */
const mergeColumn = [];
@ -533,6 +516,7 @@ const oldColumnListNode = ref();
const abnormalTableRef = ref();
const tcTableexport = ref(false);
const exportColumnListNode = ref();
//
const nodeInfoRef = ref();
@ -663,6 +647,22 @@ const details = reactive<any>({
abnormalSelectionList: [],
});
const tableColumnList = computed(() => {
const _arr = [];
for (let i = 0; i < details.detailsColumnList.length; i++) {
const val = details.detailsColumnList[i];
let _obj = { ...val };
_obj.type = 30;
if (val.label === '序号' || val.label === '操作') continue;
_arr.push(_obj);
}
console.log('_arr :>> ', _arr);
return _arr;
});
const detailsRenderData = shallowRef([]);
const { search, query, shortcuts, data, loadingObj, selectionList, drawerShow, popUpShow, form } =
@ -1156,6 +1156,13 @@ const handleBatchDelete = () => {
});
};
/** 导出 */
const handleExport = () => {
console.log('exportColumnListNode.value.$el :>> ', exportColumnListNode.value.$el);
console.log('detailsRenderData.value :>> ', detailsRenderData.value);
exportExcelByDom(exportColumnListNode.value.$el, `${details.form.carsNo} - ${dateNow()}.xlsx`);
};
watch(
() => $route.query,
() => {

Loading…
Cancel
Save