kj-chat.vue 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733
  1. <template>
  2. <view class="chat-bottom">
  3. <view :style="{height: height}"></view>
  4. <view class="safe-area-inset-bottom"></view>
  5. <view class="chat-down-box u-flex-col u-col-center">
  6. <view class="chat-down-btn u-flex u-row-between" v-if="isjianpan">
  7. <image @click="openchangyong" v-if="showtype == 2" class="img2" src="@/static/imagess/jianpan.png"
  8. mode=""></image>
  9. <input class="input" :cursor-spacing="15" v-model="text" type="text" confirm-type="send" @confirm="send"
  10. placeholder="请输入消息内容…">
  11. <image @click="openemoji" class="img1" src="@/static/imagess/biaoqing.png" mode=""></image>
  12. <text @click="send" v-if="text" class="send">发送</text>
  13. <image @click="openmore" v-else-if="showtype == 1" class="img2" src="@/static/imagess/jianpan.png"
  14. mode="">
  15. </image>
  16. <image @click="openmore" v-else-if="showtype != 1" class="img2" src="@/static/imagess/wenjian.png"
  17. mode=""></image>
  18. </view>
  19. <view class="chat-down-btn luyin u-flex u-row-between" v-else>
  20. <image @click="isjianpan = true" class="img2" src="@/static/imagess/jianpan.png" mode=""></image>
  21. <button class="record-btn" :class="longPress == '1' ? 'record-btn-1' : 'record-btn-2'"
  22. @longpress="longpressBtn()" @touchend="touchendBtn()">
  23. <!-- <image src="@/static/images/luyin.png" mode="" style="changyong" /> -->
  24. <text>{{longPress == '1' ? '按住说话' : '说话中...'}}</text>
  25. </button>
  26. </view>
  27. <view class="prompt-layer prompt-layer-1" v-if="longPress == '2'">
  28. <view class="prompt-loader">
  29. <view class="em" v-for="(item,index) in 15" :key="index"></view>
  30. </view>
  31. <text class="span">松手结束录音</text>
  32. </view>
  33. <view v-if="showtype == 1" class="more-box u-flex acenter">
  34. <!-- <view class="more-item u-flex-col u-col-center">
  35. <view class="item-img u-flex u-row-center">
  36. <image src="../static/images/more1.png" mode=""></image>
  37. </view>
  38. <view class="item-text">
  39. 发简历
  40. </view>
  41. </view> -->
  42. <view class="more-item u-flex-col u-col-center" @click="toalbum">
  43. <view class="item-img u-flex u-row-center">
  44. <image src="/static/imagess/more2.png" mode=""></image>
  45. </view>
  46. <view class="item-text">
  47. 相册
  48. </view>
  49. </view>
  50. <view class="more-item u-flex-col u-col-center" @click="tocapture">
  51. <view class="item-img u-flex u-row-center">
  52. <image src="/static/imagess/more3.png" mode=""></image>
  53. </view>
  54. <view class="item-text">
  55. 拍摄
  56. </view>
  57. </view>
  58. <view class="more-item u-flex-col u-col-center" @click="isjianpan = false;showtype = 0">
  59. <view class="item-img u-flex u-row-center">
  60. <image src="/static/imagess/more4.png" mode=""></image>
  61. </view>
  62. <view class="item-text">
  63. 语音
  64. </view>
  65. </view>
  66. </view>
  67. <view v-if="showtype == 2" class="changyong-box u-flex-col">
  68. <scroll-view scroll-y="true" class="changyong-scroll u-flex-1">
  69. <view class="changyong-text" v-for="(a,b) in changlist" :key="b" @click="select(a)">{{a.content}}
  70. </view>
  71. </scroll-view>
  72. <view class="changyong-btn u-flex u-row-between">
  73. <text class="text1" @click="toadd">新增</text>
  74. <text class="text2"></text>
  75. <text class="text1" @click="tolist">管理</text>
  76. </view>
  77. </view>
  78. <scroll-view v-if="showtype == 3" scroll-y="true" class="emoji-scroll">
  79. <view class="empji-box u-flex u-flex-wrap">
  80. <text v-for="(a,b) in emoji" :key="b" @click="changeemoji(a)">{{a}}</text>
  81. </view>
  82. </scroll-view>
  83. <view class="safe-area-inset-bottom"></view>
  84. </view>
  85. </view>
  86. </template>
  87. <script>
  88. import {
  89. conn,
  90. } from '@/utils/WebIM';
  91. import WebIM from '@/newSDK/Easemob-chat-4.1.7.js'
  92. import emoji from "@/commont/emoji.js"
  93. const recorderManager = uni.getRecorderManager()
  94. var init // 录制时长计时器
  95. export default {
  96. props: {
  97. to: {
  98. typeof: String,
  99. default: ''
  100. },
  101. list: {
  102. typeof: Array,
  103. default: []
  104. },
  105. user_other: {
  106. type: Object,
  107. default: {}
  108. },
  109. user: {
  110. type: Object,
  111. default: {}
  112. }
  113. },
  114. data() {
  115. return {
  116. height: '100rpx',
  117. showtype: 0, //默认0,1显示更多,2显示常用,3显示表情
  118. emoji: emoji,
  119. text: '',
  120. changlist: [],
  121. isjianpan: true,
  122. longPress: '1',
  123. time: 0, //录音时长
  124. duration: 60000, //录音最大值ms 60000/1分钟
  125. tempFilePath: '', //音频路径
  126. playStatus: 0, //录音播放状态 0:未播放 1:正在播放
  127. }
  128. },
  129. created() {
  130. },
  131. methods: {
  132. longpressBtn() {
  133. this.longPress = '2';
  134. // this.countdown(60); // 倒计时
  135. // clearInterval(init) // 清除定时器
  136. recorderManager.onStop((res) => {
  137. console.log('onstop', res);
  138. this.tempFilePath = res.tempFilePath;
  139. this.recordingTimer(this.time);
  140. })
  141. const options = {
  142. duration: this.duration, // 指定录音的时长,单位 ms
  143. sampleRate: 16000, // 采样率
  144. numberOfChannels: 1, // 录音通道数
  145. encodeBitRate: 96000, // 编码码率
  146. format: 'mp3', // 音频格式,有效值 aac/mp3
  147. frameSize: 10, // 指定帧大小,单位 KB
  148. }
  149. this.recordingTimer();
  150. recorderManager.start(options);
  151. // 监听音频开始事件
  152. recorderManager.onStart((res) => {})
  153. recorderManager.onError((res) => {})
  154. },
  155. // 长按松开录音事件
  156. touchendBtn() {
  157. let _this = this
  158. this.longPress = '1';
  159. recorderManager.onStop((res) => {
  160. this.tempFilePath = res.tempFilePath
  161. uni.uploadFile({
  162. url: 'https://hire.hdlkeji.com/api/common/upload',
  163. filePath: _this.tempFilePath,
  164. name: 'file',
  165. success: (res) => {
  166. uni.hideLoading()
  167. if (JSON.parse(res.data).code == 1) {
  168. _this.sendluyin(JSON.parse(res.data).data.fullurl);
  169. } else {
  170. _this.$u.toast(JSON.parse(res.data).msg)
  171. }
  172. },
  173. fail: (e) => {
  174. console.log(e);
  175. }
  176. })
  177. })
  178. this.recordingTimer(this.time)
  179. recorderManager.stop()
  180. },
  181. recordingTimer(time) {
  182. var that = this;
  183. if (time == undefined) {
  184. // 将计时器赋值给init
  185. init = setInterval(function() {
  186. that.time++
  187. }, 1000);
  188. } else {
  189. clearInterval(init)
  190. }
  191. },
  192. sendluyin(url) {
  193. var option = {
  194. type: "audio",
  195. chatType: "singleChat",
  196. filename: url,
  197. // 消息接收方:单聊为对端用户 ID,群聊和聊天室分别为群组 ID 和聊天室 ID。
  198. to: this.to,
  199. body: {
  200. //文件 URL。
  201. url: url,
  202. //文件类型。
  203. type: "audio",
  204. //文件名。
  205. filename: url,
  206. // 音频文件时长,单位为秒。
  207. length: this.time,
  208. },
  209. };
  210. let msg = new WebIM.message.create(option);
  211. // 调用 `send` 方法发送该语音消息。
  212. conn.send(msg).then((res) => {
  213. // 语音消息成功发送。
  214. console.log("Success");
  215. setTimeout(() => {
  216. this.$emit('success', true)
  217. }, 800)
  218. })
  219. .catch((e) => {
  220. // 语音消息发送失败。
  221. console.log("Fail", e);
  222. });
  223. },
  224. send() {
  225. let _this = this
  226. if (this.text == '' || this.text == null) {
  227. this.$u.toast('发送消息不能为空')
  228. return
  229. }
  230. let id = conn.getUniqueId(); // 生成本地消息id
  231. let msg = new WebIM.message('txt', id); // 创建文本消息
  232. console.log(this.user_other);
  233. msg.set({
  234. msg: this.text, // 消息内容
  235. to: this.to, // 接收消息对象(用户id)
  236. chatType: 'singleChat', // 设置为单聊
  237. ext: {
  238. // shopname:this.user_other.merchant_name,
  239. // image:this.user_other.image,
  240. user_other: this.user_other,
  241. // user:this.user
  242. },
  243. success: function(id, serverMsgId) {
  244. console.log('成功发送消息');
  245. setTimeout(() => {
  246. _this.$emit('success', true)
  247. }, 800);
  248. },
  249. fail: function(e) {
  250. console.log("发送消息失败");
  251. }
  252. });
  253. conn.send(msg.body);
  254. this.text = ''
  255. },
  256. toalbum() {
  257. let _this = this
  258. uni.chooseImage({
  259. count: 1,
  260. sizeType: ["original", "compressed"],
  261. sourceType: ["album"],
  262. success(img) {
  263. uni.showLoading({
  264. mask: true,
  265. title: "请稍后"
  266. })
  267. console.log('img', img);
  268. uni.uploadFile({
  269. url: 'https://hire.hdlkeji.com/api/common/upload',
  270. filePath: img.tempFilePaths[0],
  271. name: 'file',
  272. success: (res) => {
  273. uni.hideLoading()
  274. if (JSON.parse(res.data).code == 1) {
  275. console.log('data', JSON.parse(res.data).data.fullurl);
  276. _this.sendPrivateImg(JSON.parse(res.data).data.fullurl);
  277. } else {
  278. _this.$u.toast(JSON.parse(res.data).msg)
  279. }
  280. },
  281. fail: (e) => {
  282. console.log(e);
  283. }
  284. })
  285. },
  286. });
  287. },
  288. tocapture() {
  289. let _this = this
  290. uni.chooseImage({
  291. count: 1,
  292. sizeType: ["original", "compressed"],
  293. sourceType: ["camera"],
  294. success(img) {
  295. uni.showLoading({
  296. mask: true,
  297. title: "请稍后"
  298. })
  299. uni.uploadFile({
  300. url: 'https://hire.hdlkeji.com/api/common/upload',
  301. filePath: img.tempFilePaths[0],
  302. name: 'file',
  303. success: (res) => {
  304. uni.hideLoading()
  305. if (JSON.parse(res.data).code == 1) {
  306. _this.sendPrivateImg(JSON.parse(res.data).data.fullurl);
  307. } else {
  308. _this.$u.toast(JSON.parse(res.data).msg)
  309. }
  310. },
  311. fail: (e) => {
  312. console.log(e);
  313. }
  314. })
  315. },
  316. });
  317. },
  318. sendPrivateImg(res) {
  319. console.log('sendPrivateImg', res);
  320. let option = {
  321. chatType: "singleChat",
  322. // 消息类型。
  323. type: "img",
  324. // 图片文件的 URL 地址。
  325. url: res,
  326. // 消息接收方:单聊为对方用户 ID,群聊和聊天室分别为群组 ID 和聊天室 ID。
  327. to: this.to,
  328. ext: {
  329. // shopname:this.user_other.merchant_name,
  330. // image:this.user_other.image,
  331. user_other: this.user_other,
  332. // user:this.user
  333. },
  334. };
  335. // 创建一条图片消息。
  336. let msg = new WebIM.message.create(option);
  337. // 调用 `send` 方法发送该图片消息。
  338. conn.send(msg).then((res) => {
  339. console.log('发送图片成功');
  340. setTimeout(() => {
  341. this.$emit('success', true)
  342. }, 800)
  343. });
  344. },
  345. select(item) {
  346. this.text = item.content
  347. },
  348. tolist() {
  349. uni.navigateTo({
  350. url: "/pagesC/changyong-list"
  351. })
  352. },
  353. toadd() {
  354. uni.navigateTo({
  355. url: "/pagesC/changyong-add"
  356. })
  357. },
  358. changeemoji(item) {
  359. this.text = this.text + item
  360. },
  361. openemoji() {
  362. this.showtype = this.showtype == 3 ? 0 : 3
  363. this.height = this.showtype == 3 ? '400rpx' : '100rpx'
  364. },
  365. openmore() {
  366. this.showtype = this.showtype == 1 ? 0 : 1
  367. this.height = this.showtype == 1 ? '300rpx' : '100rpx'
  368. },
  369. openchangyong() {
  370. this.showtype = this.showtype == 2 ? 0 : 2
  371. this.height = this.showtype == 2 ? '600rpx' : '100rpx'
  372. this.isjianpan = true
  373. }
  374. }
  375. }
  376. </script>
  377. <style lang="scss">
  378. .send {
  379. font-size: 26rpx;
  380. color: #fff;
  381. padding: 16rpx 20rpx;
  382. background: #0C66C2;
  383. border-radius: 16rpx;
  384. }
  385. .chat-bottom {
  386. .chat-down-box {
  387. position: fixed;
  388. bottom: 0;
  389. left: 0;
  390. z-index: 99;
  391. width: 750rpx;
  392. background-color: #fff;
  393. .emoji-scroll {
  394. height: 300rpx;
  395. .empji-box {
  396. width: 750rpx;
  397. text {
  398. padding: 10rpx 0;
  399. text-align: center;
  400. width: 10%;
  401. font-size: 40rpx;
  402. }
  403. }
  404. }
  405. .changyong-box {
  406. height: 500rpx;
  407. width: 100%;
  408. .changyong-scroll {
  409. min-height: 1rpx;
  410. padding: 0 32rpx;
  411. width: 100%;
  412. box-sizing: border-box;
  413. border-top: 2rpx solid #F0F0F0;
  414. .changyong-text {
  415. border-bottom: 2rpx solid #F0F0F0;
  416. padding: 32rpx 0;
  417. font-size: 30rpx;
  418. font-family: PingFangSC-Regular, PingFang SC;
  419. font-weight: 400;
  420. color: #222222;
  421. }
  422. .changyong-text:last-child {
  423. border: none;
  424. }
  425. }
  426. .changyong-btn {
  427. height: 90rpx;
  428. width: 100%;
  429. box-shadow: 0rpx -1rpx 0rpx 0rpx rgba(0, 0, 0, 0.2);
  430. .text2 {
  431. height: 44rpx;
  432. border: 2rpx solid #E5E5E5;
  433. }
  434. .text1 {
  435. line-height: 90rpx;
  436. width: 45%;
  437. text-align: center;
  438. font-size: 32rpx;
  439. font-family: PingFangSC-Regular, PingFang SC;
  440. font-weight: 400;
  441. color: #0C66C2;
  442. }
  443. }
  444. }
  445. .more-box {
  446. height: 200rpx;
  447. padding: 0 60rpx;
  448. width: 100%;
  449. box-sizing: border-box;
  450. .more-item {
  451. margin: 0 58rpx 0 0;
  452. .item-text {
  453. font-size: 22rpx;
  454. font-family: PingFangSC-Regular, PingFang SC;
  455. font-weight: 400;
  456. color: #444444;
  457. }
  458. .item-img {
  459. width: 114rpx;
  460. height: 114rpx;
  461. background: #F3F3F3;
  462. border-radius: 20rpx;
  463. margin-bottom: 24rpx;
  464. .hide {
  465. position: absolute;
  466. top: 0;
  467. right: 0;
  468. min-width: 100%;
  469. min-height: 100%;
  470. filter: alpha(opacity=0);
  471. opacity: 0;
  472. cursor: inherit;
  473. display: none;
  474. }
  475. image {
  476. width: 52rpx;
  477. height: 52rpx;
  478. }
  479. }
  480. }
  481. }
  482. .chat-down-btn {
  483. margin: 12rpx auto;
  484. width: 686rpx;
  485. height: 84rpx;
  486. background: #F3F3F3;
  487. border-radius: 42rpx;
  488. padding: 0 28rpx;
  489. .input {
  490. flex: 1;
  491. margin-left: 28rpx;
  492. font-size: 28rpx;
  493. }
  494. .img1 {
  495. width: 44rpx;
  496. height: 44rpx;
  497. margin: 0 28rpx;
  498. }
  499. .img2 {
  500. width: 44rpx;
  501. height: 44rpx;
  502. }
  503. .changyong {
  504. width: 44rpx;
  505. height: 44rpx;
  506. line-height: 44rpx;
  507. border: 3rpx solid #131415;
  508. text-align: center;
  509. border-radius: 100rpx;
  510. font-size: 26rpx;
  511. font-family: PingFangSC-Medium, PingFang SC;
  512. font-weight: 500;
  513. color: #131415;
  514. }
  515. }
  516. }
  517. .record-box {
  518. width: 100%;
  519. position: relative;
  520. }
  521. .luyin button::after {
  522. border: none;
  523. }
  524. .luyin button {
  525. font-size: 14px;
  526. line-height: 38px;
  527. width: 100%;
  528. height: 38px;
  529. border-radius: 8px;
  530. text-align: center;
  531. background: #f3f3f3;
  532. }
  533. .luyin button image {
  534. width: 16px;
  535. height: 16px;
  536. margin-right: 4px;
  537. vertical-align: middle;
  538. }
  539. .record-btn-2 {
  540. background: rgba(255, 211, 0, 0.2);
  541. }
  542. /* 提示小弹窗 */
  543. .prompt-layer {
  544. border-radius: 8px;
  545. background: #fff;
  546. padding: 8px 16px;
  547. box-sizing: border-box;
  548. position: absolute;
  549. left: 50%;
  550. transform: translateX(-50%);
  551. }
  552. .prompt-layer::after {
  553. content: '';
  554. display: block;
  555. border: 6px solid rgba(0, 0, 0, 0);
  556. border-top-color: rgba(255, 211, 0, 1);
  557. position: absolute;
  558. bottom: -10px;
  559. left: 50%;
  560. transform: translateX(-50%);
  561. }
  562. .prompt-layer-1 {
  563. font-size: 12px;
  564. width: 128px;
  565. text-align: center;
  566. display: flex;
  567. flex-direction: column;
  568. align-items: center;
  569. justify-content: center;
  570. top: -80px;
  571. }
  572. .prompt-layer-1 .p {
  573. color: #000000;
  574. }
  575. .prompt-layer-1 .span {
  576. color: rgba(0, 0, 0, .6);
  577. }
  578. .prompt-loader .em {}
  579. /* 语音音阶------------- */
  580. .prompt-loader {
  581. width: 96px;
  582. height: 20px;
  583. display: flex;
  584. align-items: center;
  585. justify-content: space-between;
  586. margin-bottom: 6px;
  587. }
  588. .prompt-loader .em {
  589. display: block;
  590. background: #333333;
  591. width: 1px;
  592. height: 10%;
  593. margin-right: 2.5px;
  594. float: left;
  595. }
  596. .prompt-loader .em:last-child {
  597. margin-right: 0px;
  598. }
  599. .prompt-loader .em:nth-child(1) {
  600. animation: load 2.5s 1.4s infinite linear;
  601. }
  602. .prompt-loader .em:nth-child(2) {
  603. animation: load 2.5s 1.2s infinite linear;
  604. }
  605. .prompt-loader .em:nth-child(3) {
  606. animation: load 2.5s 1s infinite linear;
  607. }
  608. .prompt-loader .em:nth-child(4) {
  609. animation: load 2.5s 0.8s infinite linear;
  610. }
  611. .prompt-loader .em:nth-child(5) {
  612. animation: load 2.5s 0.6s infinite linear;
  613. }
  614. .prompt-loader .em:nth-child(6) {
  615. animation: load 2.5s 0.4s infinite linear;
  616. }
  617. .prompt-loader .em:nth-child(7) {
  618. animation: load 2.5s 0.2s infinite linear;
  619. }
  620. .prompt-loader .em:nth-child(8) {
  621. animation: load 2.5s 0s infinite linear;
  622. }
  623. .prompt-loader .em:nth-child(9) {
  624. animation: load 2.5s 0.2s infinite linear;
  625. }
  626. .prompt-loader .em:nth-child(10) {
  627. animation: load 2.5s 0.4s infinite linear;
  628. }
  629. .prompt-loader .em:nth-child(11) {
  630. animation: load 2.5s 0.6s infinite linear;
  631. }
  632. .prompt-loader .em:nth-child(12) {
  633. animation: load 2.5s 0.8s infinite linear;
  634. }
  635. .prompt-loader .em:nth-child(13) {
  636. animation: load 2.5s 1s infinite linear;
  637. }
  638. .prompt-loader .em:nth-child(14) {
  639. animation: load 2.5s 1.2s infinite linear;
  640. }
  641. .prompt-loader .em:nth-child(15) {
  642. animation: load 2.5s 1.4s infinite linear;
  643. }
  644. @keyframes load {
  645. 0% {
  646. height: 10%;
  647. }
  648. 50% {
  649. height: 100%;
  650. }
  651. 100% {
  652. height: 10%;
  653. }
  654. }
  655. /* 语音音阶-------------------- */
  656. .prompt-layer-2 {
  657. top: -40px;
  658. }
  659. .prompt-layer-2 .text {
  660. color: rgba(0, 0, 0, 1);
  661. font-size: 12px;
  662. }
  663. }
  664. </style>