index.vue 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900
  1. <template>
  2. <view class="box">
  3. <view class="box-top">
  4. <view class="box-top-title">
  5. {{ info.name }}
  6. <text class="subText">
  7. {{ info?.postName && info?.postName !== 'null' && info?.postName !== 'undefined' ? info.postName : '' }}
  8. <text v-if="info?.postName && info?.postName !== 'null' && info?.postName !== 'undefined' && info.enterpriseName" class="gun">|</text>
  9. {{ formatName(info.enterpriseName) }}
  10. </text>
  11. </view>
  12. <!-- <view class="box-top-content" v-if="interview.length">
  13. <view v-for="val in interview" :key="val.id" class="color-666">
  14. <view class="box-top-content-t">
  15. <view class="font-weight-bold color-primary">
  16. <text>{{ val.job.name }}</text>
  17. <text v-if="!val.job.payFrom && !val.job.payTo" class="ml-3">面议</text>
  18. <text v-else class="ml-3">{{ val.job.payFrom ? val.job.payFrom + '-' : '' }}{{ val.job.payTo }}</text>
  19. </view>
  20. <view :style="`color: ${val.statusColor};`" >
  21. {{ val.statusText }}
  22. </view>
  23. </view>
  24. <view class="mt-1 font-size-14 ellipsis" style="max-width: 100%;">
  25. <view class="py-1">面试时间:{{ timesTampChange(val.time, 'Y-M-D h:m') }}</view>
  26. <view class="py-1">面试地点:{{ val.address }}</view>
  27. <view class="py-1">联系电话:{{ val.invitePhone }}</view>
  28. </view>
  29. <view class="bottom">
  30. <view class="tipsText" @click="handleToCenter">在“个人中心-面试”中管理我的面试</view>
  31. <view v-if="val.status === '0'" class="btnBox">
  32. <button size="mini" type="warn" @click="handleRefuse(val)">拒绝邀请</button>
  33. <button size="mini" type="primary" @click="handleAgree(val)">接受邀请</button>
  34. </view>
  35. </view>
  36. </view>
  37. </view> -->
  38. <uni-notice-bar v-if="hasWaitingProcessingInterview" show-get-more single text="您有待处理的面试邀请,点击查看详情" @click="handleToCenter"/>
  39. </view>
  40. <!-- newsId 需要和聊天列表里面的id对应 永远取最后列表中的最后一个就可以做到发送消息即时滚动到底部 -->
  41. <scroll-view ref="chatRef" :scroll-with-animation="scrollAnimation" :scroll-into-view="newsId" class="box-main" scroll-y="true">
  42. <view class="box-main-more" v-if="hasMore">
  43. <text @click="handleMore">查看更多</text>
  44. </view>
  45. <view v-for="(val, index) in items" :key="val.id" :id="'s'+val.id+index">
  46. <view class="box-main-time">{{ timesTampChange(+(val.timestamp.padEnd(13, '0'))) }}</view>
  47. <template v-if="val.payload?.type === 102">
  48. <view class="jobCard">
  49. <!-- <view style="display: flex;">
  50. <image v-if="info.jobFairId" src="/static/svg/jobFair.svg" class=" ss-m-r-10" style="width: 20px; height: 20px;"></image>
  51. </view> -->
  52. <view class="jobCard-title"> {{ formatName(val.payload?.content?.positionInfo?.name) }}</view>
  53. <view
  54. v-if="!val.payload?.content?.positionInfo?.payFrom && !val.payload?.content?.positionInfo?.payTo"
  55. class="jobCard-subtitle">
  56. 薪酬待遇: 面议
  57. </view>
  58. <view
  59. v-else
  60. class="jobCard-subtitle"
  61. >
  62. 薪酬待遇:
  63. {{ val.payload?.content?.positionInfo?.payFrom ? val.payload?.content?.positionInfo?.payFrom + ' - ' : '' }}
  64. {{ val.payload?.content?.positionInfo?.payTo }}
  65. </view>
  66. <view class="jobCard-tag">
  67. <view
  68. v-for="(v, i) in (val.payload?.content?.positionInfo?.enterprise?.welfareList || [])"
  69. :key="val.message_id + v + i"
  70. style="margin: 10rpx"
  71. >
  72. <uni-tag
  73. :text="v"
  74. type="success"
  75. />
  76. </view>
  77. </view>
  78. <view class="jobCard-divider"></view>
  79. <view class="jobCard-subtitle text-right">
  80. <v-avatar size="24">
  81. <v-img :src="val.payload?.content?.positionInfo?.contact?.avatar"></v-img>
  82. </v-avatar>
  83. {{ val.payload?.content?.positionInfo?.contact?.name }}
  84. {{ val.payload?.content?.positionInfo?.contact?.postNameCn }}
  85. {{ formatName(val.payload?.content?.positionInfo?.enterprise?.anotherName || val.payload?.content?.positionInfo?.enterprise?.name) }}
  86. </view>
  87. <div class="jobCard-subtitle text-right">
  88. 地址:{{ val.payload?.content?.positionInfo?.address }}
  89. </div>
  90. </view>
  91. </template>
  92. <view :class="['message-view_item', val.from_uid === IM.uid ? 'is-self' : 'is-other']">
  93. <view class="image">
  94. <image
  95. :data-target="getUserAvatar(info.avatar, info.sex, info.channelID === 'system' ? true : false)"
  96. class="header"
  97. :src="(
  98. val.from_uid === IM.uid ?
  99. getUserAvatar(useUserStore.baseInfo?.avatar, useUserStore.baseInfo?.sex) :
  100. getUserAvatar(info.avatar, info.sex, info.channelID === 'system' ? true : false)
  101. )"
  102. ></image>
  103. </view>
  104. <!-- 显示沟通职位 -->
  105. <template v-if="val.payload?.type === 102">
  106. <view class="message-text" :class="val.from_uid === IM.uid ? 'active' : ''">
  107. {{ val.payload?.content.text }}
  108. </view>
  109. </template>
  110. <!-- 发起面试邀请 -->
  111. <view class="message-text none" v-else-if="val.payload?.type === 101">
  112. <uni-tag text="发起了面试邀请" custom-style="background-color: #00B760; border-color: #00B760; color: #fff;" />
  113. </view>
  114. <view class="message-text none" v-else-if="val.payload?.type === 103">
  115. <uni-tag text="拒绝了面试邀请" type="error" />
  116. </view>
  117. <view class="message-text none" v-else-if="val.payload?.type === 104">
  118. <uni-tag text="接受了面试邀请" custom-style="background-color: #00B760; border-color: #00B760; color: #fff;" />
  119. </view>
  120. <view v-else-if="val.payload.type === 105" class="text-end">
  121. <uni-tag
  122. v-if="val.from_uid === IM.uid"
  123. :text="val.payload.content?.type === 1 ? '附件简历已发送' : '简历请求已发送'"
  124. custom-style="background-color: #00B760; border-color: #00B760; color: #fff;"
  125. />
  126. <view
  127. v-if="val.payload.content?.type !== 2 || val.from_uid !== IM.uid"
  128. class="message-text card"
  129. >
  130. <view class="text-left">
  131. <text v-if="val.payload.content?.type === 1">{{
  132. val.payload.content?.query?.title || '附件简历' }}
  133. </text>
  134. <text v-if="val.payload.content?.type === 2">
  135. 我想要一份您的简历,您是否同意
  136. </text>
  137. </view>
  138. <view class="btn-actions">
  139. <text class="btn" v-if="val.payload.content?.type === 1" @tap="handlePreview(val.payload)">点击预览附件简历</text>
  140. <text class="btn" v-if="val.payload.content?.type === 2" @tap="handleFindResume">点击发送附件简历</text>
  141. </view>
  142. </view>
  143. </view>
  144. <view v-else-if="val.payload.type === -1" class="message-text" :class="{ active: val.from_uid === IM.uid}">
  145. {{ val.payload?.content?.text }}
  146. </view>
  147. <view v-else class="message-text" :class="{ active: val.from_uid === IM.uid}">
  148. {{ val.payload?.content }}
  149. </view>
  150. </view>
  151. </view>
  152. </scroll-view>
  153. <view class="box-bottom" v-if="channelItem?.channelID !== 'system'">
  154. <view class="box-bottom-tool" style="display: flex; justify-content: space-between;">
  155. <text class="toolBtn" :class="{ disabled: !isSendResume }" @tap="handleFindResume">{{ isSendResume ? '简历已投递' : '发送简历' }}</text>
  156. <!-- <uni-tag :text="isSendResume ? '简历已投递' : '发送简历'" :disabled="isSendResume" type="success" @tap="handleFindResume"/> -->
  157. <!-- <uni-tag text="发 送" type="success" @tap="handleSend"/> -->
  158. </view>
  159. <view class="d-flex align-end textBox" v-if="channelItem?.channelID !== 'system'">
  160. <textarea
  161. v-model="inputValue"
  162. :cursor-spacing="25"
  163. :show-confirm-bar="false"
  164. :disable-default-padding="true"
  165. confirm-type="send"
  166. auto-height
  167. @confirm="handleSend"
  168. />
  169. <text class="submitBtn" @tap="handleSend">发 送</text>
  170. </view>
  171. </view>
  172. <uni-popup ref="popup" background-color="#fff">
  173. <view class="popup-title">
  174. <text>发送简历选择</text>
  175. <uni-icons type="closeempty" size="20" @tap="handleClose"></uni-icons>
  176. </view>
  177. <view v-for="resume in resumeList" :key="resume.id" class="popup-content" @tap="resumeCheck = resume">
  178. <view class="iconBox">
  179. <uni-icons
  180. v-show="resumeCheck.id === resume.id"
  181. type="checkmarkempty"
  182. size="20"
  183. :color="resumeCheck.id === resume.id ? '#43AC57' : '#999'"></uni-icons>
  184. </view>
  185. <text class="text" :class="resumeCheck.id === resume.id ? 'active' : ''">{{ resume.title }}</text>
  186. </view>
  187. <view v-if="!resumeList.length" class="popup-upload" @click="handleUploadResume">
  188. <view class="popup-upload-box">
  189. <uni-icons type="plusempty" size="50" color="#f1f1f1"></uni-icons>
  190. </view>
  191. <text>温馨提示:您还未上传过简历,点击选取微信聊天文件投递。请在手机上打开此小程序进行文件上传,暂不支持在桌面版小程序中上传文件。</text>
  192. </view>
  193. <view v-if="resumeList.length" class="popup-actions">
  194. <button class="default" type="default" @click="handleSendResume">发送简历</button>
  195. </view>
  196. </uni-popup>
  197. <!-- <uni-popup ref="confirm" type="dialog">
  198. <uni-popup-dialog
  199. :type="isAgree ? 'success' : 'warn'"
  200. cancelText="取消"
  201. confirmText="确认"
  202. title="系统提示"
  203. :content="isAgree ? '确认接受面试吗?' : '确认拒绝面试吗?'"
  204. @confirm="handleConfirm"
  205. @close="handleCloseConfirm"
  206. ></uni-popup-dialog>
  207. </uni-popup> -->
  208. </view>
  209. </template>
  210. <script setup>
  211. import { ref, watch, onMounted } from 'vue'
  212. import { onLoad } from '@dcloudio/uni-app'
  213. import { useIMStore } from '@/store/im'
  214. import { userStore } from '@/store/user'
  215. import { initConnect, send, initChart, getMoreMessages, toChannel } from '@/hooks/useIM'
  216. import { getDict } from '@/hooks/useDictionaries'
  217. import { timesTampChange } from '@/utils/date'
  218. import { getUserAvatar } from '@/utils/avatar'
  219. import { formatName } from '@/utils/getText'
  220. import { preview } from '@/utils/preview'
  221. import { getPersonResumeCv, saveResume } from '@/api/user'
  222. import { uploadFile } from '@/api/file'
  223. import { getInterviewInviteListByInviteUserId, getMessageType } from '@/api/common'
  224. // import { userInterviewInviteReject } from '@/api/personalCenter'
  225. import {
  226. jobCvRelSend,
  227. jobCvRelCheckSend,
  228. jobCvRelHireSend
  229. } from '@/api/position'
  230. const useUserStore = userStore()
  231. const IM = useIMStore()
  232. const info = ref({})
  233. const chatRef = ref()
  234. const items = ref([])
  235. const channelItem = ref(null)
  236. const hasMore = ref(false)
  237. const popup = ref()
  238. const resumeCheck = ref({})
  239. const resumeList = ref([]) // 简历列表
  240. const pageSize = ref(1)
  241. // 求职者面试列表
  242. const interview = ref([])
  243. // 求职端-获取求职者与当前邀请人的面试记录
  244. const statusList = ref([])
  245. const inputValue = ref('')
  246. // const isAgree = ref(false)
  247. // const confirm = ref()
  248. // const chooseInvite = ref(null)
  249. const newsId = ref('') // newsId 需要和聊天列表里面的id对应 永远取最后列表中的最后一个就可以做到发送消息即时滚动到底部
  250. const scrollAnimation = ref(false)
  251. const isSendResume = ref(false)
  252. const positionInfo = ref({})
  253. const isEmployment = ref('-1')
  254. onMounted(() => {
  255. setTimeout(() => {
  256. scrollAnimation.value = true
  257. }, 1500)
  258. })
  259. const {
  260. conversationList,
  261. // updateConversation,
  262. updateUnreadCount,
  263. // deleteConversations,
  264. resetUnread
  265. } = initConnect(async (successful) => {
  266. if (!successful) {
  267. uni.showToast({
  268. title: '发送失败',
  269. icon: 'none',
  270. mask: true,
  271. })
  272. return
  273. }
  274. inputValue.value = ''
  275. // chatRef.value.reset()
  276. // // 发送成功
  277. const { list } = await getMoreMessages(1, channelItem.value)
  278. // updateConversation()
  279. items.value = list.value
  280. // chatRef.value.scrollBottom()
  281. })
  282. watch(
  283. () => conversationList.value,
  284. async (val) => {
  285. if (!channelItem.value) {
  286. return
  287. }
  288. const { list } = await getMoreMessages(1, channelItem.value)
  289. if (list.value.length) {
  290. const item = list.value[list.value.length - 1]
  291. const arr = [101, 103, 104]
  292. if (arr.includes(item.payload?.type)) {
  293. getInterviewInviteList()
  294. }
  295. }
  296. items.value = list.value
  297. setScrollBottom()
  298. // 清除未读消息
  299. resetUnread(channelItem.value)
  300. },
  301. {
  302. deep: true,
  303. immediate: true
  304. }
  305. )
  306. async function init(userId, enterpriseId) {
  307. const { channel, list, more } = await initChart(userId, enterpriseId)
  308. hasMore.value = more
  309. channelItem.value = channel.value
  310. items.value = list.value
  311. setScrollBottom()
  312. }
  313. const setScrollBottom = () => {
  314. if (items.value?.length) {
  315. const lastOne = items.value[items.value.length-1]
  316. const index = items.value.length-1
  317. newsId.value = 's' + lastOne.id + index // newsId 需要和聊天列表里面的id对应 永远取最后列表中的最后一个就可以做到发送消息即时滚动到底部
  318. }
  319. }
  320. const hasWaitingProcessingInterview = ref(false) // 是否有待接受的面试邀请
  321. async function getInterviewInviteList () {
  322. if (!info.value.id) return
  323. const { data } = await getInterviewInviteListByInviteUserId(info.value.id)
  324. interview.value = data ? data.slice(0, 1).map(e => {
  325. const statusItem = statusList.value.find(_e => _e.value === e.status)
  326. const statusText = statusItem?.label || ''
  327. const statusColor = ['5', '98', '99'].includes(e.status)
  328. return {
  329. ...e,
  330. statusColor: statusColor ? '#FE574A' : '#0E8E80',
  331. statusText
  332. }
  333. }) : []
  334. hasWaitingProcessingInterview.value = interview.value.some(e => e.status === '0')
  335. }
  336. const getStatusList = async () => {
  337. try {
  338. const { data } = await getDict('menduner_interview_invite_status')
  339. if (data.data.length) {
  340. statusList.value = data.data
  341. }
  342. } catch (error) {
  343. }
  344. }
  345. function handleSend () {
  346. if (!inputValue.value) {
  347. uni.showToast({ title: '不能发送空白信息', icon: 'none' })
  348. return
  349. }
  350. send(inputValue.value, channelItem.value)
  351. }
  352. function handleToCenter () {
  353. uni.navigateTo({
  354. url: '/pagesA/interview/index?index=1'
  355. })
  356. }
  357. // 预览简历
  358. function handlePreview (payload) {
  359. if (!payload?.content?.query?.src) {
  360. uni.showToast({ title: '简历地址不存在', icon: 'none' })
  361. return
  362. }
  363. preview(payload.content.query.src)
  364. }
  365. // 获取简历
  366. async function handleFindResume () {
  367. if (isSendResume.value) {
  368. return
  369. }
  370. try {
  371. // 获取简历列表
  372. const { data } = await getPersonResumeCv()
  373. if (data.length === 0) {
  374. uni.showToast({
  375. title: '您还未上传过简历,请先上传简历后再投递',
  376. icon: 'none',
  377. mask: true,
  378. duration: 3000
  379. })
  380. }
  381. resumeList.value = data || []
  382. resumeCheck.value = data && data.length ? data[0] : ''
  383. popup.value.open('center')
  384. } finally {
  385. uni.hideLoading()
  386. }
  387. }
  388. // 关闭简历窗口
  389. function handleClose () {
  390. popup.value.close()
  391. }
  392. // 发送简历
  393. async function handleSendResume () {
  394. if (!Object.keys(resumeCheck.value).length) {
  395. uni.showToast({ title: '请选择要投递的简历', icon: 'none' })
  396. return
  397. }
  398. const text = {
  399. remark: '发送简历',
  400. query: {
  401. src: resumeCheck.value.url,
  402. title: resumeCheck.value.title,
  403. id: resumeCheck.value.id,
  404. },
  405. type: 1
  406. }
  407. send (JSON.stringify(text), channelItem.value, 105)
  408. try {
  409. if (isEmployment.value !== '-1') {
  410. await jobCvRelHireSend({
  411. jobId: positionInfo.value.id,
  412. // ...(jobFairId && { jobFairId }),
  413. url: resumeCheck.value.url,
  414. recommendUserId: isEmployment.value
  415. })
  416. } else {
  417. await jobCvRelSend({
  418. jobId: positionInfo.value.id,
  419. // ...(jobFairId && { jobFairId }),
  420. title: resumeCheck.value.title,
  421. url: resumeCheck.value.url,
  422. type: positionInfo.value.hire ? 1 : 0
  423. })
  424. }
  425. isSendResume.value = true
  426. popup.value.close()
  427. } catch (error) {
  428. }
  429. }
  430. // 拒绝邀请
  431. // function handleRefuse (val) {
  432. // isAgree.value = false
  433. // chooseInvite.value = val
  434. // confirm.value.open()
  435. // }
  436. // 接受邀请
  437. // function handleAgree (val) {
  438. // isAgree.value = true
  439. // chooseInvite.value = val
  440. // confirm.value.open()
  441. // }
  442. // 确认
  443. // async function handleConfirm () {
  444. // // 拒绝
  445. // if (!isAgree.value) {
  446. // await userInterviewInviteReject(chooseInvite.value.id)
  447. // } else {
  448. // await userInterviewInviteReject(chooseInvite.value.id)
  449. // }
  450. // uni.showToast({ title: '操作成功', icon: 'none' })
  451. // send(JSON.stringify({ id: chooseInvite.value.id }), channelItem.value, isAgree.value ? 104 : 103)
  452. // }
  453. // 关闭
  454. // function handleCloseConfirm () {
  455. // confirm.value.close()
  456. // }
  457. // 查看更多
  458. async function handleMore () {
  459. try {
  460. uni.showLoading({
  461. title: '加载中...'
  462. })
  463. pageSize.value++
  464. const { list, more } = await getMoreMessages(pageSize.value, channelItem.value)
  465. items.value.unshift(...list.value)
  466. hasMore.value = more
  467. } finally {
  468. uni.hideLoading()
  469. }
  470. }
  471. // 上传简历
  472. function handleUploadResume () {
  473. wx.chooseMessageFile({
  474. count: 1,
  475. type: 'file',
  476. success (res) {
  477. // 限制文件上传大小
  478. const size = res.tempFiles[0].size
  479. if (size / (1024*1024) > 20) {
  480. uni.showToast({ icon: 'none', title: '文件大小不能超过20M' })
  481. return
  482. }
  483. const title = res.tempFiles[0].name
  484. const path = res.tempFiles[0].path
  485. const test = /\.(pdf|docx|doc)$/.test(title)
  486. if (!test) {
  487. uni.showToast({
  488. icon: 'none',
  489. title: '请上传pdf、doc、docx类型的文件',
  490. duration: 2000
  491. })
  492. return
  493. }
  494. //效验是否为支持的文件格式
  495. uploadFile(path, 'attachment').then(async (res) => {
  496. if (!res.data) {
  497. uni.showToast({
  498. title: '上传失败',
  499. icon: 'none'
  500. })
  501. return
  502. }
  503. await saveResume({ title, url: res.data })
  504. uni.showToast({
  505. title: '上传成功',
  506. icon: 'success'
  507. })
  508. handleFindResume()
  509. })
  510. }
  511. })
  512. }
  513. // 获取职位信息
  514. async function getMessageTypeSync () {
  515. try {
  516. const { data } = await getMessageType({
  517. fromUid: IM.uid,
  518. channelId: channelItem.value.channelID,
  519. type: 102,
  520. page: {
  521. current: 1,
  522. size: 1,
  523. orders: [
  524. { column: 'message_seq', asc: false }
  525. ]
  526. }
  527. })
  528. if (!data.records || !data.records.length) {
  529. return
  530. }
  531. const _item = data.records.pop()
  532. const _itemJSON = JSON.parse(_item.payload)
  533. const _content = JSON.parse(_itemJSON.content)
  534. positionInfo.value = _content.positionInfo
  535. const { data: check } = await jobCvRelCheckSend({ jobId: _content.positionInfo.id })
  536. isSendResume.value = check
  537. } catch (error) {
  538. console.log(345, error)
  539. }
  540. }
  541. // let jobFairId = ''
  542. onLoad(async (options) => {
  543. info.value = Object.keys(options).reduce((r, k) => {
  544. r[k] = decodeURIComponent(options[k])
  545. return r
  546. }, {})
  547. // jobFairId = info.value.jobFairId
  548. isEmployment.value = info.value.isEmployment
  549. channelItem.value = toChannel(info.value.channelID, info.value.channelType)
  550. if (channelItem.value.channelID === 'system') {
  551. const { list, more } = await getMoreMessages(1, channelItem.value)
  552. hasMore.value = more
  553. items.value = list.value
  554. setScrollBottom()
  555. // 清除未读消息
  556. resetUnread(channelItem.value)
  557. // 更新未读消息
  558. updateUnreadCount()
  559. return
  560. }
  561. await init(info.value.id, info.value.enterpriseId)
  562. // 获取最新的职位信息
  563. await getMessageTypeSync(info.value.id)
  564. await getStatusList()
  565. getInterviewInviteList()
  566. // 清除未读消息
  567. resetUnread(channelItem.value)
  568. // 更新未读消息
  569. updateUnreadCount()
  570. })
  571. </script>
  572. <style lang="scss" scoped>
  573. .white {
  574. color: #FFF !important;
  575. }
  576. .text-left {
  577. text-align: left !important;
  578. }
  579. .text-right {
  580. text-align: right !important;
  581. }
  582. .box {
  583. width: 100%;
  584. height: 100vh;
  585. display: flex;
  586. flex-direction: column;
  587. &-top {
  588. &-title {
  589. padding: 0 60rpx;
  590. box-sizing: border-box;
  591. width: 100%;
  592. height: 80rpx;
  593. line-height: 80rpx;
  594. // text-align: center;
  595. border-bottom: 2rpx solid #EEE;
  596. overflow: hidden;
  597. white-space: nowrap;
  598. text-overflow: ellipsis;
  599. .subText {
  600. font-size: .85em;
  601. color: #999;
  602. .gun {
  603. padding: 0 10rpx;
  604. }
  605. }
  606. }
  607. &-content {
  608. padding: 20rpx 50rpx;
  609. padding-bottom: 20rpx;
  610. border-bottom: 2rpx solid #eee;
  611. .color-666 {
  612. color: #666;
  613. }
  614. .font-weight-bold {
  615. font-weight: bold;
  616. }
  617. .color-primary {
  618. color: #009688;
  619. }
  620. .ml-3 {
  621. margin-left: 40rpx;
  622. }
  623. .mt-1 {
  624. margin-top: 12rpx;
  625. }
  626. .font-size-14 {
  627. font-size: 24rpx;
  628. }
  629. .py-1 {
  630. padding: 4rpx 0;
  631. }
  632. .tipsText {
  633. font-size: .75em;
  634. color: #999;
  635. }
  636. &-t {
  637. display: flex;
  638. justify-content: space-between;
  639. }
  640. .btnBox {
  641. display: flex;
  642. padding: 20rpx 60rpx;
  643. justify-content: space-around;
  644. }
  645. }
  646. }
  647. &-main {
  648. flex: 1;
  649. height: 0;
  650. padding: 40rpx;
  651. // overflow-y: auto;
  652. box-sizing: border-box;
  653. &-more {
  654. display: flex;
  655. justify-content: center;
  656. align-items: center;
  657. color: #24bc3e;
  658. font-size: .9em;
  659. padding: 20rpx 0;
  660. }
  661. &-time {
  662. user-select: none;
  663. position: relative;
  664. top: 16rpx;
  665. margin: 40rpx 0;
  666. text-align: center;
  667. max-height: 40rpx;
  668. text-align: center;
  669. font-weight: 400;
  670. font-size: .85em;
  671. color: #999;
  672. }
  673. .jobCard {
  674. padding: 30rpx;
  675. background: #E2F2F0;
  676. color: #009688 ;
  677. margin-top: 20rpx;
  678. max-width: unset;
  679. margin-right: 0;
  680. &-title {
  681. font-size: 1.2em;
  682. }
  683. &-subtitle {
  684. padding: 10rpx 0;
  685. // font-size: .5em;
  686. }
  687. &-divider {
  688. width: 100%;
  689. height: 2rpx;
  690. margin: 20rpx 0;
  691. background: #ddd;
  692. }
  693. &-tag {
  694. display: flex;
  695. flex-wrap: wrap;
  696. }
  697. }
  698. .message-view_item {
  699. display: flex;
  700. flex-direction: row;
  701. align-items: flex-start;
  702. margin: 16rpx 0;
  703. position: relative;
  704. .image {
  705. width: 60rpx;
  706. height: 60rpx;
  707. border-radius: 180rpx;
  708. // flex-grow: 1;
  709. // flex-shrink: 0;
  710. overflow: hidden;
  711. .header {
  712. width: 60rpx;
  713. height: 60rpx;
  714. }
  715. }
  716. .text-end {
  717. text-align: right !important;
  718. width: 400rpx;
  719. margin-right: 20rpx;
  720. }
  721. .message-text {
  722. overflow-wrap: break-word;
  723. background-color: #f0f2f5;
  724. border-radius: 12rpx;
  725. max-width: 75%;
  726. padding: 20rpx;
  727. &.active {
  728. background: #d5e6e8;
  729. }
  730. &.card {
  731. background: #E2F2F0;
  732. color: #009688 ;
  733. margin-top: 20rpx;
  734. max-width: unset;
  735. margin-right: 0;
  736. .btn-actions {
  737. margin: 40rpx auto 20rpx auto ;
  738. text-align: center;
  739. .btn {
  740. padding: 10rpx 30rpx;
  741. background: #C8E7D8;
  742. color: #43AC57;
  743. font-size: .75em;
  744. border-radius: 10rpx;
  745. }
  746. }
  747. }
  748. &.none {
  749. padding: 10rpx 0;
  750. background-color: unset;
  751. }
  752. &.active {
  753. background: #d5e6e8;
  754. }
  755. }
  756. }
  757. .is-self {
  758. flex-direction: row-reverse;
  759. display: flex;
  760. .message-text {
  761. margin-right: 20rpx;
  762. }
  763. }
  764. .is-other {
  765. .message-text {
  766. margin-left: 20rpx;
  767. }
  768. }
  769. }
  770. &-bottom {
  771. max-height: 300rpx;
  772. border-top: 2rpx solid #EEE;
  773. background: rgba(230, 230, 230, 0.5);
  774. padding: 20rpx 40rpx;
  775. box-sizing: border-box;
  776. &-tool {
  777. margin-bottom: 30rpx;
  778. .toolBtn {
  779. padding: 12rpx 20rpx;
  780. font-size: 24rpx;
  781. background: #18bc37;
  782. color: #FFF;
  783. border-radius: 10rpx;
  784. }
  785. }
  786. .textBox {
  787. align-items: flex-end;
  788. }
  789. textarea {
  790. border-radius: 10rpx;
  791. width: 100%;
  792. min-height: 80rpx;
  793. max-height: 180rpx;
  794. padding: 20rpx;
  795. box-sizing: border-box;
  796. background: #FFF;
  797. }
  798. .submitBtn {
  799. width: 140rpx;
  800. line-height: 80rpx;
  801. height: 80rpx;
  802. font-size: 28rpx;
  803. background: #18bc37;
  804. color: #FFF;
  805. margin-left: 20rpx;
  806. text-align: center;
  807. border-radius: 10rpx;
  808. }
  809. }
  810. .popup-title {
  811. padding: 30rpx 20rpx;
  812. display: flex;
  813. justify-content: space-between;
  814. border-bottom: 2rpx solid #DDD;
  815. }
  816. .popup-content {
  817. padding: 20rpx 40rpx;
  818. color: #999;
  819. display: flex;
  820. align-content: center;
  821. justify-items: center;
  822. .iconBox {
  823. width: 40rpx;
  824. }
  825. .text {
  826. margin-left: 20rpx;
  827. &.active {
  828. color: #00B760;
  829. }
  830. }
  831. }
  832. .popup-upload {
  833. // display: flex;
  834. // align-items: center;
  835. // justify-content: center;
  836. // flex-direction: column;
  837. // width: 70%;
  838. width: 80vw;
  839. font-size: .75em;
  840. color: #999;
  841. padding: 40rpx;
  842. &-box {
  843. width: 200rpx;
  844. height: 200rpx;
  845. text-align: center;
  846. line-height: 200rpx;
  847. border: 4rpx solid #ddd;
  848. border-radius: 8rpx;
  849. margin: 0 auto;
  850. }
  851. }
  852. .popup-actions {
  853. padding: 60rpx;
  854. .default {
  855. background: #00B760;
  856. color: #DDD;
  857. font-size: .9em;
  858. }
  859. }
  860. }
  861. </style>