修改禅道已知bug

This commit is contained in:
sunFlower
2022-10-26 15:47:20 +08:00
parent ad691bd7cd
commit 9f104c564a
2 changed files with 14 additions and 3 deletions
@@ -11,6 +11,9 @@
:columns="columns"
>
<!-- -->
<span slot="endTime" slot-scope="text,record">
<span :title="text" :class="{'activeRed':record.endTimePastDueFlag}">{{text}}</span>
</span>
<span slot="operation" slot-scope="text,record">
<a class="text-operation"
@click="ProcessingClick(record)">{{$t('Processing')}}</a>
@@ -85,7 +88,8 @@
align: 'center',
dataIndex: 'endTime',
ellipsis: true,
width: 170
width: 170,
scopedSlots: { customRender: 'endTime' }
},
{
title: this.$t('taskStatus'),
@@ -327,5 +331,7 @@
text-align: right;
margin-top: 20px;
}
.activeRed{
color: red;
}
</style>
@@ -15,6 +15,9 @@
<a class="text-operation"
@click="ProcessingClick(record)">{{$t('Processing')}}</a>
</span>
<span slot="endTime" slot-scope="text,record">
<span :title="text" :class="{'activeRed':record.endTimePastDueFlag}">{{text}}</span>
</span>
<span slot="standardInformation" slot-scope="text,record">
<a @click="standardInformationClick(record)" :title="text+'、'+record.title">
{{text+'、'+record.title}}
@@ -204,5 +207,7 @@
text-align: right;
margin-top: 20px;
}
.activeRed{
color: red;
}
</style>