讲师管理新增讲师修改bug

This commit is contained in:
zhangsir
2024-11-08 18:14:40 +08:00
parent 6fb020dbd5
commit cb3d0ab9eb
5 changed files with 461 additions and 58 deletions

View File

@@ -1,7 +1,7 @@
<template>
<div>
<a-popover v-model:visible="visible" placement="bottom" trigger="click">
<template #content>
<template #content v-if="!disabled">
<div class="pover">
<div class="search">
<a-select
@@ -53,6 +53,7 @@
:filter-option="false"
:open="false"
:defaultOpen="false"
:disabled="disabled"
>
<template v-if="loading" #notFoundContent>
<a-spin size="small"/>
@@ -106,6 +107,10 @@ const props = defineProps({
type: String,
default: '',
},
disabled: {
type: Boolean,
default: false,
}
})
const emit = defineEmits(['update:value','update:lable','update:system','update:level','update:newlable','update:orgId','update:id','update:payrollPlaceCode','update:payrollPlaceName'])
const visible = ref(false);