kj-chat.vue 22 KB

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