123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641 |
- <template>
- <view class="box">
- <view class="box-top">
- <view class="box-top-title">
- {{ info.name }}
- </view>
- </view>
- <!-- newsId 需要和聊天列表里面的id对应 永远取最后列表中的最后一个就可以做到发送消息即时滚动到底部 -->
- <scroll-view ref="chatRef" :scroll-with-animation="scrollAnimation" :scroll-into-view="newsId" class="box-main" scroll-y="true">
- <view class="box-main-more" v-if="hasMore">
- <text @click="handleMore">查看更多</text>
- </view>
- <view v-for="(val, index) in items" :key="val.id" :id="'s'+val.id+index">
- <view class="box-main-time">{{ timesTampChange(+(val.timestamp.padEnd(13, '0'))) }}</view>
- <template v-if="val.payload?.type === 102">
- <view class="jobCard">
- <view class="jobCard-title"> {{ formatName(val.payload?.content?.positionInfo?.name) }}</view>
- <view
- v-if="!val.payload?.content?.positionInfo?.payFrom && !val.payload?.content?.positionInfo?.payTo"
- class="jobCard-subtitle">
- 薪酬待遇: 面议
- </view>
- <view
- v-else
- class="jobCard-subtitle"
- >
- 薪酬待遇:
- {{ val.payload?.content?.positionInfo?.payFrom ? val.payload?.content?.positionInfo?.payFrom + ' - ' : '' }}
- {{ val.payload?.content?.positionInfo?.payTo }}
- </view>
- <view class="jobCard-tag">
- <view
- v-for="(v, i) in (val.payload?.content?.positionInfo?.enterprise?.welfareList || [])"
- :key="val.message_id + v + i"
- style="margin: 10rpx"
- >
- <uni-tag
- :text="v"
- type="success"
- />
- </view>
- </view>
- <view class="jobCard-divider"></view>
- <view class="jobCard-subtitle text-right">
- <v-avatar size="24">
- <v-img :src="val.payload?.content?.positionInfo?.contact?.avatar"></v-img>
- </v-avatar>
- {{ val.payload?.content?.positionInfo?.contact?.name }}
- {{ val.payload?.content?.positionInfo?.contact?.postNameCn }}
- {{ formatName(val.payload?.content?.positionInfo?.enterprise?.anotherName || val.payload?.content?.positionInfo?.enterprise?.name) }}
- </view>
- <div class="jobCard-subtitle text-right">
- 地址:{{ val.payload?.content?.positionInfo?.address }}
- </div>
- </view>
- </template>
- <view :class="['message-view_item', val.from_uid === IM.uid ? 'is-self' : 'is-other']">
- <view class="image">
- <image
- :data-target="getUserAvatar(info.avatar, info.sex, info.channelID === 'system' ? true : false)"
- class="header"
- :src="(
- val.from_uid === IM.uid ?
- getUserAvatar(useUserStore.userInfo?.avatar, useUserStore.userInfo?.sex) :
- getUserAvatar(info.avatar, info.sex, info.channelID === 'system' ? true : false)
- )"
- ></image>
- </view>
- <!-- 显示沟通职位 -->
- <template v-if="val.payload?.type === 102">
- <view class="message-text" :class="val.from_uid === IM.uid ? 'active' : ''">
- {{ val.payload?.content.text }}
- </view>
- </template>
- <!-- 发起面试邀请 -->
- <view class="message-text none" v-else-if="val.payload?.type === 101">
- <uni-tag text="发起了面试邀请" custom-style="background-color: #00B760; border-color: #00B760; color: #fff;" />
- </view>
- <view class="message-text none" v-else-if="val.payload?.type === 103">
- <uni-tag text="拒绝了面试邀请" type="error" />
- </view>
- <view class="message-text none" v-else-if="val.payload?.type === 104">
- <uni-tag text="接受了面试邀请" custom-style="background-color: #00B760; border-color: #00B760; color: #fff;" />
- </view>
- <view v-else-if="val.payload.type === 105" class="text-end">
- <uni-tag
- v-if="val.from_uid === IM.uid"
- :text="val.payload.content?.type === 1 ? '附件简历已发送' : '简历请求已发送'"
- custom-style="background-color: #00B760; border-color: #00B760; color: #fff;"
- />
- <view
- v-if="val.payload.content?.type !== 2 || val.from_uid !== IM.uid"
- class="message-text card"
- >
- <view class="text-left">
- <text v-if="val.payload.content?.type === 1">{{
- val.payload.content?.query?.title || '附件简历' }}
- </text>
- <text v-if="val.payload.content?.type === 2">
- 我想要一份您的简历,您是否同意
- </text>
- </view>
- <view class="btn-actions">
- <text class="btn" v-if="val.payload.content?.type === 1" @tap="handlePreview(val.payload)">点击预览附件简历</text>
- </view>
- </view>
- </view>
- <view v-else-if="val.payload.type === -1" class="message-text" :class="{ active: val.from_uid === IM.uid}">
- {{ val.payload?.content?.text }}
- </view>
- <view v-else class="message-text" :class="{ active: val.from_uid === IM.uid}">
- {{ val.payload?.content }}
- </view>
- </view>
- </view>
- </scroll-view>
-
- <view class="box-bottom" v-if="channelItem?.channelID !== 'system'">
- <!-- <view class="box-bottom-tool" style="display: flex; justify-content: start;">
- <text class="toolBtn" @tap="handleFindResume">求简历</text>
- <text class="toolBtn ss-m-l-10" @tap="handleInviteInterview">面试邀约</text>
- </view> -->
-
- <view class="d-flex align-end textBox" v-if="channelItem?.channelID !== 'system'">
- <textarea
- v-model="inputValue"
- :cursor-spacing="25"
- :show-confirm-bar="false"
- :disable-default-padding="true"
- confirm-type="send"
- auto-height
- @confirm="handleSend"
- />
- <text class="submitBtn" @tap="handleSend">发 送</text>
- </view>
- </view>
- <!-- <uni-popup ref="invitePopup" background-color="#fff" type="bottom">
- <view style="background-color: #fff; height: 70vh;">
- </view>
- </uni-popup> -->
- </view>
- </template>
- <script setup>
- import { ref, watch, onMounted, computed } from 'vue'
- import { onLoad } from '@dcloudio/uni-app'
- import { useIMStore } from '@/store/im'
- import { userStore } from '@/store/user'
- import { initConnect, send, initChart, getMoreMessages, toChannel } from '@/hooks/useIM'
- import { timesTampChange } from '@/utils/date'
- import { getUserAvatar } from '@/utils/avatar'
- import { formatName } from '@/utils/getText'
- import { preview } from '@/utils/preview'
- import { getAccessToken } from '@/utils/request'
- import { showAuthModal } from '@/hooks/useModal'
- import { getJobAdvertisedList } from '@/api/new/position'
- const useUserStore = userStore()
- const userInfo = computed(() => useUserStore?.userInfo)
- const IM = useIMStore()
- const info = ref({})
- const chatRef = ref()
- const items = ref([])
- const channelItem = ref(null)
- const hasMore = ref(false)
- const pageSize = ref(1)
- const inputValue = ref('')
- const newsId = ref('') // newsId 需要和聊天列表里面的id对应 永远取最后列表中的最后一个就可以做到发送消息即时滚动到底部
- const scrollAnimation = ref(false)
- const isEmployment = ref('-1')
- onMounted(() => {
- setTimeout(() => {
- scrollAnimation.value = true
- }, 1500)
- })
- const {
- conversationList,
- updateUnreadCount,
- resetUnread
- } = initConnect(async (successful) => {
- if (!successful) {
- uni.showToast({
- title: '发送失败',
- icon: 'none',
- mask: true,
- })
- return
- }
- inputValue.value = ''
- // // 发送成功
- const { list } = await getMoreMessages(1, channelItem.value)
- items.value = list.value
- })
- watch(
- () => conversationList.value,
- async (val) => {
- if (!channelItem.value) {
- return
- }
- const { list } = await getMoreMessages(1, channelItem.value)
-
- items.value = list.value
- setScrollBottom()
- // 清除未读消息
- resetUnread(channelItem.value, userInfo.value?.enterpriseId)
- },
- {
- deep: true,
- immediate: true
- }
- )
- async function init(userId, enterpriseId) {
- const { channel, list, more } = await initChart(userId, enterpriseId)
- hasMore.value = more
- channelItem.value = channel.value
- items.value = list.value
- setScrollBottom()
- }
- const setScrollBottom = () => {
- if (items.value?.length) {
- const lastOne = items.value[items.value.length-1]
- const index = items.value.length-1
- newsId.value = 's' + lastOne.id + index // newsId 需要和聊天列表里面的id对应 永远取最后列表中的最后一个就可以做到发送消息即时滚动到底部
- }
- }
- function handleSend () {
- if (!inputValue.value) {
- uni.showToast({ title: '不能发送空白信息', icon: 'none' })
- return
- }
- send(inputValue.value, channelItem.value)
- }
- // 职位列表
- const jobNum = ref(0)
- const jobList = ref([])
- const getJobList = async () => {
- const { data } = await getJobAdvertisedList({ pageNo: 1, pageSize: 10, hasExpiredData: false, status: 0 })
- jobNum.value = data?.total || 0
- jobList.value = data?.list ? data?.list.map(e => {
- return { text: formatName(e.name), value: e.id, ...e }
- }) : []
- }
- // 求简历
- const handleFindResume = async () => {
- if (!getAccessToken()) {
- showAuthModal()
- return
- }
- // 企业必须有招聘中的职位才能发起面试邀请
- if (jobNum.value === 0) {
- uni.showToast({
- title: '请先发布招聘职位',
- icon: 'none',
- duration: 2000
- })
- return
- }
- }
- // 邀约面试
- const invitePopup = ref()
- const handleInviteInterview = () => {
- if (!getAccessToken()) {
- showAuthModal()
- return
- }
- // 企业必须有招聘中的职位才能发起面试邀请
- if (jobNum.value === 0) {
- uni.showToast({
- title: '请先发布招聘职位',
- icon: 'none',
- duration: 2000
- })
- return
- }
- console.log(info.value, '邀请面试', jobList.value, invitePopup.value)
- invitePopup.value.open()
- // uni.navigateTo({
- // url: `/pagesB/InviteInterview/index?id=${info.value.id}`
- // })
- }
- // 预览简历
- function handlePreview (payload) {
- if (!payload?.content?.query?.src) {
- uni.showToast({ title: '简历地址不存在', icon: 'none' })
- return
- }
- preview(payload.content.query.src)
- }
- // 查看更多
- async function handleMore () {
- try {
- uni.showLoading({
- title: '加载中...'
- })
- pageSize.value++
- const { list, more } = await getMoreMessages(pageSize.value, channelItem.value)
- items.value.unshift(...list.value)
- hasMore.value = more
- } finally {
- uni.hideLoading()
- }
- }
- onLoad(async (options) => {
- info.value = Object.keys(options).reduce((r, k) => {
- r[k] = decodeURIComponent(options[k])
- return r
- }, {})
- isEmployment.value = info.value.isEmployment
- channelItem.value = toChannel(info.value.channelID, info.value.channelType)
- if (channelItem.value.channelID === 'system') {
- const { list, more } = await getMoreMessages(1, channelItem.value)
- hasMore.value = more
- items.value = list.value
- setScrollBottom()
- // 清除未读消息
- resetUnread(channelItem.value, userInfo.value?.enterpriseId)
- // 更新未读消息
- updateUnreadCount()
- return
- }
- await init(info.value.id, info.value.enterpriseId)
- // await getJobList() // 获取招聘中的职位
- // 清除未读消息
- resetUnread(channelItem.value, userInfo.value?.enterpriseId)
- // 更新未读消息
- updateUnreadCount()
- })
- </script>
- <style lang="scss" scoped>
- .white {
- color: #FFF !important;
- }
- .text-left {
- text-align: left !important;
- }
- .text-right {
- text-align: right !important;
- }
- .box {
- width: 100%;
- height: 100vh;
- display: flex;
- flex-direction: column;
- &-top {
- &-title {
- padding: 0 60rpx;
- box-sizing: border-box;
- width: 100%;
- height: 80rpx;
- line-height: 80rpx;
- // text-align: center;
- border-bottom: 2rpx solid #EEE;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- .subText {
- font-size: .85em;
- color: #999;
- .gun {
- padding: 0 10rpx;
- }
- }
- }
- &-content {
- padding: 20rpx 50rpx;
- padding-bottom: 20rpx;
- border-bottom: 2rpx solid #eee;
- .color-666 {
- color: #666;
- }
- .font-weight-bold {
- font-weight: bold;
- }
- .color-primary {
- color: #009688;
- }
- .ml-3 {
- margin-left: 40rpx;
- }
- .mt-1 {
- margin-top: 12rpx;
- }
- .font-size-14 {
- font-size: 24rpx;
- }
- .py-1 {
- padding: 4rpx 0;
- }
- .tipsText {
- font-size: .75em;
- color: #999;
- }
- &-t {
- display: flex;
- justify-content: space-between;
- }
- .btnBox {
- display: flex;
- padding: 20rpx 60rpx;
- justify-content: space-around;
- }
- }
- }
- &-main {
- flex: 1;
- height: 0;
- padding: 40rpx;
- // overflow-y: auto;
- box-sizing: border-box;
- &-more {
- display: flex;
- justify-content: center;
- align-items: center;
- color: #24bc3e;
- font-size: .9em;
- padding: 20rpx 0;
- }
- &-time {
- user-select: none;
- position: relative;
- top: 16rpx;
- margin: 40rpx 0;
- text-align: center;
- max-height: 40rpx;
- text-align: center;
- font-weight: 400;
- font-size: .85em;
- color: #999;
- }
- .jobCard {
- padding: 30rpx;
- background: #E2F2F0;
- color: #009688 ;
- margin-top: 20rpx;
- max-width: unset;
- margin-right: 0;
- &-title {
- font-size: 1.2em;
- }
- &-subtitle {
- padding: 10rpx 0;
- // font-size: .5em;
- }
- &-divider {
- width: 100%;
- height: 2rpx;
- margin: 20rpx 0;
- background: #ddd;
- }
- &-tag {
- display: flex;
- flex-wrap: wrap;
- }
- }
- .message-view_item {
- display: flex;
- flex-direction: row;
- align-items: flex-start;
- margin: 16rpx 0;
- position: relative;
- .image {
- width: 60rpx;
- height: 60rpx;
- border-radius: 180rpx;
- // flex-grow: 1;
- // flex-shrink: 0;
- overflow: hidden;
- .header {
- width: 60rpx;
- height: 60rpx;
- }
- }
- .text-end {
- text-align: right !important;
- width: 400rpx;
- margin-right: 20rpx;
- }
- .message-text {
- overflow-wrap: break-word;
- background-color: #f0f2f5;
- border-radius: 12rpx;
- max-width: 75%;
- padding: 20rpx;
- &.active {
- background: #d5e6e8;
- }
- &.card {
- background: #E2F2F0;
- color: #009688 ;
- margin-top: 20rpx;
- max-width: unset;
- margin-right: 0;
- .btn-actions {
- margin: 40rpx auto 20rpx auto ;
- text-align: center;
- .btn {
- padding: 10rpx 30rpx;
- background: #C8E7D8;
- color: #43AC57;
- font-size: .75em;
- border-radius: 10rpx;
- }
- }
- }
- &.none {
- padding: 10rpx 0;
- background-color: unset;
- }
- &.active {
- background: #d5e6e8;
- }
- }
- }
- .is-self {
- flex-direction: row-reverse;
- display: flex;
- .message-text {
- margin-right: 20rpx;
- }
- }
- .is-other {
- .message-text {
- margin-left: 20rpx;
- }
- }
- }
- &-bottom {
- max-height: 300rpx;
- border-top: 2rpx solid #EEE;
- background: rgba(230, 230, 230, 0.5);
- padding: 20rpx 40rpx;
- box-sizing: border-box;
- &-tool {
- margin-bottom: 30rpx;
- .toolBtn {
- padding: 12rpx 20rpx;
- font-size: 24rpx;
- background: #18bc37;
- color: #FFF;
- border-radius: 10rpx;
- }
- }
- .textBox {
- align-items: flex-end;
- }
- textarea {
- border-radius: 10rpx;
- width: 100%;
- min-height: 80rpx;
- max-height: 180rpx;
- padding: 20rpx;
- box-sizing: border-box;
- background: #FFF;
- }
- .submitBtn {
- width: 140rpx;
- line-height: 80rpx;
- height: 80rpx;
- font-size: 28rpx;
- background: #18bc37;
- color: #FFF;
- margin-left: 20rpx;
- text-align: center;
- border-radius: 10rpx;
- }
- }
- .popup-title {
- padding: 30rpx 20rpx;
- display: flex;
- justify-content: space-between;
- border-bottom: 2rpx solid #DDD;
- }
- .popup-content {
- padding: 20rpx 40rpx;
- color: #999;
- display: flex;
- align-content: center;
- justify-items: center;
- .iconBox {
- width: 40rpx;
- }
- .text {
- margin-left: 20rpx;
- &.active {
- color: #00B760;
- }
- }
- }
- .popup-upload {
- // display: flex;
- // align-items: center;
- // justify-content: center;
- // flex-direction: column;
- // width: 70%;
- width: 80vw;
- font-size: .75em;
- color: #999;
- padding: 40rpx;
- &-box {
- width: 200rpx;
- height: 200rpx;
- text-align: center;
- line-height: 200rpx;
- border: 4rpx solid #ddd;
- border-radius: 8rpx;
- margin: 0 auto;
- }
- }
- .popup-actions {
- padding: 60rpx;
- .default {
- background: #00B760;
- color: #DDD;
- font-size: .9em;
- }
- }
- }
- </style>
|