zhao-chat.vue 17 KB

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