问题修复

This commit is contained in:
2024-04-16 00:53:34 +08:00
parent 877469ab43
commit 0562554266
9 changed files with 37 additions and 24 deletions

View File

@@ -57,7 +57,7 @@
<view class='bottom-banner-view'>
<swiper :indicator-dots='true' :autoplay='true' :interval='3000' :duration='1000'>
<swiper-item v-for='(item, index) in companyConfigInfo.bannerhot' :key='index'>
<swiper-item v-for='(item, index) in companyConfigInfo?.bannerhot' :key='index'>
<image :src='item.src' mode='aspectFill' />
</swiper-item>
</swiper>

View File

@@ -121,7 +121,7 @@ onLoad(async (e: any) => {
pageSize: 20,
bean: {
keyword: '',
typeIds: ['1724629185362591745']
typeIds: []
}
}
});

View File

@@ -46,7 +46,7 @@ const bindInput = async (e: any) => {
pageSize: 100,
bean: {
keyword: e.detail.value,
typeIds: ['1724629185362591745']
typeIds: []
}
}
});

View File

@@ -47,7 +47,7 @@
<view class='divider' />
<view class='c-flex-row'>
<text>生日</text>
<picker mode='date' :disabled='userInfo.birthday!=""' @change='changeDate'>
<picker mode='date' :disabled='(userInfo.birthday?.length||0)!=0' @change='changeDate'>
<text>{{ params?.birthday || '请选择生日' }}</text>
</picker>
</view>