feat: 首页左上角图标支持跳转到关于页面

This commit is contained in:
小莫唐尼 2024-07-16 11:20:14 +08:00
parent a65ea2617b
commit ff31e0d8e8

View File

@ -2,7 +2,7 @@
<view class="app-page"> <view class="app-page">
<tm-menubars iconColor="white" color="white" :flat="true" :showback="false"> <tm-menubars iconColor="white" color="white" :flat="true" :showback="false">
<view slot="left"> <view slot="left">
<image class="logo ml-24 round-24" :src="appInfo.logo" mode="scaleToFill"/> <image @click="fnOnLogoToPage" class="logo ml-24 round-24" :src="appInfo.logo" mode="scaleToFill"/>
</view> </view>
<view class="search-input round-12 pt-12 pb-12 flex pl-24" @click="fnToSearch"> <view class="search-input round-12 pt-12 pb-12 flex pl-24" @click="fnToSearch">
<text class="search-input_icon iconfont text-size-m icon-search text-grey"></text> <text class="search-input_icon iconfont text-size-m icon-search text-grey"></text>
@ -62,8 +62,7 @@
</view> </view>
</view> </view>
<view v-if="articleList.length == 0" class="article-empty"> <view v-if="articleList.length == 0" class="article-empty">
<tm-empty icon="icon-shiliangzhinengduixiang-" <tm-empty icon="icon-shiliangzhinengduixiang-" label="博主还没有发表任何内容~"></tm-empty>
label="博主还没有发表任何内容~"></tm-empty>
</view> </view>
<block v-else> <block v-else>
<view :class="globalAppSettings.layout.home"> <view :class="globalAppSettings.layout.home">
@ -217,7 +216,7 @@ export default {
arrayFormat: 'repeat' arrayFormat: 'repeat'
}) })
uni.request({ uni.request({
url: this.$baseApiUrl + '/apis/api.content.halo.run/v1alpha1/posts?'+ paramsStr, url: this.$baseApiUrl + '/apis/api.content.halo.run/v1alpha1/posts?' + paramsStr,
method: 'GET', method: 'GET',
success: (res) => { success: (res) => {
this.bannerList = _format(res.data.items); this.bannerList = _format(res.data.items);
@ -333,6 +332,11 @@ export default {
uni.navigateTo({ uni.navigateTo({
url: '/pagesA/articles/articles' url: '/pagesA/articles/articles'
}); });
},
fnOnLogoToPage() {
uni.switchTab({
url: '/pages/tabbar/about/about'
})
} }
} }
}; };