diff --git a/src/option/distribution/VehicleArrivalManagement.js b/src/option/distribution/VehicleArrivalManagement.js
index b7a9d81b..8d3df916 100644
--- a/src/option/distribution/VehicleArrivalManagement.js
+++ b/src/option/distribution/VehicleArrivalManagement.js
@@ -360,7 +360,7 @@ export const columnList = [
label: '操作',
type: 6,
values: '',
- width: '250',
+ width: '300',
checkarr: [],
fixed: 'right',
sortable: false,
diff --git a/src/utils/exportData.js b/src/utils/exportData.js
index 2ef66adb..cd68b0a9 100644
--- a/src/utils/exportData.js
+++ b/src/utils/exportData.js
@@ -9,17 +9,25 @@ export function exportExcel(columnList = [], listData = [], name = 'excel') {
const blackArr = ['序号', '复选框', '操作', '全选'];
+ const _columnData = columnList.filter(item => !blackArr.includes(item.label));
+
const data = [];
+ const marginList = [];
+
for (let j = 0; j < listData.length; j++) {
const item = listData[j];
const arr = [];
- for (let i = 0; i < columnList.length; i++) {
- const val = columnList[i];
+ for (let i = 0; i < _columnData.length; i++) {
+ const val = _columnData[i];
if (blackArr.includes(val.label) || val.head) continue;
+ if (val.isColumnMerge && isNumber(item.mergeColumnIndex) && item.mergeColumnIndex > 1) {
+ marginList.push({ s: { r: j, c: i }, e: { r: j + item.mergeColumnIndex, c: i } });
+ }
+
if (j === 0) headers.push(val.label);
arr.push(item[val.prop] || item[val.prop] === 0 ? item[val.prop] : '');
}
@@ -56,7 +64,7 @@ export function exportExcel(columnList = [], listData = [], name = 'excel') {
let valueWidth = 0;
if (value)
if (/.*[\u4e00-\u9fa5]+.*$/.test(value)) {
- valueWidth = parseFloat(value.trim().toString().length * 2.1) + 4;
+ valueWidth = parseFloat(value.trim().toString().length * 1.5) + 4;
} else {
valueWidth = parseFloat(value.toString().length * 1.1) + 4;
}
@@ -75,9 +83,9 @@ export function exportExcel(columnList = [], listData = [], name = 'excel') {
// 3.对比每列最大值
let aotuWidth = [];
- rowsWidth.map((row, index) => {
+ rowsWidth.forEach((row, index) => {
let maxWidth = [];
- row.map((value, i) => {
+ row.forEach((value, i) => {
if (index === 0) {
maxWidth.push({
wch: value,
@@ -94,6 +102,7 @@ export function exportExcel(columnList = [], listData = [], name = 'excel') {
// 4.给excel设置自适应宽度
ws['!cols'] = aotuWidth;
+ ws['!merges'] = marginList;
const excludes = ['!cols', '!fullref', '!merges', '!ref', '!rows'];
console.log('ws :>> ', ws);
for (let key in ws) {
@@ -102,7 +111,7 @@ export function exportExcel(columnList = [], listData = [], name = 'excel') {
ws[key].s = {
alignment: {
// horizontal: 'center', //水平居中对齐
- // vertical: 'center', // 垂直居中
+ vertical: 'center', // 垂直居中
wrapText: true,
},
border: {
diff --git a/src/views/basic/forklift/basicForklift.vue b/src/views/basic/forklift/basicForklift.vue
index a4e77591..de58a784 100644
--- a/src/views/basic/forklift/basicForklift.vue
+++ b/src/views/basic/forklift/basicForklift.vue
@@ -46,76 +46,64 @@
-
-
-
-
-
-
-
- 查看
- 编辑
- 删除
-
-
-
-
-
+
+
+
+
+ 查看
+ 编辑
+ 删除
+
+
+
+
-
-