mirror of
https://gitee.com/dolphinscheduler/DolphinScheduler.git
synced 2024-12-02 20:28:03 +08:00
Merge pull request #2606 from break60/dev
Workflow list style optimization
This commit is contained in:
commit
85d4f03dd3
@ -57,7 +57,7 @@
|
||||
<td width="50">
|
||||
<span>{{parseInt(pageNo === 1 ? ($index + 1) : (($index + 1) + (pageSize * (pageNo - 1))))}}</span>
|
||||
</td>
|
||||
<td style="min-width: 200px;max-width: 300px;">
|
||||
<td style="min-width: 200px;max-width: 300px;padding-right: 10px;">
|
||||
<span class="ellipsis">
|
||||
<router-link :to="{ path: '/projects/definition/list/' + item.id}" tag="a" class="links" :title="item.name">
|
||||
{{item.name}}
|
||||
|
@ -69,7 +69,7 @@
|
||||
<td width="50">
|
||||
<span>{{parseInt(pageNo === 1 ? ($index + 1) : (($index + 1) + (pageSize * (pageNo - 1))))}}</span>
|
||||
</td>
|
||||
<td style="min-width: 200px;max-width: 300px;">
|
||||
<td style="min-width: 200px;max-width: 300px;padding-right: 10px;">
|
||||
<span class="ellipsis" style="padding-left: 4px;"><router-link :to="{ path: '/projects/instance/list/' + item.id}" tag="a" class="links" :title="item.name">{{item.name}}</router-link></span>
|
||||
</td>
|
||||
<td>
|
||||
|
@ -65,10 +65,10 @@
|
||||
<td>
|
||||
<span>{{parseInt(pageNo === 1 ? ($index + 1) : (($index + 1) + (pageSize * (pageNo - 1))))}}</span>
|
||||
</td>
|
||||
<td style="min-width: 200px;max-width: 300px;">
|
||||
<td style="min-width: 200px;max-width: 300px;padding-right: 10px;">
|
||||
<span class="ellipsis" :title="item.name">{{item.name}}</span>
|
||||
</td>
|
||||
<td style="min-width: 200px;max-width: 300px;"><a href="javascript:" class="links" @click="_go(item)"><span class="ellipsis" :title="item.processInstanceName">{{item.processInstanceName}}</span></a></td>
|
||||
<td style="min-width: 200px;max-width: 300px;padding-right: 10px;"><a href="javascript:" class="links" @click="_go(item)"><span class="ellipsis" :title="item.processInstanceName">{{item.processInstanceName}}</span></a></td>
|
||||
<td>
|
||||
<span v-if="item.executorName">{{item.executorName}}</span>
|
||||
<span v-else>-</span>
|
||||
|
Loading…
Reference in New Issue
Block a user