diff --git a/screeens/HomeTab/index.jsx b/screeens/HomeTab/index.jsx index da10f04..df0a754 100644 --- a/screeens/HomeTab/index.jsx +++ b/screeens/HomeTab/index.jsx @@ -2,7 +2,8 @@ import React, { useState, useEffect, useCallback } from "react"; import { Image, TouchableOpacity, View } from "react-native"; import { createBottomTabNavigator } from "@react-navigation/bottom-tabs"; import Stream from "../Stream"; -// import NoticeNav from "../NoticeDetail"; +// import { Badge } from "@rneui/themed"; +// import NoticeDetail from "../NoticeDetail"; import My from "../My"; import Posts from "../Posts"; import Space from "../Space"; @@ -145,23 +146,40 @@ export default function HomeTab({ navigation, route }) { }} /> {/* { if (focused) { return ( - + + + + ); } else { return ( - + + + + ); } }, diff --git a/screeens/NoticeDetail/ActiveNotice/index.js b/screeens/NoticeDetail/ActiveNotice/index.js index f4cfe36..452377b 100644 --- a/screeens/NoticeDetail/ActiveNotice/index.js +++ b/screeens/NoticeDetail/ActiveNotice/index.js @@ -13,33 +13,33 @@ export default function ActiveNotice({ navigation }) { + } /> + } /> + } /> + } /> + } /> + } /> diff --git a/screeens/NoticeDetail/NoticeNav/index.jsx b/screeens/NoticeDetail/NoticeNav/index.jsx index 5fc3917..0091ec4 100644 --- a/screeens/NoticeDetail/NoticeNav/index.jsx +++ b/screeens/NoticeDetail/NoticeNav/index.jsx @@ -7,6 +7,7 @@ import { import React, { useState, useEffect, useCallback } from "react"; import { useTailwind } from "tailwind-rn"; import { useSafeAreaInsets } from "react-native-safe-area-context"; +import { Badge } from "@rneui/themed"; import baseRequest from "../../../utils/baseRequest"; import { generateSignature } from "../../../utils/crypto"; export default function Message({ navigation }) { @@ -25,8 +26,8 @@ export default function Message({ navigation }) { ...base, }; const signature = await generateSignature(body); - const _response = await fetch( - `${apiUrl}/api/notification/list_unread_by_mid?signature=${signature}`, + const notice_response = await fetch( + `${apiUrl}/api/notification/get_unread_count_by_mid?signature=${signature}`, { method: "POST", headers: { @@ -35,16 +36,46 @@ export default function Message({ navigation }) { body: JSON.stringify(body), } ); - const _data = await _response.json(); - if (_data.ret === -1) { - Toast.show({ - type: "error", - text1: _data.msg, - topOffset: 60, - }); - return; - } - setData(_data.data.list); + const detailResponse = await fetch( + `${apiUrl}/api/contact_customer_service_session/list_by_mid?signature=${signature}`, + { + method: "POST", + headers: { + "Content-Type": "application/json", + }, + body: JSON.stringify({ + ...base, + mid: base.b_mid, + }), + } + ); + const detailData = await detailResponse.json(); + console.log(detailData); + const session_id = detailData.data.session.id; + // const message_response = await fetch( + // `${apiUrl}/api/contact_customer_service/query_unread_num?signature=${signature}`, + // { + // method: "POST", + // headers: { + // "Content-Type": "application/json", + // }, + // body: JSON.stringify({ ...base, session_id }), + // } + // ); + // console.log(JSON.stringify({ ...base, session_id })); + const notice_data = await notice_response.json(); + // const message_data = await message_response.json(); + // const _data = await _response.json(); + // if (_data.ret === -1) { + // Toast.show({ + // type: "error", + // text1: _data.msg, + // topOffset: 60, + // }); + // return; + // } + // setData(_data.data.list); + // console.log(message_data); } catch (error) { console.error(error); } @@ -105,29 +136,20 @@ export default function Message({ navigation }) { 官方消息通知 - + 11:00 - - - 1 - - + @@ -166,11 +188,16 @@ export default function Message({ navigation }) { 展示相关活动推送信息 - + 11:00 - 99 - + */} + @@ -240,29 +272,20 @@ export default function Message({ navigation }) { 请回复您的相关消息 - + 11:00 - - - 1 - - + diff --git a/screeens/NoticeDetail/SystemNotice/index.jsx b/screeens/NoticeDetail/SystemNotice/index.jsx index e428593..057ada3 100644 --- a/screeens/NoticeDetail/SystemNotice/index.jsx +++ b/screeens/NoticeDetail/SystemNotice/index.jsx @@ -16,7 +16,7 @@ export default function SystemNotice({ navigation }) { type="ionicon" hasLink={null} name="megaphone" - size={24} + size={18} color="white" /> } @@ -24,7 +24,7 @@ export default function SystemNotice({ navigation }) { + } /> } @@ -44,7 +44,7 @@ export default function SystemNotice({ navigation }) { type="ionicon" hasLink={null} name="megaphone" - size={24} + size={18} color="white" /> } @@ -52,13 +52,13 @@ export default function SystemNotice({ navigation }) { + } /> + } /> diff --git a/screeens/NoticeDetail/components/NoticeItem/index.jsx b/screeens/NoticeDetail/components/NoticeItem/index.jsx index 2f12063..6f15aef 100644 --- a/screeens/NoticeDetail/components/NoticeItem/index.jsx +++ b/screeens/NoticeDetail/components/NoticeItem/index.jsx @@ -21,8 +21,8 @@ export default function NoticeItem({ leftIcon, hasLink }) { ...tailwind( "flex justify-center items-center rounded-full p-2 mr-2" ), - width: 42, - height: 42, + width: 34, + height: 34, backgroundColor: "#ffffff1a", }} > diff --git a/screeens/SpaceSetting/SpaceSearch/index.jsx b/screeens/SpaceSetting/SpaceSearch/index.jsx index c448008..ab386e9 100644 --- a/screeens/SpaceSetting/SpaceSearch/index.jsx +++ b/screeens/SpaceSetting/SpaceSearch/index.jsx @@ -278,7 +278,7 @@ export default function SpaceSearch({ navigation }) { (item, index) => renderItem(item, index) // )} - {data.length === 0 && } + {data.length === 0 && }