Browse Source

Merge pull request #5027 from zhuangchong/1.3.6-imp-ui-duration-1

[1.3.6-prepare][Improvement][UI] Update the column name of the duration field on the instance UI page
xingchun-chen 4 years ago committed by GitHub
parent
commit
1d47137221
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/_source/taskRecordList/_source/list.vue
  2. 2
      dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/instance/pages/list/_source/list.vue
  3. 4
      dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/taskInstance/_source/list.vue

2
dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/_source/taskRecordList/_source/list.vue

@ -35,7 +35,7 @@
<span>{{$t('End Time')}}</span> <span>{{$t('End Time')}}</span>
</th> </th>
<th width="134"> <th width="134">
<span>{{$t('Duration')}}(s)</span> <span>{{$t('Duration')}}</span>
</th> </th>
<th> <th>
<span>{{$t('Source Table')}}</span> <span>{{$t('Source Table')}}</span>

2
dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/instance/pages/list/_source/list.vue

@ -44,7 +44,7 @@
<span>{{$t('End Time')}}</span> <span>{{$t('End Time')}}</span>
</th> </th>
<th scope="col" style="min-width: 60px"> <th scope="col" style="min-width: 60px">
<span>{{$t('Duration')}}s</span> <span>{{$t('Duration')}}</span>
</th> </th>
<th scope="col" style="min-width: 60px"> <th scope="col" style="min-width: 60px">
<span>{{$t('Run Times')}}</span> <span>{{$t('Run Times')}}</span>

4
dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/taskInstance/_source/list.vue

@ -50,7 +50,7 @@
<span>{{$t('host')}}</span> <span>{{$t('host')}}</span>
</th> </th>
<th scope="col" style="min-width: 70px"> <th scope="col" style="min-width: 70px">
<span>{{$t('Duration')}}(s)</span> <span>{{$t('Duration')}}</span>
</th> </th>
<th scope="col" style="min-width: 60px"> <th scope="col" style="min-width: 60px">
<div style="width: 50px"> <div style="width: 50px">
@ -88,7 +88,7 @@
<span v-else>-</span> <span v-else>-</span>
</td> </td>
<td style="max-width: 600px"><span style="padding-right: 5px">{{item.host || '-'}}</span></td> <td style="max-width: 600px"><span style="padding-right: 5px">{{item.host || '-'}}</span></td>
<td><span>{{item.duration}}</span></td> <td><span>{{item.duration || '-'}}</span></td>
<td><span>{{item.retryTimes}}</span></td> <td><span>{{item.retryTimes}}</span></td>
<td> <td>
<x-button <x-button

Loading…
Cancel
Save