fix : 修改审批记录回退节点icon
This commit is contained in:
@@ -35,7 +35,7 @@ steps:
|
||||
|
||||
|
||||
- name: build-docker-prod # 制作docker镜像
|
||||
image: 10.7.127.190:3800/docker/docker # 使用官方docker镜像
|
||||
image: 10.7.127.190:38080/docker/docker # 使用官方docker镜像
|
||||
volumes: # 将容器内目录挂载到宿主机
|
||||
- name: docker
|
||||
path: /var/run/docker.sock # 挂载宿主机的docker
|
||||
|
||||
@@ -80,8 +80,10 @@ const initUser = (user) => {
|
||||
user["color"] = "#c0c4cc"
|
||||
}
|
||||
if (state === 'ROLLBACK') {
|
||||
user["icon"] = 'RefreshLeft'
|
||||
user["color"] = "#f78f5f"
|
||||
// user["icon"] = 'RefreshLeft'
|
||||
// user["color"] = "#f78f5f"
|
||||
user["icon"] = 'CircleCloseFilled'
|
||||
user["color"] = "#f56c6c"
|
||||
}
|
||||
return user;
|
||||
}
|
||||
|
||||
@@ -229,8 +229,10 @@ const initOperationFun = (operation) => {
|
||||
}
|
||||
//回退
|
||||
if (state === 'ROLLBACK') {
|
||||
operation["icon"] = "RefreshLeft"
|
||||
operation["color"] = "#f78f5f"
|
||||
// operation["icon"] = "RefreshLeft"
|
||||
// operation["color"] = "#f78f5f"
|
||||
operation["icon"] = "CircleCloseFilled"
|
||||
operation["color"] = "#f56c6c"
|
||||
operation["remark"] = " 回退成功"
|
||||
}
|
||||
//拒绝操作
|
||||
|
||||
Reference in New Issue
Block a user