zhao-chat.vue 16 KB

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