ZaiZai 1 rok pred
rodič
commit
e52e0154cd
1 zmenil súbory, kde vykonal 2 pridanie a 3 odobranie
  1. 2 3
      src/views/project/gist/create.vue

+ 2 - 3
src/views/project/gist/create.vue

@@ -171,9 +171,8 @@ const saveClick = async () => {
             ...gist[i],
         })
     }
-    console.log(newWorkForm)
     //发起请求
-    /*const { error, code, msg } = await mainApi.submit({
+    const { error, code, msg } = await mainApi.submit({
         workFocusEntityList: newWorkForm,
     })
     //判断状态
@@ -184,7 +183,7 @@ const saveClick = async () => {
         workFocusEntityList.value = [{}]
     } else {
         window.$message.error(msg ?? '操作失败')
-    }*/
+    }
 }
 </script>