fix: 🐛 修复表格错位问题
This commit is contained in:
@@ -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>
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|||||||
Reference in New Issue
Block a user