ConditionScreening.vue
3.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<template>
<div>
<CollapseContainer ref="collapseContainerRef" @expand="handleExpand">
<template #title>
<div>条件筛选</div>
<RichText :otherAttribute="otherAttribute" @resetFilter="resetFilter"
/></template>
<template v-for="(item, index) in conditionScreeningList" :key="item">
<ConditionScreeningForm
:conditionScreeningList="conditionScreeningList"
:ref="refItem.conditionScreeningRefs"
:index="index"
@deleteConditionForm="deleteConditionForm"
/>
</template>
</CollapseContainer>
<div class="flex justify-between">
<a-button type="primary" class="mt-4 ml-2" @click="addConditionForm">新增条件筛选</a-button>
<a-button type="primary" class="mt-4 mr-2" @click="preView" v-if="isPreview">保存</a-button>
</div>
</div>
</template>
<script lang="ts" setup>
import { unref, ref } from 'vue';
import ConditionScreeningForm from './ConditionScreeningForm.vue';
import { conditionPreView } from '../config/formatData.ts';
import { CollapseContainer } from '/@/components/Container/index';
import RichText from './RichText.vue';
const props = defineProps({
childGetFieldsValue: {
type: Function,
required: true,
},
});
const refItem = {
conditionScreeningRefs: ref([]),
};
const isPreview = ref(true);
const collapseContainerRef = ref();
const conditionScreeningList = ref([Date.now()]);
const addConditionForm = () => {
if (!unref(isPreview)) {
collapseContainerRef.value.handleExpand();
}
unref(conditionScreeningList).push(Date.now());
const lastIndex = refItem.conditionScreeningRefs.value.length - 1;
refItem.conditionScreeningRefs.value[lastIndex]?.appendSchemaByField(
{
field: 'AND',
label: '和',
component: 'Input',
slot: 'and',
labelWidth: 50,
colProps: { span: 3 },
},
'value'
);
};
const handleExpand = (show) => {
isPreview.value = show;
};
const otherAttribute = ref([]);
// 预览条件筛选结果
const preView = async () => {
const attributes = [];
const fieldsValue = props.childGetFieldsValue();
for (let i = 0; i < unref(refItem.conditionScreeningRefs).length; i++) {
const valid = await unref(refItem.conditionScreeningRefs)[i].validate();
if (!valid) return;
attributes.push({
...unref(refItem.conditionScreeningRefs)[i].getFieldsValue(),
attribute: fieldsValue.type2,
});
}
otherAttribute.value = conditionPreView(attributes, fieldsValue.operationType);
collapseContainerRef.value.handleExpand();
};
const resetFilter = () => {
otherAttribute.value = [];
};
const deleteConditionForm = (index) => {
unref(conditionScreeningList).splice(index, 1);
const lastIndex = refItem.conditionScreeningRefs.value.length - 2;
refItem.conditionScreeningRefs.value[lastIndex]?.removeSchemaByFiled('AND');
};
defineExpose({
refItem,
conditionScreeningList,
otherAttribute,
});
</script>