Commit e1fc9039 by jason

仿钉钉流程设计器- bug 修复

parent 6cf69f04
...@@ -162,7 +162,7 @@ const formType = inject<Ref<number>>('formType') // 表单类型 ...@@ -162,7 +162,7 @@ const formType = inject<Ref<number>>('formType') // 表单类型
const conditionConfigTypes = computed( ()=> { const conditionConfigTypes = computed( ()=> {
return CONDITION_CONFIG_TYPES.filter(item => { return CONDITION_CONFIG_TYPES.filter(item => {
// 业务表单暂时去掉条件规则 选项 // 业务表单暂时去掉条件规则选项
if (formType?.value !== 10 ){ if (formType?.value !== 10 ){
return item.value === 1 return item.value === 1
} else { } else {
...@@ -350,9 +350,10 @@ const deleteConditionRule = (condition:Condition, idx:number) => { ...@@ -350,9 +350,10 @@ const deleteConditionRule = (condition:Condition, idx:number) => {
condition.rules.splice(idx, 1) condition.rules.splice(idx, 1)
} }
const fieldsInfo : any[] = []; let fieldsInfo : any[] = [];
const getFieldsInfo = () => { const getFieldsInfo = () => {
fieldsInfo = [];
if(formFields){ if(formFields){
formFields.value.forEach((fieldStr: string) => { formFields.value.forEach((fieldStr: string) => {
const { field, title, type } = JSON.parse(fieldStr) const { field, title, type } = JSON.parse(fieldStr)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment