no message

cyl/master-0822^2
jscyl13849007907 3 months ago
parent e9891a2e7c
commit 9798941a9d

@ -437,6 +437,7 @@ onUnmounted(() => {
connectedWatch();
msgsWatch();
conversationTypeWatch();
uni.removeStorageSync('im_sendParams');
});
const query = ref({
page: 1,

@ -807,7 +807,9 @@ const screenHeight = ref(0);
screenHeight.value = uni.getSystemInfoSync().windowHeight;
const chooseData = ref({});
onMounted(() => {
chooseData.value = JSON.parse(uni.getStorageSync("im_sendParams")).jobDetail;
if(uni.getStorageSync("im_sendParams")){
chooseData.value = JSON.parse(uni.getStorageSync("im_sendParams")).jobDetail;
}
uninstallTeamWatch = autorun(() => {
if (props.conversationType === V2NIMConst.V2NIMConversationType.V2NIM_CONVERSATION_TYPE_TEAM) {
const _team: V2NIMTeam = deepClone(uni.$UIKitStore.teamStore.teams.get(props.to));

Loading…
Cancel
Save