流程图
diff --git a/src/components/NameCircle.vue b/src/components/NameCircle.vue
index e240ae0..41cc47c 100644
--- a/src/components/NameCircle.vue
+++ b/src/components/NameCircle.vue
@@ -79,6 +79,10 @@ const initUser = (user) => {
user["icon"] = 'MoreFilled'
user["color"] = "#c0c4cc"
}
+ if (state === 'ROLLBACK') {
+ user["icon"] = 'RefreshLeft'
+ user["color"] = "#f78f5f"
+ }
return user;
}
@@ -111,19 +115,5 @@ init()
}
-}
-@media print {
- /* 打印时应用的样式 */
- .el-checkbox.is-checked .el-checkbox__inner .svg-icon {
- background-color: #f5f7fa !important;
- border-color: #409eff !important;
- }
- .el-checkbox__inner::after {
- /* 设置选中的checkbox符号颜色 */
- color: #409eff !important;
- }
- //.el-icon {
- // color: rgba(0, 0, 0, 1) !important;
- //}
}
diff --git a/src/components/Tooltip.vue b/src/components/Tooltip.vue
index e0f6acc..9882337 100644
--- a/src/components/Tooltip.vue
+++ b/src/components/Tooltip.vue
@@ -5,7 +5,7 @@
placement="bottom-start"
:disabled="isShow"
>
-
+
{{ props.content }}
@@ -25,15 +25,26 @@ const props = defineProps({
lines: {
type: Boolean,
default: false
- }
+ },
+ textAlign: {
+ type: String,
+ default: ''
+ },
})
const contentRef = ref()
const isShow = ref(false)
const isShowTooltip = () => {
- isShow.value = props.width > contentRef.value.offsetWidth;
+ isShow.value = parseInt(props.width) > contentRef.value.offsetWidth;
}
-
diff --git a/src/views/project-management/implementation/phase.vue b/src/views/project-management/implementation/phase.vue
index 11b0942..a3595ac 100644
--- a/src/views/project-management/implementation/phase.vue
+++ b/src/views/project-management/implementation/phase.vue
@@ -1,9 +1,10 @@
-
-
baseForm = e" style="margin-left: 56px">
+
+
baseForm = e" >
+
-
+
@@ -12,15 +13,26 @@
@getAttachment="getAttachment" v-model:singleList="singleList" :showSingleTable="showSingleTable"
@getOtherFile="getOtherFile" :showFileList="true" :formData="formData" tag="阶段变更"
:preview="name === 'Phase/edit'"/>
-
-
-
流程图
-
+
提交
@@ -30,10 +42,11 @@