no message

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

@ -1,6 +1,6 @@
<template>
<div style="" class="pbInput" :style="writeStyle">
<div class="input-root">
<div class="input-root" style="position: relative;">
<!-- 以下这个 div 用于确保 vue2 ref 会更新 -->
<div style="display: none">
<div>{{ teamMute ? "禁言" : "不禁言" }}</div>
@ -157,6 +157,56 @@
<UniPopup ref="popupRef" background-color="#ffffff" type="bottom" mask-background-color="rgba(0,0,0,0.4)" @change="onPopupChange">
<MentionMemberList :team-id="to"></MentionMemberList>
</UniPopup>
<div class="choose-job-send"
style="
width: calc(100vw - 48px);
min-height: 50px;
background-color: #fff;
position: absolute;
left: 50%;
transform: translateX(-50%);
top: -92px;
padding: 12px;
border-radius: 12px;
"
v-if="chooseData"
>
<div class="g_w_all g_h_all">
<div class="g_mb_12 g_flex_row_between">
<div style="font-weight:bold;font-size:16px;color:#000" class="g_flex_1">{{ chooseData.title }}</div>
<div class="g_flex_none g_flex_column_center">
<i class="iconfont icon-guanbi" style="font-size: 14px;color: #666;"></i>
</div>
</div>
<div class="g_flex_row_between">
<div class="g_flex_1 g_flex_column_center">
<div class="g_flex_row_start">
<view class="g_fs_16 g_fw_600 g_c_f40 g_lh_1_2 g_flex_column_center"
v-if="chooseData.salaryClassifyValue"
v-html="chooseData.salaryClassifyValue"> </view>
<view class="g_fs_14 g_c_9" v-if="chooseData.monthPay">
{{ chooseData.monthPay ? "丨" + chooseData.monthPay : "" }}
</view>
</div>
</div>
<div class="g_flex_none g_flex_column_center">
<div style="
font-size: 12px;
border-radius: 20px;
height: 26px;
line-height: 26px;
width: 70px;
text-align: center;
background-color: #1890ff;
color: #fff;
">
发送职位
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</template>
@ -755,8 +805,9 @@ let uninstallTeamWatch = () => {};
const msgHeight = ref(0);
const screenHeight = ref(0);
screenHeight.value = uni.getSystemInfoSync().windowHeight;
const chooseData = ref({});
onMounted(() => {
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));

@ -1377,12 +1377,8 @@ export default {
}
});
that.jobDetail.info = newList.join("丨");
that.F.wyyxPost(
that.api.wyyx_sendCard,
{
let sendParams = {
conversationType: 1,
// senderUserId: uni.getStorageSync("apply-uid"), // id id
// receiverUserId: cusData, // id
senderAccid: uni.getStorageSync("im-accid"),
receiverAccid: cusData.accid,
type: 100000,
@ -1395,8 +1391,8 @@ export default {
monthPay: that.jobDetail.monthPay,
jobId: that.uid,
},
},
() => {
}
uni.setStorageSync("im_sendParams", JSON.stringify(sendParams));
uni.navigateTo({
url: "/root/NEUIKit/pages/Chat/index",
});
@ -1404,9 +1400,6 @@ export default {
},
() => {}
);
},
() => {}
);
});
},
//

Loading…
Cancel
Save