提交
@@ -156,6 +165,7 @@ import {
} from "@/api/expense-manage";
import {useProcessStore} from '@/stores/processStore.js';
import ProcessDiagramViewer from '@/views/workflow/common/ProcessDiagramViewer.vue';
+import OperationRender from '@/views/workflow/common/OperationRender.vue'
const changeDiagram = ref(false)
const rules = reactive({
@@ -172,6 +182,7 @@ const rules = reactive({
researchDuration: [{required: true, message: '请输入研发时长', trigger: 'blur'}],
})
const processStore = useProcessStore()
+const opentionData = ref()
const processInstanceData = ref()
const processDiagramViewer = ref(false)
const loading = ref(false)
@@ -332,6 +343,7 @@ const getDetailInfo = async () => {
if (res.code === 1000) {
getDetailList()
formData.value = res.data.formData
+ opentionData.value = res.data
loading.value = false
}
})
diff --git a/src/views/special-fund/add.vue b/src/views/special-fund/add.vue
index 6eadf53..e83e470 100644
--- a/src/views/special-fund/add.vue
+++ b/src/views/special-fund/add.vue
@@ -27,14 +27,23 @@
-
提交
@@ -53,6 +62,7 @@ import {useTagsView} from '@/stores/tagsview.js'
import {useProcessStore} from '@/stores/processStore.js';
import {downloadFile, deleteFile} from "@/api/project-demand";
+import OperationRender from '@/views/workflow/common/OperationRender.vue'
const changeDiagram = ref(false)
const tagsViewStore = useTagsView()
const router = useRouter()