修改禅道已知bug
This commit is contained in:
@@ -11,6 +11,9 @@
|
|||||||
:columns="columns"
|
: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">
|
<span slot="operation" slot-scope="text,record">
|
||||||
<a class="text-operation"
|
<a class="text-operation"
|
||||||
@click="ProcessingClick(record)">{{$t('Processing')}}</a>
|
@click="ProcessingClick(record)">{{$t('Processing')}}</a>
|
||||||
@@ -85,7 +88,8 @@
|
|||||||
align: 'center',
|
align: 'center',
|
||||||
dataIndex: 'endTime',
|
dataIndex: 'endTime',
|
||||||
ellipsis: true,
|
ellipsis: true,
|
||||||
width: 170
|
width: 170,
|
||||||
|
scopedSlots: { customRender: 'endTime' }
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: this.$t('taskStatus'),
|
title: this.$t('taskStatus'),
|
||||||
@@ -327,5 +331,7 @@
|
|||||||
text-align: right;
|
text-align: right;
|
||||||
margin-top: 20px;
|
margin-top: 20px;
|
||||||
}
|
}
|
||||||
|
.activeRed{
|
||||||
|
color: red;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
@@ -15,6 +15,9 @@
|
|||||||
<a class="text-operation"
|
<a class="text-operation"
|
||||||
@click="ProcessingClick(record)">{{$t('Processing')}}</a>
|
@click="ProcessingClick(record)">{{$t('Processing')}}</a>
|
||||||
</span>
|
</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">
|
<span slot="standardInformation" slot-scope="text,record">
|
||||||
<a @click="standardInformationClick(record)" :title="text+'、'+record.title">
|
<a @click="standardInformationClick(record)" :title="text+'、'+record.title">
|
||||||
{{text+'、'+record.title}}
|
{{text+'、'+record.title}}
|
||||||
@@ -204,5 +207,7 @@
|
|||||||
text-align: right;
|
text-align: right;
|
||||||
margin-top: 20px;
|
margin-top: 20px;
|
||||||
}
|
}
|
||||||
|
.activeRed{
|
||||||
|
color: red;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
Reference in New Issue
Block a user