Browse Source
* [Fix][UI Next][V1.0.0-Alpha] Fix the state column of task instance table displays error. * [Fix][UI Next][V1.0.0-Alpha] Remove unused vars. * [Fix][UI Next][V1.0.0-Alpha] Add class for the state icon for e2e in task instance table and workflow instance.3.0.0/version-upgrade
Amy0104
3 years ago
committed by
GitHub
10 changed files with 140 additions and 84 deletions
@ -0,0 +1,37 @@
|
||||
/* |
||||
* Licensed to the Apache Software Foundation (ASF) under one or more |
||||
* contributor license agreements. See the NOTICE file distributed with |
||||
* this work for additional information regarding copyright ownership. |
||||
* The ASF licenses this file to You under the Apache License, Version 2.0 |
||||
* (the "License"); you may not use this file except in compliance with |
||||
* the License. You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
import { ITaskState } from '@/utils/types' |
||||
|
||||
export type { Router } from 'vue-router' |
||||
export type { TaskInstancesRes } from '@/service/modules/task-instances/types' |
||||
|
||||
interface IRecord { |
||||
name: string |
||||
processInstanceName: string |
||||
executorName: string |
||||
taskType: string |
||||
state: ITaskState |
||||
submitTime: string |
||||
startTime: string |
||||
endTime: string |
||||
duration?: string |
||||
retryTimes: number |
||||
dryRun: number |
||||
host: string |
||||
} |
||||
|
||||
export { ITaskState, IRecord } |
Loading…
Reference in new issue