Browse Source

修复bug

ZaiZai 1 year ago
parent
commit
2c0f81162e
2 changed files with 2 additions and 2 deletions
  1. 1 1
      src/views/project/admin/list.vue
  2. 1 1
      src/views/project/gist/list.vue

+ 1 - 1
src/views/project/admin/list.vue

@@ -126,7 +126,7 @@ const getTableData = async () => {
 //项目阶段
 const stateOptions = ref([])
 const getProStation = async () => {
-    stateOptions.value = await getDictionaryData('projectStage', true)
+    stateOptions.value = await getDictionaryData('workFocusStage', true)
 
 }
 //项目类型

+ 1 - 1
src/views/project/gist/list.vue

@@ -53,7 +53,7 @@ onMounted(() => {
 
 //获取接口数据
 const getDataApi = async () => {
-    projectStage.value = await getDictionaryData('projectStage', true)
+    projectStage.value = await getDictionaryData('workFocusStage', true)
     searchClick()
 }