feat : 抄送和if判断

This commit is contained in:
clay
2024-08-02 19:36:37 +08:00
parent 36bb362fd7
commit 5111897d13
6 changed files with 130 additions and 91 deletions

View File

@@ -59,7 +59,7 @@ export const useProcessStore = defineStore('process', () => {
const getFormMap = () => {
//表单映射对象
const map = new Map();
processData.value.formItems.forEach(item => itemToMap(map, item))
processData.value.formItems?.forEach(item => itemToMap(map, item))
return map
}