feat : 流程判断条件添加

This commit is contained in:
clay
2024-07-24 18:14:38 +08:00
parent b90ed53437
commit 9506d3e0f6

View File

@@ -124,7 +124,7 @@ const companyList = ref([])
// const orgType = ref('user') // const orgType = ref('user')
const showOrgSelect = ref(false) const showOrgSelect = ref(false)
const groupNames = ref(['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J']) const groupNames = ref(['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J'])
const supportTypes = ref([ValueType.number, ValueType.string]) const supportTypes = ref([ValueType.number, ValueType.string,ValueType.company])
const explains = ref( const explains = ref(
[ [
{label: '等于', value: '='}, {label: '等于', value: '='},
@@ -197,11 +197,6 @@ const filterConditionMosr = (list) => {
list.push({title: item.title, id: item.id, valueType: item.valueType}) list.push({title: item.title, id: item.id, valueType: item.valueType})
} }
}) })
list.push({
title: '发起人公司',
id: 'subCompanyId',
valueType: ValueType.company
})
} }
const filterCondition = (item, list) => { const filterCondition = (item, list) => {