Commit 825fd8dd authored by wuyongsheng's avatar wuyongsheng

Merge branch 'feat-20220705-customTemplate' into 'release'

fix: batch运行完成状态显示

See merge request !89
parents c5555c8c a73aec2e
...@@ -61,7 +61,7 @@ const BatchNode = (props: IBatchNode) => { ...@@ -61,7 +61,7 @@ const BatchNode = (props: IBatchNode) => {
className={classNames({ className={classNames({
[styles.batchNode]: true, [styles.batchNode]: true,
[styles.selectedBatchBox]: selectedStatus, [styles.selectedBatchBox]: selectedStatus,
[styles.selectBatchNode]: selectedStatus, [styles.selectBatchNode]: data.executionStatus === "Done",
})} })}
style={style} style={style}
> >
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* @Author: 吴永生#A02208 yongsheng.wu@wholion.com * @Author: 吴永生#A02208 yongsheng.wu@wholion.com
* @Date: 2022-06-23 11:00:29 * @Date: 2022-06-23 11:00:29
* @LastEditors: 吴永生#A02208 yongsheng.wu@wholion.com * @LastEditors: 吴永生#A02208 yongsheng.wu@wholion.com
* @LastEditTime: 2022-07-04 14:26:18 * @LastEditTime: 2022-07-07 11:23:14
* @FilePath: /bkunyun/src/views/Project/components/Flow/interface.ts * @FilePath: /bkunyun/src/views/Project/components/Flow/interface.ts
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
*/ */
...@@ -38,6 +38,8 @@ export interface IBatchNodeData { ...@@ -38,6 +38,8 @@ export interface IBatchNodeData {
selectedStatus?: boolean; selectedStatus?: boolean;
/** 是否校验通过 */ /** 是否校验通过 */
isCheck?: boolean; isCheck?: boolean;
/** 运行状态 */
executionStatus: string
} }
export interface IBatchNode { export interface IBatchNode {
data: IBatchNodeData data: IBatchNodeData
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment