- 新增
+ 同步软件环境
@@ -398,13 +398,14 @@ const showAdd = ref(false)
const taskAddRef = ref()
const message = useMessage() // 消息弹窗
const isAppTrue = ref(true)
-// 打开新增表单
-const openAddForm = () => {
- showAdd.value = true
- nextTick(() => {
- taskAddRef.value?.open()
+
+// 同步软件环境
+const asyncApp = () => {
+ AppApi.createAppCheckList(props.taskId).then(() => {
+ getList()
})
}
+
const reload = () => {
getList()
}
@@ -427,7 +428,6 @@ const openAppForm = async () => {
setTimeout(() => {
isAppTrue.value = true
}, 0)
-
}
}