fix bug#4088
Some checks are pending
Check / lint (push) Waiting to run
Check / typecheck (push) Waiting to run
Check / build (build, 18.x, ubuntu-latest) (push) Waiting to run
Check / build (build, 18.x, windows-latest) (push) Waiting to run
Check / build (build:app, 18.x, ubuntu-latest) (push) Waiting to run
Check / build (build:app, 18.x, windows-latest) (push) Waiting to run
Check / build (build:mp-weixin, 18.x, ubuntu-latest) (push) Waiting to run
Check / build (build:mp-weixin, 18.x, windows-latest) (push) Waiting to run

This commit is contained in:
wwt 2025-03-24 15:55:54 +08:00
parent 988912de2f
commit 2fa381bea1

View File

@ -69,7 +69,7 @@
class="text-[#747474] text-[28rpx] leading-[40rpx] font-bold"
:class="[
index !== 0 ? 'mt-[10rpx]' : '',
depsNoExpanded && index > 4 ? 'hidden' : '',
depsNoExpanded_1 && index > 4 ? 'hidden' : '',
]"
>
{{ item.name }}
@ -79,10 +79,10 @@
>
<div
v-if="depCheckedKeys.length > 5"
@click="depsNoExpanded = !depsNoExpanded"
@click="depsNoExpanded_1 = !depsNoExpanded_1"
class="w-[100rpx]"
>
{{ depsNoExpanded ? '展开' : '收起' }}
{{ depsNoExpanded_1 ? '展开' : '收起' }}
</div>
</div>
</div>
@ -150,7 +150,7 @@
class="text-[#747474] text-[28rpx] leading-[40rpx] font-bold"
:class="[
index !== 0 ? 'mt-[10rpx]' : '',
depsNoExpanded && index > 4 ? 'hidden' : '',
depsNoExpanded_2 && index > 4 ? 'hidden' : '',
]"
>
{{ item.name }}
@ -160,10 +160,10 @@
>
<div
v-if="groupAdmins.length > 5"
@click="depsNoExpanded = !depsNoExpanded"
@click="depsNoExpanded_2 = !depsNoExpanded_2"
class="w-[100rpx]"
>
{{ depsNoExpanded ? '展开' : '收起' }}
{{ depsNoExpanded_2 ? '展开' : '收起' }}
</div>
</div>
</div>
@ -212,7 +212,8 @@ const groupStore = useGroupStore()
const { userInfo } = useAuth()
const groupChatType = ref('')
const depsNoExpanded = ref(true)
const depsNoExpanded_1 = ref(true)
const depsNoExpanded_2 = ref(true)
onLoad(()=> {
@ -360,7 +361,8 @@ const confirmBtnStatus = computed(() => {
})
onShow(() => {
depsNoExpanded.value = true
depsNoExpanded_1.value = true;
depsNoExpanded_2.value = true;
})
</script>
<style scoped lang="scss">