diff --git a/src/components/Search/src/Search.vue b/src/components/Search/src/Search.vue index c60109b..084982e 100644 --- a/src/components/Search/src/Search.vue +++ b/src/components/Search/src/Search.vue @@ -59,6 +59,11 @@ const usedSchema = ref([]) const newSchema = computed(() => { let schema: FormSchema[] = cloneDeep(usedSchema.value) + schema.forEach((item: FormSchema) => { + if (item.component == 'TreeSelect') { + item.componentProps['check-strictly'] = true + } + }) if (props.expand && props.expandField && !unref(visible)) { const index = findIndex(schema, (v: FormSchema) => v.field === props.expandField) if (index > -1) { diff --git a/src/views/Clue/Order/Comp/OrderList.vue b/src/views/Clue/Order/Comp/OrderList.vue index 8059b49..5439d22 100644 --- a/src/views/Clue/Order/Comp/OrderList.vue +++ b/src/views/Clue/Order/Comp/OrderList.vue @@ -322,7 +322,7 @@ async function getClassTypeOptions() { function getOptions() { // 驾校 - getPlaceList().then((data) => { + getPlaceList({ placeStatus: 0, schoolStatus: 0, isSearchSchool: true }).then((data) => { schoolOptions.value = data.schoolList allPlaceOptions.value = data.placeList }) diff --git a/src/views/Clue/Pool/Comp/DialogClue.vue b/src/views/Clue/Pool/Comp/DialogClue.vue index 127f7aa..d516729 100644 --- a/src/views/Clue/Pool/Comp/DialogClue.vue +++ b/src/views/Clue/Pool/Comp/DialogClue.vue @@ -1,6 +1,6 @@