style: 调整表格列宽
This commit is contained in:
@@ -31,7 +31,7 @@
|
||||
<a :href="scope.row.url" target="_blank">{{ scope.row.title }}</a>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="source" label="Source" width="100" />
|
||||
<el-table-column prop="source" label="Source" width="150" />
|
||||
<el-table-column prop="publishDate" label="Date" width="100">
|
||||
<template #default="scope">{{ formatDate(scope.row.publishDate) }}</template>
|
||||
</el-table-column>
|
||||
|
||||
@@ -12,8 +12,8 @@
|
||||
</template>
|
||||
|
||||
<el-table :data="crawlStats" stripe style="width: 100%" v-loading="loading" class="crawl-table">
|
||||
<el-table-column prop="source" label="爬虫来源" width="120" />
|
||||
<el-table-column prop="count" label="本次获取数量" width="100" sortable />
|
||||
<el-table-column prop="source" label="爬虫来源" width="230" />
|
||||
<el-table-column prop="count" label="本次获取数量" width="160" sortable />
|
||||
<el-table-column label="最近更新时间" width="140">
|
||||
<template #default="{ row }">
|
||||
{{ formatDateTime(row.latestUpdate) }}
|
||||
|
||||
@@ -45,7 +45,7 @@
|
||||
<a :href="scope.row.url" target="_blank">{{ scope.row.title }}</a>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="source" label="来源" width="100" />
|
||||
<el-table-column prop="source" label="来源" width="150" />
|
||||
<el-table-column prop="publishDate" label="发布日期" width="100">
|
||||
<template #default="scope">
|
||||
{{ formatDate(scope.row.publishDate) }}
|
||||
|
||||
@@ -69,7 +69,7 @@
|
||||
<a :href="scope.row.url" target="_blank">{{ scope.row.title }}</a>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="source" label="Source" width="120" />
|
||||
<el-table-column prop="source" label="Source" width="100" />
|
||||
<el-table-column prop="publishDate" label="Date" width="120">
|
||||
<template #default="scope">{{ formatDate(scope.row.publishDate) }}</template>
|
||||
</el-table-column>
|
||||
|
||||
@@ -35,7 +35,7 @@
|
||||
<a :href="scope.row.url" target="_blank">{{ scope.row.title }}</a>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="source" label="来源" width="100" />
|
||||
<el-table-column prop="source" label="来源" width="230" />
|
||||
<el-table-column prop="publishDate" label="发布日期" width="100">
|
||||
<template #default="scope">
|
||||
{{ formatSimpleDate(scope.row.publishDate) }}
|
||||
|
||||
Reference in New Issue
Block a user