ConditionScreening.vue
3.04 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
99
100
101
102
<template>
<div>
<CollapseContainer ref="collapseContainerRef" @expand="handleExpand">
<template #title>
<div>条件筛选</div>
<RichText
:firstAttribute="firstAttribute"
: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.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 handleExpand = (show) => {
isPreview.value = show;
};
const firstAttribute = ref({});
const otherAttribute = ref([]);
// 预览条件筛选结果
const preView = async () => {
const attributes = [];
const fieldsValue = props.childGetFieldsValue();
for (let i = 0; i < unref(refItem.conditionScreeningRefs).length; i++) {
if (i === 0) {
const attr = conditionPreView(
[
{
...unref(refItem.conditionScreeningRefs)[i].getFieldsValue(),
attribute: fieldsValue.type2,
},
],
fieldsValue.operationType
);
firstAttribute.value = attr[0];
await unref(refItem.conditionScreeningRefs)[i].validate();
continue;
}
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 = () => {
firstAttribute.value = {};
otherAttribute.value = [];
};
const deleteConditionForm = (index) => {
unref(conditionScreeningList).splice(index, 1);
};
defineExpose({
refItem,
});
</script>