kj-chat.vue 17 KB

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