fix: 🐛 修复表格错位问题

This commit is contained in:
LOG1997
2025-12-30 20:18:24 +08:00
parent 71b8085dd8
commit 863ed8426c
2 changed files with 42 additions and 44 deletions

View File

@@ -30,11 +30,10 @@ const actionsColumns = computed<any[]>(() => {
<template> <template>
<div class="overflow-x-auto"> <div class="overflow-x-auto">
<table class="table min-w-[600px]"> <table class="table min-w-150">
<!-- head --> <!-- head -->
<thead> <thead>
<tr> <tr>
<th />
<th v-for="(item, index) in dataColumns" :key="index"> <th v-for="(item, index) in dataColumns" :key="index">
{{ item.label }} {{ item.label }}
</th> </th>

View File

@@ -1,5 +1,4 @@
import * as XLSX from 'xlsx' import * as XLSX from 'xlsx'
import i18n from '@/locales/i18n'
import { addOtherInfo } from '@/utils' import { addOtherInfo } from '@/utils'
// 定义消息类型 // 定义消息类型
interface WorkerMessage { interface WorkerMessage {