修改OTAbug

This commit is contained in:
高嵩
2023-08-28 10:19:27 +08:00
parent d51fb25470
commit cd073f5db7
2 changed files with 15 additions and 14 deletions
@@ -725,7 +725,7 @@ export default {
{
title: this.$t('statisticalNodes'),
align: 'left',
width: 170,
width: 210,
ellipsis: true,
sorter:true,
dataIndex: 'masterDomain'
@@ -817,7 +817,7 @@ export default {
{
title: this.$t('projectVersion'),
align: 'left',
width: 170,
width: 220,
ellipsis: true,
sorter:true,
dataIndex: 'projectVersionName',
@@ -850,7 +850,7 @@ export default {
{
title: this.$t('CertificationProgress'),
align: 'left',
width: 170,
width: 190,
ellipsis: true,
sorter:true,
dataIndex: 'attestationSchedule',
@@ -1,11 +1,11 @@
<template>
<a-table
:components="drag(columnshistory,'columnshistory')"
class="table"
:columns="columnshistory"
:pagination="false"
:scroll="{x: '100%',y: 400}"
:data-source="dataSourcehistory"
:components="drag(columnshistory,'columnshistory')"
class="table"
:columns="columnshistory"
:pagination="false"
:scroll="{x: '100%',y: 400}"
:data-source="dataSourcehistory"
>
<span slot="content" slot-scope="text,record">
<a-tooltip placement="topLeft">
@@ -15,21 +15,22 @@
<span v-html="text"></span>
</a-tooltip>
</span>
<span slot="detailText" slot-scope="text,record">
<span slot="detailText" slot-scope="text,record">
<span class="text" :title="text">
{{text && text.length > 38?text.slice(0,37)+'...':text}}
{{ text }}
</span>
</span>
</span>
</a-table>
</template>
<script>
import { ResizeHeader, ResizeColumnProvide } from '@/mixins/header'
export default {
name: 'historyTable.vue',
props:['columnshistory','dataSourcehistory'],
mixins:[ResizeHeader, ResizeColumnProvide],
props: ['columnshistory', 'dataSourcehistory'],
mixins: [ResizeHeader, ResizeColumnProvide]
}
</script>