|
@@ -170,7 +170,10 @@ export default defineComponent({
|
|
|
{forms.orchestraList.length > 0 && (
|
|
|
<Sticky position="top" offsetTop={props.height} style={{ width: '100%' }}>
|
|
|
<div class={'searchGroup-single'}>
|
|
|
- <div class={['searchItem', forms.showPopover ? 'searchItem-active' : '']}>
|
|
|
+ <div
|
|
|
+ class={['searchItem', forms.showPopover ? 'searchItem-active' : '']}
|
|
|
+ onClick={() => (forms.showPopover = true)}
|
|
|
+ >
|
|
|
<span>{forms.orchestraName}</span>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -261,7 +264,13 @@ export default defineComponent({
|
|
|
<OEmpty btnStatus={false} tips="暂无班级" />
|
|
|
)}
|
|
|
|
|
|
- <Popup v-model:show={forms.showPopover} position="bottom" round class={'popupBottomSearch'}>
|
|
|
+ <Popup
|
|
|
+ v-model:show={forms.showPopover}
|
|
|
+ position="bottom"
|
|
|
+ round
|
|
|
+ class={'popupBottomSearch'}
|
|
|
+ teleport="#select-send-message"
|
|
|
+ >
|
|
|
<Picker
|
|
|
columns={forms.orchestraList}
|
|
|
onCancel={() => (forms.showPopover = false)}
|