kj-chat.vue 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940
  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="i18n.messageContent">
  11. <image @click="openemoji" class="img1" src="@/static/imagess/biaoqing.png" mode=""></image>
  12. <text @click="send" v-if="text" class="send">{{i18n.sendContent}}</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' ? i18n.HoldSpeak : i18n.Whiletalking}}</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"
  43. style="display: flex;flex-direction: column;justify-content: center;align-items: center;"
  44. @click="toalbum">
  45. <view class="item-img u-flex u-row-center">
  46. <image src="/static/imagess/more2.png" mode=""></image>
  47. </view>
  48. <view class="item-text">
  49. {{i18n.Photoalbum}}
  50. </view>
  51. </view>
  52. <view class="more-item u-flex-col u-col-center"
  53. style="display: flex;flex-direction: column;justify-content: center;align-items: center;"
  54. @click="tocapture">
  55. <view class="item-img u-flex u-row-center">
  56. <image src="/static/imagess/more3.png" mode=""></image>
  57. </view>
  58. <view class="item-text">
  59. {{i18n.shoot}}
  60. </view>
  61. </view>
  62. <view class="more-item u-flex-col u-col-center"
  63. style="display: flex;flex-direction: column;justify-content: center;align-items: center;"
  64. @click="isjianpan = false;showtype = 0">
  65. <view class="item-img u-flex u-row-center">
  66. <image src="/static/imagess/more4.png" mode=""></image>
  67. </view>
  68. <view class="item-text">
  69. {{i18n.Voice}}
  70. </view>
  71. </view>
  72. <view v-if="user_no!='13523652365'&&to=='13523652365'" class="more-item u-flex-col u-col-center"
  73. style="display: flex;flex-direction: column;justify-content: center;align-items: center;"
  74. @click="show = true">
  75. <view class="item-img u-flex u-row-center">
  76. <image src="/static/imagess/more5.png" mode=""></image>
  77. </view>
  78. <view class="item-text">
  79. {{i18n.Myorder}}
  80. </view>
  81. </view>
  82. </view>
  83. <scroll-view v-if="showtype == 3" scroll-y="true" class="emoji-scroll">
  84. <view class="empji-box u-flex u-flex-wrap">
  85. <text v-for="(a,b) in emoji" :key="b" @click="changeemoji(a)">{{a}}</text>
  86. </view>
  87. </scroll-view>
  88. <view class="safe-area-inset-bottom"></view>
  89. <u-popup :round="10" :show="show" @close="close">
  90. <view class="" style="padding: 20rpx;">
  91. <view class="" style="text-align: center;font-size: 36rpx;margin-bottom: 10rpx;">我的订单</view>
  92. <scroll-view @scrolltolower='lower' scroll-y="true" style="height: 50vh;">
  93. <view v-for="(item,idx) in orderList" :key="idx">
  94. <view class="chatfu"
  95. style="height: 50rpx;display: flex;justify-content: space-between;align-items: center;">
  96. <view class="">{{i18n.OrderNumber}}:{{item.order.order_no}}</view>
  97. <view class=""
  98. style=" border: 2rpx solid red;color: red; font-size: 26rpx;height: 30rpx;line-height: 30rpx;text-align: center;border-radius: 30rpx;padding: 5rpx 10rpx;"
  99. @click="sendorder(item)">{{i18n.sendContent}}</view>
  100. </view>
  101. <view class="u-flex " v-for="(child,index) in item.order_goods" :key="index"
  102. style="margin-top: 10rpx;">
  103. <image :src="child.goods_image" style="width: 152rpx;height: 152rpx;" mode="">
  104. </image>
  105. <view class="u-flex-column u-row-between" style="margin-left: 20rpx;height: 152rpx;">
  106. <view class="chattitle">{{child.goods_name}}</view>
  107. <text class="catmoney">¥{{child.amount}}</text>
  108. </view>
  109. </view>
  110. <view class="" style="border: 2rpx solid #979797;opacity: 0.1;margin: 24rpx 0;"></view>
  111. </view>
  112. </scroll-view>
  113. </view>
  114. </u-popup>
  115. </view>
  116. </view>
  117. </template>
  118. <script>
  119. import {
  120. conn,
  121. } from '@/utils/WebIM';
  122. import WebIM from '@/newSDK/Easemob-chat-4.1.7.js'
  123. import emoji from "@/commont/emoji.js"
  124. const recorderManager = uni.getRecorderManager()
  125. var init // 录制时长计时器
  126. export default {
  127. props: {
  128. to: {
  129. typeof: String,
  130. default: ''
  131. },
  132. list: {
  133. typeof: Array,
  134. default: []
  135. },
  136. user_other: {
  137. type: Object,
  138. default: {}
  139. },
  140. user: {
  141. type: Object,
  142. default: {}
  143. }
  144. },
  145. data() {
  146. return {
  147. height: '100rpx',
  148. showtype: 0, //默认0,1显示更多,2显示常用,3显示表情
  149. emoji: emoji,
  150. text: '',
  151. changlist: [],
  152. isjianpan: true,
  153. longPress: '1',
  154. time: 0, //录音时长
  155. duration: 60000, //录音最大值ms 60000/1分钟
  156. tempFilePath: '', //音频路径
  157. playStatus: 0, //录音播放状态 0:未播放 1:正在播放
  158. show: false,
  159. page: 1,
  160. follow: '',
  161. orderList: [],
  162. keywords: '',
  163. last_page: '',
  164. user_no: ''
  165. }
  166. },
  167. created() {
  168. this.getOrderList()
  169. this.user_no = uni.getStorageSync('user_no')
  170. },
  171. computed: {
  172. i18n() {
  173. return this.$t('index')
  174. }
  175. },
  176. methods: {
  177. lower() {
  178. if (this.page < this.last_page) {
  179. this.page++
  180. this.getOrderList()
  181. } else {
  182. this.$u.toast(this.i18n.Nofurtherdata)
  183. }
  184. },
  185. getOrderList(value) {
  186. uni.$u.http
  187. .get(
  188. `/api/order/order_list?status=${this.follow}&page=${this.page}&limit=10&keywords=${this.keywords}`
  189. )
  190. .then((res) => {
  191. //确定是触底还是点击tab栏
  192. if (value) {
  193. this.orderList = res.data;
  194. } else {
  195. if (this.orderList.length == 0) {
  196. this.orderList = res.data;
  197. } else {
  198. this.orderList = this.orderList.concat(res.data);
  199. }
  200. }
  201. this.last_page = res.last_page
  202. });
  203. },
  204. close() {
  205. this.show = false
  206. },
  207. longpressBtn() {
  208. console.log(recorderManager);
  209. console.log('长按说话');
  210. this.longPress = '2';
  211. // this.countdown(60); // 倒计时
  212. // clearInterval(init) // 清除定时器
  213. recorderManager.onStop((res) => {
  214. console.log('onstop', res);
  215. // this.tempFilePath = res.tempFilePath;
  216. // this.recordingTimer(this.time);
  217. })
  218. const options = {
  219. duration: this.duration, // 指定录音的时长,单位 ms
  220. sampleRate: 16000, // 采样率
  221. numberOfChannels: 1, // 录音通道数
  222. encodeBitRate: 96000, // 编码码率
  223. format: 'mp3', // 音频格式,有效值 aac/mp3
  224. frameSize: 10, // 指定帧大小,单位 KB
  225. }
  226. this.recordingTimer();
  227. recorderManager.start(options);
  228. // 监听音频开始事件
  229. recorderManager.onStart((res) => {})
  230. recorderManager.onError((res) => {
  231. console.log(res);
  232. })
  233. },
  234. // 长按松开录音事件
  235. touchendBtn() {
  236. console.log('长按松开录音事件');
  237. let _this = this
  238. this.longPress = '1';
  239. recorderManager.onStop((res) => {
  240. console.log(res);
  241. _this.tempFilePath = res.tempFilePath
  242. console.log(_this.tempFilePath);
  243. uni.uploadFile({
  244. url: 'https://cbec.hdlkeji.com/api/upload/images',
  245. filePath: _this.tempFilePath,
  246. name: 'file',
  247. success: (res) => {
  248. console.log('发送语音', res);
  249. uni.hideLoading()
  250. if (JSON.parse(res.data).code == 10000) {
  251. _this.sendluyin(JSON.parse(res.data).data.filePath);
  252. } else {
  253. _this.$u.toast(JSON.parse(res.data).msg)
  254. }
  255. },
  256. fail: (e) => {
  257. console.log(e);
  258. }
  259. })
  260. })
  261. this.recordingTimer(this.time)
  262. recorderManager.stop()
  263. },
  264. recordingTimer(time) {
  265. var that = this;
  266. if (time == undefined) {
  267. // 将计时器赋值给init
  268. init = setInterval(function() {
  269. that.time++
  270. }, 1000);
  271. } else {
  272. clearInterval(init)
  273. }
  274. },
  275. sendluyin(url) {
  276. var option = {
  277. type: "audio",
  278. chatType: "singleChat",
  279. filename: url,
  280. // 消息接收方:单聊为对端用户 ID,群聊和聊天室分别为群组 ID 和聊天室 ID。
  281. to: this.to,
  282. body: {
  283. //文件 URL。
  284. url: url,
  285. //文件类型。
  286. type: "audio",
  287. //文件名。
  288. filename: url,
  289. // 音频文件时长,单位为秒。
  290. length: this.time,
  291. },
  292. ext: {
  293. user_other: this.user_other,
  294. user: this.user
  295. },
  296. };
  297. let msg = new WebIM.message.create(option);
  298. // 调用 `send` 方法发送该语音消息。
  299. conn.send(msg).then((res) => {
  300. // 语音消息成功发送。
  301. console.log("Success");
  302. setTimeout(() => {
  303. this.$emit('success', true)
  304. }, 800)
  305. })
  306. .catch((e) => {
  307. // 语音消息发送失败。
  308. console.log("Fail", e);
  309. });
  310. },
  311. addinfo(text,from,to,id) {
  312. uni.$u.http.post('/api/easemob/add', {
  313. text:text,
  314. send_time:new Date().getTime(),
  315. form_id:from,
  316. to_id:to,
  317. easemob_log_id:id
  318. }).then((res) => {
  319. console.log(res);
  320. }).catch(() => {
  321. })
  322. },
  323. sendorder(item) {
  324. let _this = this
  325. let useinfo = uni.getStorageSync("user_info");
  326. let that = this;
  327. let id = conn.getUniqueId(); // 生成本地消息id
  328. let msg = new WebIM.message("txt", id); // 创建文本消息
  329. msg.set({
  330. type: "txt",
  331. msg: this.i18n.Ordermessage,
  332. to: '13523652365',
  333. chatType: "singleChat",
  334. ext: {
  335. type: "orderinfo",
  336. order: {
  337. info: item
  338. },
  339. // user_other: that.goodinfo.merchant,
  340. user: useinfo,
  341. id:id
  342. },
  343. success: function(id, serverMsgId) {
  344. _this.addinfo(item.order.order_no,_this.user_no,'13523652365',id)
  345. setTimeout(() => {
  346. _this.$emit('success', true)
  347. }, 800);
  348. },
  349. fail: function(e) {
  350. console.log("发送消息失败");
  351. },
  352. });
  353. this.show = false
  354. conn.send(msg.body);
  355. },
  356. send() {
  357. let _this = this
  358. if (this.text == '' || this.text == null) {
  359. this.$u.toast('发送消息不能为空')
  360. return
  361. }
  362. let id = conn.getUniqueId(); // 生成本地消息id
  363. let msg = new WebIM.message('txt', id); // 创建文本消息
  364. // console.log('msg',msg);
  365. msg.set({
  366. type: "txt",
  367. msg: this.text, // 消息内容
  368. to: this.to, // 接收消息对象(用户id)
  369. chatType: 'singleChat', // 设置为单聊
  370. ext: {
  371. user_other: this.user_other,
  372. user: this.user,
  373. id:id
  374. },
  375. success: function(id, serverMsgId) {
  376. console.log('成功发送消息');
  377. _this.addinfo(_this.text,_this.user_no,_this.to,id)
  378. _this.text = ''
  379. setTimeout(() => {
  380. _this.$emit('success', true)
  381. }, 800);
  382. },
  383. fail: function(e) {
  384. console.log("发送消息失败", e);
  385. }
  386. });
  387. console.log('msg', msg);
  388. conn.send(msg.body);
  389. // let option = {
  390. // // 消息类型。
  391. // type: "txt",
  392. // // 消息内容。
  393. // msg: 'this.text',
  394. // // 消息接收方:单聊为对方用户 ID,群聊和聊天室分别为群组 ID 和聊天室 ID。
  395. // to: this.to,
  396. // // 会话类型:单聊、群聊和聊天室分别为 `singleChat`、`groupChat` 和 `chatRoom`,默认为单聊。
  397. // chatType: "singleChat",
  398. // };
  399. // // 创建文本消息。
  400. // let msg = WebIM.message.create(option);
  401. // // 调用 `send` 方法发送该文本消息。
  402. // conn.send(msg).then((res) => {
  403. // console.log("Send message success", res);
  404. // }).catch((e) => {
  405. // console.log("Send message fail", e);
  406. // });
  407. },
  408. toalbum() {
  409. let _this = this
  410. uni.chooseImage({
  411. count: 1,
  412. sizeType: ["original", "compressed"],
  413. sourceType: ["album"],
  414. success(img) {
  415. uni.showLoading({
  416. mask: true,
  417. title: "请稍后"
  418. })
  419. console.log('img', img);
  420. uni.uploadFile({
  421. url: 'https://cbec.hdlkeji.com/api/upload/images',
  422. filePath: img.tempFilePaths[0],
  423. name: 'file',
  424. success: (res) => {
  425. uni.hideLoading()
  426. console.log(JSON.parse(res.data));
  427. if (JSON.parse(res.data).code == 10000) {
  428. console.log('data', JSON.parse(res.data).data.filePath);
  429. _this.sendPrivateImg(JSON.parse(res.data).data.filePath);
  430. } else {
  431. _this.$u.toast(JSON.parse(res.data).msg)
  432. }
  433. },
  434. fail: (e) => {
  435. console.log(e);
  436. }
  437. })
  438. },
  439. });
  440. },
  441. tocapture() {
  442. let _this = this
  443. uni.chooseImage({
  444. count: 1,
  445. sizeType: ["original", "compressed"],
  446. sourceType: ["camera"],
  447. success(img) {
  448. uni.showLoading({
  449. mask: true,
  450. title: "请稍后"
  451. })
  452. console.log('img', img);
  453. uni.uploadFile({
  454. url: 'https://cbec.hdlkeji.com/api/upload/images',
  455. filePath: img.tempFilePaths[0],
  456. name: 'file',
  457. success: (res) => {
  458. uni.hideLoading()
  459. console.log(JSON.parse(res.data));
  460. if (JSON.parse(res.data).code == 10000) {
  461. _this.sendPrivateImg(JSON.parse(res.data).data.filePath);
  462. } else {
  463. _this.$u.toast(JSON.parse(res.data).msg)
  464. }
  465. },
  466. fail: (e) => {
  467. console.log(e);
  468. }
  469. })
  470. },
  471. });
  472. },
  473. sendPrivateImg(res) {
  474. console.log('sendPrivateImg', res);
  475. let option = {
  476. chatType: "singleChat",
  477. // 消息类型。
  478. type: "img",
  479. // 图片文件的 URL 地址。
  480. url: res,
  481. // 消息接收方:单聊为对方用户 ID,群聊和聊天室分别为群组 ID 和聊天室 ID。
  482. to: this.to,
  483. ext: {
  484. // shopname:this.user_other.merchant_name,
  485. // image:this.user_other.image,
  486. user_other: this.user_other,
  487. user: this.user
  488. },
  489. };
  490. // 创建一条图片消息。
  491. let msg = new WebIM.message.create(option);
  492. // 调用 `send` 方法发送该图片消息。
  493. conn.send(msg).then((res) => {
  494. console.log('发送图片成功');
  495. setTimeout(() => {
  496. this.$emit('success', true)
  497. }, 800)
  498. });
  499. },
  500. select(item) {
  501. this.text = item.content
  502. },
  503. tolist() {
  504. uni.navigateTo({
  505. url: "/pagesC/changyong-list"
  506. })
  507. },
  508. toadd() {
  509. uni.navigateTo({
  510. url: "/pagesC/changyong-add"
  511. })
  512. },
  513. changeemoji(item) {
  514. this.text = this.text + item
  515. },
  516. openemoji() {
  517. this.showtype = this.showtype == 3 ? 0 : 3
  518. this.height = this.showtype == 3 ? '400rpx' : '100rpx'
  519. },
  520. openmore() {
  521. this.showtype = this.showtype == 1 ? 0 : 1
  522. this.height = this.showtype == 1 ? '300rpx' : '100rpx'
  523. },
  524. openchangyong() {
  525. this.showtype = this.showtype == 2 ? 0 : 2
  526. this.height = this.showtype == 2 ? '600rpx' : '100rpx'
  527. this.isjianpan = true
  528. }
  529. }
  530. }
  531. </script>
  532. <style lang="scss">
  533. .chatfu {
  534. font-family: PingFangSC, PingFang SC;
  535. font-weight: 400;
  536. font-size: 20rpx;
  537. color: #555555;
  538. line-height: 28rpx;
  539. text-align: left;
  540. font-style: normal;
  541. }
  542. .chattitle {
  543. width: 314rpx;
  544. height: 72rpx;
  545. font-family: PingFangSC, PingFang SC;
  546. font-weight: 400;
  547. font-size: 26rpx;
  548. color: #222222;
  549. line-height: 36rpx;
  550. text-align: left;
  551. font-style: normal;
  552. overflow: hidden;
  553. text-overflow: ellipsis;
  554. word-break: break-all;
  555. -webkit-line-clamp: 2;
  556. display: -webkit-box;
  557. -webkit-box-orient: vertical;
  558. // white-space: pre-wrap;
  559. }
  560. .catmoney {
  561. width: 104rpx;
  562. height: 46rpx;
  563. font-family: HarmonyOS_Sans_Medium;
  564. font-size: 26rpx;
  565. color: #F83224;
  566. line-height: 36rpx;
  567. text-align: left;
  568. font-style: normal;
  569. font-weight: 600;
  570. }
  571. .title {
  572. font-family: PingFangSC, PingFang SC;
  573. font-weight: 500;
  574. font-size: 36rpx;
  575. color: #222222;
  576. line-height: 50rpx;
  577. text-align: left;
  578. font-style: normal;
  579. }
  580. .send {
  581. font-size: 26rpx;
  582. color: #fff;
  583. padding: 16rpx 20rpx;
  584. background: #0C66C2;
  585. border-radius: 16rpx;
  586. }
  587. .chat-bottom {
  588. .chat-down-box {
  589. position: fixed;
  590. bottom: 0;
  591. left: 0;
  592. z-index: 99;
  593. width: 750rpx;
  594. background-color: #fff;
  595. .emoji-scroll {
  596. height: 300rpx;
  597. .empji-box {
  598. width: 750rpx;
  599. text {
  600. padding: 10rpx 0;
  601. text-align: center;
  602. width: 10%;
  603. font-size: 40rpx;
  604. }
  605. }
  606. }
  607. .changyong-box {
  608. height: 500rpx;
  609. width: 100%;
  610. .changyong-scroll {
  611. min-height: 1rpx;
  612. padding: 0 32rpx;
  613. width: 100%;
  614. box-sizing: border-box;
  615. border-top: 2rpx solid #F0F0F0;
  616. .changyong-text {
  617. border-bottom: 2rpx solid #F0F0F0;
  618. padding: 32rpx 0;
  619. font-size: 30rpx;
  620. font-family: PingFangSC-Regular, PingFang SC;
  621. font-weight: 400;
  622. color: #222222;
  623. }
  624. .changyong-text:last-child {
  625. border: none;
  626. }
  627. }
  628. .changyong-btn {
  629. height: 90rpx;
  630. width: 100%;
  631. box-shadow: 0rpx -1rpx 0rpx 0rpx rgba(0, 0, 0, 0.2);
  632. .text2 {
  633. height: 44rpx;
  634. border: 2rpx solid #E5E5E5;
  635. }
  636. .text1 {
  637. line-height: 90rpx;
  638. width: 45%;
  639. text-align: center;
  640. font-size: 32rpx;
  641. font-family: PingFangSC-Regular, PingFang SC;
  642. font-weight: 400;
  643. color: #0C66C2;
  644. }
  645. }
  646. }
  647. .more-box {
  648. height: 200rpx;
  649. padding: 0 60rpx;
  650. width: 100%;
  651. box-sizing: border-box;
  652. .more-item {
  653. margin: 0 58rpx 0 0;
  654. .item-text {
  655. font-size: 22rpx;
  656. font-family: PingFangSC-Regular, PingFang SC;
  657. font-weight: 400;
  658. color: #444444;
  659. }
  660. .item-img {
  661. width: 114rpx;
  662. height: 114rpx;
  663. background: #F3F3F3;
  664. border-radius: 20rpx;
  665. margin-bottom: 24rpx;
  666. .hide {
  667. position: absolute;
  668. top: 0;
  669. right: 0;
  670. min-width: 100%;
  671. min-height: 100%;
  672. filter: alpha(opacity=0);
  673. opacity: 0;
  674. cursor: inherit;
  675. display: none;
  676. }
  677. image {
  678. width: 52rpx;
  679. height: 52rpx;
  680. }
  681. }
  682. }
  683. }
  684. .chat-down-btn {
  685. margin: 12rpx auto;
  686. width: 686rpx;
  687. height: 84rpx;
  688. background: #F3F3F3;
  689. border-radius: 42rpx;
  690. padding: 0 28rpx;
  691. .input {
  692. flex: 1;
  693. margin-left: 28rpx;
  694. font-size: 28rpx;
  695. }
  696. .img1 {
  697. width: 44rpx;
  698. height: 44rpx;
  699. margin: 0 28rpx;
  700. }
  701. .img2 {
  702. width: 44rpx;
  703. height: 44rpx;
  704. }
  705. .changyong {
  706. width: 44rpx;
  707. height: 44rpx;
  708. line-height: 44rpx;
  709. border: 3rpx solid #131415;
  710. text-align: center;
  711. border-radius: 100rpx;
  712. font-size: 26rpx;
  713. font-family: PingFangSC-Medium, PingFang SC;
  714. font-weight: 500;
  715. color: #131415;
  716. }
  717. }
  718. }
  719. .record-box {
  720. width: 100%;
  721. position: relative;
  722. }
  723. .luyin button::after {
  724. border: none;
  725. }
  726. .luyin button {
  727. font-size: 14px;
  728. line-height: 38px;
  729. width: 100%;
  730. height: 38px;
  731. border-radius: 8px;
  732. text-align: center;
  733. background: #f3f3f3;
  734. }
  735. .luyin button image {
  736. width: 16px;
  737. height: 16px;
  738. margin-right: 4px;
  739. vertical-align: middle;
  740. }
  741. .record-btn-2 {
  742. background: rgba(255, 211, 0, 0.2);
  743. }
  744. /* 提示小弹窗 */
  745. .prompt-layer {
  746. border-radius: 8px;
  747. background: #fff;
  748. padding: 8px 16px;
  749. box-sizing: border-box;
  750. position: absolute;
  751. left: 50%;
  752. transform: translateX(-50%);
  753. }
  754. .prompt-layer::after {
  755. content: '';
  756. display: block;
  757. border: 6px solid rgba(0, 0, 0, 0);
  758. border-top-color: rgba(255, 211, 0, 1);
  759. position: absolute;
  760. bottom: -10px;
  761. left: 50%;
  762. transform: translateX(-50%);
  763. }
  764. .prompt-layer-1 {
  765. font-size: 12px;
  766. width: 128px;
  767. text-align: center;
  768. display: flex;
  769. flex-direction: column;
  770. align-items: center;
  771. justify-content: center;
  772. top: -80px;
  773. }
  774. .prompt-layer-1 .p {
  775. color: #000000;
  776. }
  777. .prompt-layer-1 .span {
  778. color: rgba(0, 0, 0, .6);
  779. }
  780. .prompt-loader .em {}
  781. /* 语音音阶------------- */
  782. .prompt-loader {
  783. width: 96px;
  784. height: 20px;
  785. display: flex;
  786. align-items: center;
  787. justify-content: space-between;
  788. margin-bottom: 6px;
  789. }
  790. .prompt-loader .em {
  791. display: block;
  792. background: #333333;
  793. width: 1px;
  794. height: 10%;
  795. margin-right: 2.5px;
  796. float: left;
  797. }
  798. .prompt-loader .em:last-child {
  799. margin-right: 0px;
  800. }
  801. .prompt-loader .em:nth-child(1) {
  802. animation: load 2.5s 1.4s infinite linear;
  803. }
  804. .prompt-loader .em:nth-child(2) {
  805. animation: load 2.5s 1.2s infinite linear;
  806. }
  807. .prompt-loader .em:nth-child(3) {
  808. animation: load 2.5s 1s infinite linear;
  809. }
  810. .prompt-loader .em:nth-child(4) {
  811. animation: load 2.5s 0.8s infinite linear;
  812. }
  813. .prompt-loader .em:nth-child(5) {
  814. animation: load 2.5s 0.6s infinite linear;
  815. }
  816. .prompt-loader .em:nth-child(6) {
  817. animation: load 2.5s 0.4s infinite linear;
  818. }
  819. .prompt-loader .em:nth-child(7) {
  820. animation: load 2.5s 0.2s infinite linear;
  821. }
  822. .prompt-loader .em:nth-child(8) {
  823. animation: load 2.5s 0s infinite linear;
  824. }
  825. .prompt-loader .em:nth-child(9) {
  826. animation: load 2.5s 0.2s infinite linear;
  827. }
  828. .prompt-loader .em:nth-child(10) {
  829. animation: load 2.5s 0.4s infinite linear;
  830. }
  831. .prompt-loader .em:nth-child(11) {
  832. animation: load 2.5s 0.6s infinite linear;
  833. }
  834. .prompt-loader .em:nth-child(12) {
  835. animation: load 2.5s 0.8s infinite linear;
  836. }
  837. .prompt-loader .em:nth-child(13) {
  838. animation: load 2.5s 1s infinite linear;
  839. }
  840. .prompt-loader .em:nth-child(14) {
  841. animation: load 2.5s 1.2s infinite linear;
  842. }
  843. .prompt-loader .em:nth-child(15) {
  844. animation: load 2.5s 1.4s infinite linear;
  845. }
  846. @keyframes load {
  847. 0% {
  848. height: 10%;
  849. }
  850. 50% {
  851. height: 100%;
  852. }
  853. 100% {
  854. height: 10%;
  855. }
  856. }
  857. /* 语音音阶-------------------- */
  858. .prompt-layer-2 {
  859. top: -40px;
  860. }
  861. .prompt-layer-2 .text {
  862. color: rgba(0, 0, 0, 1);
  863. font-size: 12px;
  864. }
  865. }
  866. </style>