diff --git a/api/other.js b/api/other.js index b2cb2ba..f624eca 100644 --- a/api/other.js +++ b/api/other.js @@ -52,4 +52,30 @@ export function seizeChat(data){ method: "post", data:data }) +} +/** + * 按钮未读信息统计 + * 1=用户,2=宠托师,3=客服 + * @param data + * @returns {Promise | Promise} + */ +export function allChatCount(data){ + return request({ + url:`/user/all-chat-count`, + method: "get", + data:data + }) +} + +/** + * 待服务订单统计 + * @param data + * @returns {Promise | Promise} + */ +export function waitOrderCount(data){ + return request({ + url:`/order/wait-order-count`, + method: "get", + data:data + }) } \ No newline at end of file diff --git a/components/FooterNav/index.vue b/components/FooterNav/index.vue index 6fd15aa..ad8c483 100644 --- a/components/FooterNav/index.vue +++ b/components/FooterNav/index.vue @@ -12,8 +12,10 @@ backgroundImage:'url('+item.image+ ((index === footCheck)?'-active':'')+'.png)', backgroundSize:'auto '+((index === footCheck)?'81':'54')+'rpx', display:(item.is_show)?'flex':'none' - }" @click="selectItem(index)"> - + }" style="position: relative;" @click="selectItem(index)"> + + + diff --git a/components/RightNav/index.vue b/components/RightNav/index.vue index e92e9b0..fd7cbea 100644 --- a/components/RightNav/index.vue +++ b/components/RightNav/index.vue @@ -5,7 +5,7 @@ v-for="(item,index) in buttonGroup" > - @@ -14,6 +14,11 @@ + + + + +