kj-chat.vue 17 KB

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