diff --git a/src/views/ProjectInfo.vue b/src/views/ProjectInfo.vue index 28712a6..ba7ea24 100644 --- a/src/views/ProjectInfo.vue +++ b/src/views/ProjectInfo.vue @@ -36,7 +36,9 @@

进度

- +
@@ -47,8 +49,7 @@

工作项统计

-
-
+
@@ -65,11 +66,11 @@

项目主类

-

{{ project.projectClassId }}

+

{{ projectClassName }}

项目子类

-

{{ project.projectSubclassId }}

+

{{ projectSubClassName }}

重要程度

@@ -138,8 +139,7 @@

项目描述

-
-
+

{{ project.projectDescription }}

@@ -152,23 +152,6 @@ import {ref} from 'vue' -const percentage = ref(20) -const customColor = ref('#409eff') - -const customColorMethod = (percentage) => { - if (percentage < 30) { - return '#909399' - } - if (percentage < 70) { - return '#e6a23c' - } - return '#67c23a' -} - -const customColors = [ - {color: '#f56c6c', percentage: 20}, -] -