1. 修复了一些问题

This commit is contained in:
李琦
2026-06-05 14:41:51 +08:00
parent 34a3832810
commit 6349aa7f35
3 changed files with 6 additions and 4 deletions

View File

@@ -44,7 +44,7 @@ export default {
let bottom = '32rpx';
if (this.showTabbar) {
// bottom = 'calc(100rpx + env(safe-area-inset-bottom))';
bottom = '-7rpx';
bottom = 'calc(100rpx + env(safe-area-inset-bottom))';
}
return {
paddingTop: top + 'px',

View File

@@ -23,8 +23,8 @@ export function getSalespersonContext() {
canDoctorInput: true,
},
tabList: [
{ text: '工作台', iconPath: '/static/tabbar/home.png', selectedIconPath: '/static/tabbar/home-active.png', pagePath: SALESPERSON_HOME },
{ text: '我的', iconPath: '/static/tabbar/my.png', selectedIconPath: '/static/tabbar/my-active.png', pagePath: SALESPERSON_MY },
{ text: '工作台', iconPath: 'home', selectedIconPath: 'home-fill', pagePath: SALESPERSON_HOME },
{ text: '我的', iconPath: 'account', selectedIconPath: 'account-fill', pagePath: SALESPERSON_MY },
],
};
}