问题修复
This commit is contained in:
@@ -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>
|
||||
|
@@ -121,7 +121,7 @@ onLoad(async (e: any) => {
|
||||
pageSize: 20,
|
||||
bean: {
|
||||
keyword: '',
|
||||
typeIds: ['1724629185362591745']
|
||||
typeIds: []
|
||||
}
|
||||
}
|
||||
});
|
||||
|
@@ -46,7 +46,7 @@ const bindInput = async (e: any) => {
|
||||
pageSize: 100,
|
||||
bean: {
|
||||
keyword: e.detail.value,
|
||||
typeIds: ['1724629185362591745']
|
||||
typeIds: []
|
||||
}
|
||||
}
|
||||
});
|
||||
|
@@ -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>
|
||||
|
Reference in New Issue
Block a user