赞
踩
{
... // 省略
"tabBar": {
"color": "#333333",
"selectedColor": "#3296fa",
"backgroundColor": "#ffffff",
"borderStyle": "white",
"list": [
{
"pagePath": "pages/sys/workbench/index",
"iconPath": "static/images/tabbar/apply_1.png",
"selectedIconPath": "static/images/tabbar/apply_2.png",
"text": "首页"
},
{
"pagePath": "pages/sys/msg/index",
"iconPath": "static/images/tabbar/msg_1.png",
"selectedIconPath": "static/images/tabbar/msg_2.png",
"text": "消息"
},
{
"pagePath": "pages/sys/user/index",
"iconPath": "static/images/tabbar/my_1.png",
"selectedIconPath": "static/images/tabbar/my_2.png",
"text": "我的"
}
]
}, // 底部按钮栏配置
}
onShow() {
this.getMessageInfo();
}
getMessageInfo() {
this.$u.api.message.noticeAll().then((res) => {
let count =
res.data.earlyNum +
res.data.newsNum +
res.data.noticeNum +
res.data.taskNum;
if (count > 0) {
uni.setTabBarBadge({
index: 0,
text: "11",
});
uni.setTabBarBadge({
index: 1,
text: "99+",
});
} else {
uni.removeTabBarBadge({
index: 1,
text: "",
});
}
});
},
OBJECT参数说明:
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
index | Number | 是 | tabBar的哪一项,从左边算起 |
text | String | 是 | 显示的文本,不超过 3 个半角字符 |
success | Function | 否 | 接口调用成功的回调函数 |
fail | Function | 否 | 接口调用失败的回调函数 |
complete | Function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
OBJECT参数说明:
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
index | Number | 是 | tabBar的哪一项,从左边算起 |
success | Function | 否 | 接口调用成功的回调函数 |
fail | Function | 否 | 接口调用失败的回调函数 |
complete | Function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
OBJECT参数说明:
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
index | Number | 是 | tabBar的哪一项,从左边算起 |
success | Function | 否 | 接口调用成功的回调函数 |
fail | Function | 否 | 接口调用失败的回调函数 |
complete | Function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
OBJECT参数说明:
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
index | Number | 是 | tabBar的哪一项,从左边算起 |
success | Function | 否 | 接口调用成功的回调函数 |
fail | Function | 否 | 接口调用失败的回调函数 |
complete | Function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
Tip
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。