This commit is contained in:
X1627315083@163.com
2026-06-01 14:12:40 +08:00
parent a4494831a1
commit c32bd02efe
10 changed files with 53 additions and 23 deletions

View File

@@ -114,6 +114,7 @@ const {} = toRefs(data);
position: relative;
display: flex;
flex-direction: column;
margin-top: -1px;
.list{
width: 100%;
flex: 1;

View File

@@ -74,7 +74,7 @@ onUnmounted(()=>{
defineExpose({})
</script>
<template>
<div class="digitalItem" ref="digitalItemRef">
<div class="digitalItem" :class="{'active': commodityListRef?.commodityList?.length > 0}" ref="digitalItemRef">
<div class="header-img">
<img src="@/assets/images/digitalItem/digital_item_banner.png" alt="">
<div class="text">
@@ -130,9 +130,12 @@ defineExpose({})
<style lang="less" scoped>
.digitalItem{
width: 100%;
height: 100%;
height: auto;
position: relative;
overflow-y: auto;
&.active{
height: 100%;
}
.header-img{
width: 100%;
position: relative;
@@ -158,7 +161,7 @@ defineExpose({})
color: #585858;
font-size: 1.6rem;
line-height: 140%;
margin-top: 1.2rem;
margin-top: 2.4rem;
text-align: center;
}
}

View File

@@ -47,7 +47,7 @@ defineExpose({})
</div>
<div class="categories">{{ $t('digitalItem.MerchantInfo.Gender') }}</div>
<div class="line"></div>
<div class="multiple">{{ gender }}
<div class="multiple">
<checked-gender :list="genderList" @change="handleChange" v-model:selected="gender" />
</div>
</div>