-- fix bug

This commit is contained in:
yuping
2023-02-23 17:03:51 +08:00
parent e13d83e0e8
commit 8a1dd3880a

View File

@@ -27,7 +27,7 @@
</a-tree-select>
</template>
<script setup>
import { defineEmits, defineProps, ref, watch } from "vue";
import {defineEmits, defineProps, ref, watch} from "vue";
import {boeRequest, useBoeApi} from "@/api/request";
import { ORG_CHILD_LIST, ORG_LIST } from "@/api/ThirdApi";
@@ -41,7 +41,7 @@ const props = defineProps({
});
const emit = defineEmits({});
const stuTreeExpandedKeys = ref([]);
const labelValue = ref({});
const labelValue = ref({ value: props.value, label: props.name });
const { data: options, loading: orgLoading } = useBoeApi(
ORG_LIST,
{ keyword: "" },