answerDetail.vue 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953
  1. <template>
  2. <view class="answerdetail-page flex-column">
  3. <template v-if="questionItem&&hasAuth">
  4. <view class="question-wrap">
  5. <view class="question-item">
  6. <view class="question-info">
  7. <view style="flex: 1" class="question-title">
  8. <text class="item-label">{{
  9. questionItem.variety_tag_name
  10. }}</text>
  11. {{ questionItem.question_content }}
  12. </view>
  13. <view class="item-answer" v-if="questionItem.reply_status === 3&&!isUserResearcher">
  14. <view class="answer" @click.stop="handleAudio(questionItem)">
  15. <template v-if="!questionItem.loading">
  16. <image
  17. class="music-img"
  18. :src="questionItem.answer.isplay ? playImgSrc : pauseImgSrc"
  19. mode="widthFix"
  20. />
  21. <template
  22. v-if="
  23. questionItem.answer.isplay || questionItem.answer.ispause
  24. "
  25. >
  26. <text>{{
  27. questionItem.answer.audioTime -
  28. currentAudioMsg.audioCurrentTime >
  29. 0
  30. ? moment(
  31. (questionItem.answer.audioTime -
  32. currentAudioMsg.audioCurrentTime) *
  33. 1000
  34. ).format("mm:ss")
  35. : "00:00"
  36. }}</text>
  37. </template>
  38. <template v-else>
  39. <text>{{
  40. moment(questionItem.answer.audioTime * 1000).format(
  41. "mm:ss"
  42. )
  43. }}</text>
  44. </template>
  45. </template>
  46. <template v-else>
  47. <image
  48. class="load-img"
  49. src="../static/loading.png"
  50. mode="aspectFill"
  51. />
  52. <text>{{
  53. moment(questionItem.answer.audioTime).format("mm:ss")
  54. }}</text>
  55. </template>
  56. </view>
  57. </view>
  58. </view>
  59. <text class="item-time">提问时间:{{ questionItem.create_time }}</text>
  60. </view>
  61. </view>
  62. <view
  63. class="record-wrap flex-column"
  64. v-if="questionItem.reply_status === 2&&isUserResearcher"
  65. >
  66. <view class="record flex-column" v-if="questionItem.recordStatus !== 4">
  67. <view class="no-record" v-if="questionItem.recordStatus === 1">
  68. <image
  69. src="./static/record.png"
  70. mode="widthFix"
  71. style="width: 90rpx; height: 180rpx"
  72. />
  73. <view>无录音(录音时长超过三分钟自动结束)</view>
  74. </view>
  75. <!-- <view class="record-time" v-else>{{ audioTime }}</view> -->
  76. <view class="recode-image" v-else>
  77. <scroll-view scroll-x style="height: 100rpx" class="scroll-view" :scroll-left="scrollTop" @scrolltolower="handleScrolltolower" :show-scrollbar="false">
  78. <view style="width:100%;height:100rpx;display:inline-block;"></view>
  79. <image
  80. src="./static/record-img.png"
  81. mode="scaleToFill"
  82. />
  83. <image
  84. src="./static/record-img.png"
  85. mode="scaleToFill"
  86. />
  87. <image
  88. src="./static/record-img.png"
  89. mode="scaleToFill"
  90. />
  91. </scroll-view>
  92. </view>
  93. </view>
  94. <view
  95. class="record-tool flex-column"
  96. v-if="questionItem.recordStatus !== 4"
  97. >
  98. <view class="hint" v-if="questionItem.recordStatus === 1"
  99. >点击开始录音</view
  100. >
  101. <view class="record-time" v-else>{{ audioTime }}</view>
  102. <view
  103. class="record-btn-wrap center"
  104. v-if="questionItem.recordStatus === 1"
  105. >
  106. <view class="switch" @click="changeRecodeStatus"> </view>
  107. </view>
  108. <view class="record-btn-wrap" v-else>
  109. <text
  110. @click="questionItem.recordStatus === 3 && handleRecode('delete')"
  111. v-if="questionItem.recordStatus >= 2"
  112. :class="{ active: questionItem.recordStatus === 3 }"
  113. >删除</text
  114. >
  115. <view class="switch" @click="changeRecodeStatus">
  116. <image
  117. v-if="questionItem.recordStatus >= 2"
  118. :src="
  119. questionItem.recordStatus === 2 ? playImgSrc : pauseImgSrc
  120. "
  121. :key="playIconKey"
  122. :style="{
  123. 'margin-left': questionItem.recordStatus !== 2 ? '7rpx' : 0,
  124. width: '36rpx',
  125. height: '44rpx',
  126. }"
  127. mode="widthFix"
  128. />
  129. </view>
  130. <text
  131. @click="handleRecode('finish')"
  132. v-if="questionItem.recordStatus >= 2"
  133. :class="{ active: questionItem.recordStatus >= 2 }"
  134. >完成</text
  135. >
  136. </view>
  137. </view>
  138. <view class="record-play" v-if="questionItem.recordStatus === 4">
  139. <view class="audio-wrap">
  140. <view v-if="pageLoading">音频生成中...</view>
  141. <view class="play" v-else>
  142. <van-icon
  143. :name="isplay ? 'pause' : 'play'"
  144. @click="handleAudioByReplay"
  145. color="#E6B77DFF"
  146. size="64rpx"
  147. style="align-items: flex-start; margin-left: -20rpx"
  148. />
  149. <!-- 进度条 -->
  150. <view class="slider-box">
  151. <slider
  152. :value="currentAudioMsg.audioCurrentTime"
  153. :max="currentAudioMsg.audioTime"
  154. @change="sliderChange($event)"
  155. @changing="sliderChanging"
  156. activeColor="#E6B77DFF"
  157. backgroundColor="#EBEBEBFF"
  158. block-color="#E6B77DFF"
  159. block-size="12"
  160. />
  161. <view class="slider-time">
  162. <text>{{
  163. moment(currentAudioMsg.audioCurrentTime * 1000).format(
  164. "mm:ss.SS"
  165. )
  166. }}</text>
  167. <text>{{
  168. moment(currentAudioMsg.audioTime * 1000).format("mm:ss.SS")
  169. }}</text>
  170. </view>
  171. </view>
  172. </view>
  173. </view>
  174. <view class="audio-delete" @click="handleRecode('delete')">
  175. <image
  176. src="./static/delerecord.png"
  177. mode="heightFix"
  178. style="width: 32rpx; height: 35rpx"
  179. />
  180. <text>删除</text></view
  181. >
  182. <view class="audio-pub" @click="handleRecode('pub')">发布</view>
  183. </view>
  184. </view>
  185. <view class="record-wrap flex-column" v-if="questionItem.reply_status===3&&isUserResearcher">
  186. <view class="record-play" v-if="questionItem.recordStatus === 4">
  187. <view class="audio-wrap">
  188. <view class="play">
  189. <van-icon
  190. :name="isplay ? 'pause' : 'play'"
  191. @click="handleAudioByReplay"
  192. color="#E6B77DFF"
  193. size="64rpx"
  194. style="align-items: flex-start; margin-left: -20rpx"
  195. />
  196. <!-- 进度条 -->
  197. <view class="slider-box">
  198. <slider
  199. :value="currentAudioMsg.audioCurrentTime"
  200. :max="currentAudioMsg.audioTime"
  201. @change="sliderChange($event)"
  202. @changing="sliderChanging"
  203. activeColor="#E6B77DFF"
  204. backgroundColor="#EBEBEBFF"
  205. block-color="#E6B77DFF"
  206. block-size="12"
  207. />
  208. <view class="slider-time">
  209. <text>{{
  210. moment(currentAudioMsg.audioCurrentTime * 1000).format(
  211. "mm:ss"
  212. )
  213. }}</text>
  214. <text>{{
  215. moment(questionItem.answer.audioTime * 1000).format(
  216. "mm:ss"
  217. )
  218. }}</text>
  219. </view>
  220. </view>
  221. </view>
  222. </view>
  223. <view class="audio-pub disable">已发布</view>
  224. </view>
  225. </view>
  226. </template>
  227. <!-- 没有该问题权限 -->
  228. <template v-else-if="!hasAuth">
  229. <view class="noAuth-wrap">
  230. <image class="img" :src="globalImgUrls.activityNoAuth" mode="widthFix"></image>
  231. <view class="auth-text">您暂无权限查看问答社区</view>
  232. <view class="auth-text" v-if="noAuthInfo.type==='contact'">若想查看可以联系对口销售</view>
  233. <view class="auth-text" v-else>若想查看可以申请开通</view>
  234. <view class="auth-text" v-if="noAuthInfo.type==='contact'">
  235. {{noAuthInfo.name||''}}:<text @click="handleCallPhone(noAuthInfo.mobile+'')">{{noAuthInfo.mobile||''}}</text>
  236. </view>
  237. <view class="apply" @click="handleGoApply" v-else>立即申请</view>
  238. </view>
  239. </template>
  240. </view>
  241. </template>
  242. <script>
  243. import mixin from "../mixin/questionMixin";
  244. import { apiReplayAsk, apiGetQuestion, apiSetRead,apiCountAudioClick } from "@/api/question";
  245. import { apiApplyPermission} from '@/api/user';
  246. import {apiGetSceneToParams} from "../api/common.js"
  247. import { uploadAudioToServer } from "@/utils/upload";
  248. export default {
  249. mixins: [mixin],
  250. data() {
  251. return {
  252. questionItem: null /* {
  253. recordStatus: 1, //1:未录音;2:正在录音;3:已暂停;4:完成录音
  254. permission_info:{
  255. type:'',
  256. name:'梁娜',
  257. mobile:'123456',
  258. customer_info:{
  259. has_apply:false,
  260. company_name:'',
  261. name:'',
  262. status:'流失',
  263. }
  264. }
  265. }, */,
  266. pauseImgSrc: "../static/question/recordplay.png",
  267. playImgSrc: "../static/question/recordpause.png",
  268. innerAudio: null, //该页面的音频
  269. audioCount: 0, //录音计时,毫秒
  270. audioSrc:'',//tempSrc
  271. audioTime: "00:00", //录音时间(格式化后):string
  272. timer: null,
  273. audioItem: null,
  274. pageLoading: false,
  275. playIconKey: 0,
  276. isplay: false,
  277. isSlider: false,
  278. scrollTop:0,
  279. isStart:false,//判断录音是否开始
  280. //globalRecorder:uni.getRecorderManager(),
  281. /* userInfo:{
  282. is_inner:1,//0:外部客户;1内部员工
  283. status:'正式',
  284. is_suspend:1,
  285. is_researcher:0,
  286. }, *///mock用户信息
  287. };
  288. },
  289. async onLoad(options) {
  290. this.initAudio();
  291. let obj={}
  292. if(options.scene){
  293. // 小程序码进来的
  294. let res = await apiGetSceneToParams({scene_key:options.scene})
  295. if(res.code==200){
  296. obj=JSON.parse(res.data)
  297. }
  298. }
  299. this.getQuestionItem(obj.id || options.id);
  300. },
  301. onShow(){
  302. uni.authorize({
  303. scope: 'scope.record',
  304. success() {
  305. },
  306. fail(e){
  307. console.log('fail',e);
  308. }
  309. })
  310. },
  311. onUnload() {
  312. this.resetAudio();
  313. this.destroyAudio();
  314. //录音时误操作退出页面的情况
  315. if(this.questionItem.recordStatus!==4&&this.questionItem.recordStatus!==1){
  316. this.globalRecorder.stop()
  317. }
  318. },
  319. methods: {
  320. //初始化audio,onShow执行
  321. initAudio() {
  322. this.innerAudio = uni.createInnerAudioContext();
  323. this.handleAudioFun();
  324. this.handleRecorderFun();
  325. //录音完成后,切出其他页面再切回来
  326. if(this.questionItem?.recordStatus===4){
  327. console.log('count',this.audioCount,'src',this.audioSrc)
  328. this.setAudio(this.audioSrc,this.audioCount)
  329. }
  330. },
  331. //录音完成or从其他app切回本页面时,初始化音频
  332. setAudio(src,audioCount){
  333. this.innerAudio.stop();
  334. this.isplay = false;
  335. this.innerAudio.src = src;
  336. console.log('秒数',audioCount)
  337. this.changeCurrentAudio({
  338. id: "",
  339. answer: {
  340. source: src,
  341. audioTime: audioCount/1000,
  342. },
  343. });
  344. },
  345. //麦克风被占用,初始化录音相关变量 其他状态->未录音状态
  346. setRecorder(){
  347. this.questionItem.recordStatus = 1;
  348. this.innerAudio.stop();
  349. this.isplay = false;
  350. this.audioItem = null;
  351. this.audioCount = 0;
  352. this.scrollTop = 0;
  353. this.audioTime = this.moment(this.audioCount * 1000).format("mm:ss");
  354. },
  355. //onHide触发
  356. resetAudio(){
  357. this.innerAudio.stop();
  358. this.isplay = false;
  359. this.changeCurrentAudio({
  360. id: '',
  361. answer: {
  362. source: '',
  363. audioTime: 0
  364. }
  365. })
  366. },
  367. //audio事件
  368. handleAudioFun() {
  369. this.innerAudio.onPlay(() => {
  370. this.isplay = true;
  371. console.log("播放录音了");
  372. this.questionItem.loading = false;
  373. });
  374. this.innerAudio.onTimeUpdate(() => {
  375. //console.log("时间更新", this.innerAudio.currentTime);
  376. /* this.currentAudioMsg.audioCurrentTime = parseInt(
  377. this.innerAudio.currentTime
  378. ); */
  379. this.currentAudioMsg.audioCurrentTime = this.innerAudio.currentTime;
  380. });
  381. this.innerAudio.onSeeked(() => {
  382. //取this.innerAudio.currentTime为0
  383. console.log("seek完成");
  384. this.isSlider = false;
  385. });
  386. this.innerAudio.onPause(() => {
  387. this.isplay = false;
  388. console.log("暂停");
  389. console.log(this.innerAudio.paused);
  390. });
  391. this.innerAudio.onEnded(() => {
  392. console.log("音频播放完毕");
  393. this.questionItem.answer.isplay = false;
  394. this.questionItem.answer.ispause = false;
  395. /* this.changeCurrentAudio({
  396. id: "",
  397. answer: {
  398. source: "",
  399. audioTime: 0,
  400. },
  401. }); */
  402. this.currentAudioMsg.audioCurrentTime = 0;
  403. this.isplay = false;
  404. });
  405. },
  406. //录音事件
  407. handleRecorderFun() {
  408. this.globalRecorder.onStart(() => {
  409. console.log("开始录音");
  410. if(this.questionItem.recordStatus===1){
  411. this.questionItem.recordStatus=2
  412. }
  413. uni.hideToast();
  414. this.clockTime();
  415. });
  416. this.globalRecorder.onPause(() => {
  417. console.log("暂停录音");
  418. if(this.questionItem.recordStatus===2){
  419. this.questionItem.recordStatus = 3
  420. }
  421. this.cleanTime();
  422. });
  423. this.globalRecorder.onStop((res) => {
  424. console.log("录音完成");
  425. //录音自动结束 和 暂停时点击删除 的情况
  426. if (this.questionItem.recordStatus === 2) {
  427. this.questionItem.recordStatus = 4;
  428. }
  429. console.log('status',this.questionItem.recordStatus)
  430. console.log("res", JSON.stringify(res));
  431. this.cleanTime();
  432. //初始化音频播放
  433. this.audioSrc = res.tempFilePath
  434. this.setAudio(this.audioSrc ,this.audioCount)
  435. this.pageLoading = false;
  436. });
  437. this.globalRecorder.onError((res) => {
  438. console.log('err',res)
  439. console.log('errMsg',res.errMsg)
  440. /* uni.showToast({
  441. title:res.errMsg,
  442. icon:'none'
  443. }) */
  444. //开始录音失败
  445. if(res.errMsg.includes('start')){
  446. this.questionItem.recordStatus = 1;
  447. }
  448. //麦克风被占用的情况
  449. if(res.errCode===1){
  450. uni.showToast({
  451. title:'麦克风被占用,已停止录音',
  452. icon:'none'
  453. })
  454. this.globalRecorder.stop();
  455. this.setRecorder()
  456. }
  457. });
  458. /* this.globalRecorder.onFrameRecorded((res) => {
  459. console.log("?", res);
  460. }); */
  461. },
  462. async getQuestionItem(id) {
  463. const res = await apiGetQuestion({
  464. question_id: id,
  465. });
  466. if (res.code === 200) {
  467. this.questionItem = res.data;
  468. const { audio_list } = res.data;
  469. let temp = {};
  470. if (audio_list.length > 0) {
  471. temp = {
  472. source: res.data.audio_list[0].audio_url,
  473. audioTime: parseInt(res.data.audio_list[0].audio_play_seconds)||0,
  474. isplay: false,
  475. ispause: false,
  476. };
  477. } else {
  478. temp = {
  479. source: "",
  480. audioTime: 0,
  481. isplay: false,
  482. ispause: false,
  483. };
  484. }
  485. let readKey = "";
  486. //const { is_inner } = this.userInfo;
  487. if (this.isUserResearcher) {
  488. readKey = "replier_is_read";
  489. } else {
  490. readKey = "is_read";
  491. }
  492. console.log('readKey',readKey)
  493. this.questionItem[readKey] !== 1 &&
  494. (await apiSetRead({
  495. question_ids: this.questionItem.community_question_id + "",
  496. }));
  497. this.questionItem.id = res.data.community_question_id;
  498. this.questionItem.answer = temp;
  499. this.questionItem.loading = false;
  500. this.questionItem.recordStatus = res.data.reply_status === 3 ? 4 : 1;
  501. //研究员查看已回复的问题,初始化音频
  502. if(res.data.reply_status===3&&this.isUserResearcher){
  503. this.innerAudio.src = res.data.audio_list[0].audio_url
  504. this.audioSrc = res.data.audio_list[0].audio_url
  505. this.audioCount = parseInt(res.data.audio_list[0].audio_play_seconds)*1000
  506. this.changeCurrentAudio({
  507. id: "",
  508. answer: {
  509. source: res.data.audio_list[0].audio_url,
  510. audioTime: parseInt(res.data.audio_list[0].audio_play_seconds)||0,
  511. },
  512. });
  513. }
  514. }else if(res.code===403){
  515. this.hasAuth=false
  516. this.noAuthInfo = res.data
  517. }else{
  518. //问题被删除的情况,返回小程序首页
  519. setTimeout(()=>{
  520. uni.switchTab({ url:'/pages/report/report' });
  521. },1000)
  522. }
  523. },
  524. changeRecodeStatus() {
  525. console.log('a',this.questionItem.recordStatus)
  526. //根据questionItem.recordStatus
  527. if (this.questionItem.recordStatus === 1) {
  528. const that = this
  529. //检查是否有权限
  530. uni.getSetting({
  531. success(res){
  532. console.log('res',res)
  533. if(res.authSetting['scope.record']){
  534. that.startRecord()
  535. }else{
  536. that.getRecordAuth()
  537. }
  538. }
  539. });
  540. } else if (this.questionItem.recordStatus === 2) {
  541. //暂停录音
  542. this.globalRecorder.pause();
  543. this.questionItem.recordStatus = 3;
  544. } else if (this.questionItem.recordStatus === 3) {
  545. //继续录音
  546. this.globalRecorder.resume();
  547. this.clockTime();
  548. this.questionItem.recordStatus = 2;
  549. } else {
  550. //结束录音
  551. this.globalRecorder.stop();
  552. //this.cleanTime();
  553. }
  554. },
  555. //获取录音授权
  556. getRecordAuth(){
  557. const {community_question_id} = this.questionItem
  558. uni.openSetting({
  559. success(res){
  560. //刷新页面
  561. if(res.authSetting['scope.record']){
  562. uni.redirectTo({url: `/pages-question/answerDetail?id=${community_question_id}`})
  563. }
  564. }
  565. })
  566. //this.questionItem.recordStatus = 1
  567. },
  568. //开启录音
  569. startRecord(){
  570. console.log(this.globalRecorder)
  571. this.globalRecorder.start({ duration: 180000, format: "mp3" });
  572. uni.showToast({
  573. title:'加载中',
  574. icon:'loading'
  575. })
  576. this.questionItem.recordStatus = 2;
  577. },
  578. //上传音频
  579. async uploadAudio() {
  580. const res = await uploadAudioToServer(this.innerAudio.src);
  581. if (res.code === 200) {
  582. this.audioItem = res.data;
  583. } else {
  584. //重新录
  585. this.setRecorder()
  586. }
  587. },
  588. //录音操作:完成/删除/发布
  589. async handleRecode(type) {
  590. if (type==='finish') {
  591. this.questionItem.recordStatus = 4;
  592. this.changeRecodeStatus();
  593. }
  594. if (type === "finish") {
  595. //生成音频,更改页面布局
  596. this.pageLoading = true;
  597. } else if (type === "delete") {
  598. //重新录
  599. if(this.questionItem.recordStatus===3)this.globalRecorder.stop();
  600. this.setRecorder()
  601. } else {
  602. //发布
  603. if (!this.audioItem) {
  604. await this.uploadAudio();
  605. }
  606. //如果上传音频成功
  607. if (this.questionItem.recordStatus === 4) {
  608. //发布回答
  609. const res = await apiReplayAsk({
  610. question_id: this.questionItem.community_question_id,
  611. audio_list: [{ ...this.audioItem, sort: 1 }],
  612. });
  613. if (res.code === 200) {
  614. uni.showToast({
  615. title: "发布成功",
  616. icon: "success",
  617. duration: 500,
  618. });
  619. setTimeout(() => {
  620. //关闭当前页面,跳转到我的回答
  621. //uni.navigateBack({ delta: 1 });
  622. uni.redirectTo({
  623. url: '/pages-question/answerList'
  624. })
  625. }, 500);
  626. }
  627. }
  628. }
  629. },
  630. //(提问者)问题已被回答,点击回答音频
  631. handleAudio(item) {
  632. const { source, isplay, ispause } = item.answer;
  633. if (isplay) {
  634. //说明是播放->暂停
  635. this.innerAudio.pause();
  636. this.questionItem.answer.isplay = false;
  637. this.questionItem.answer.ispause = true;
  638. } else if (ispause) {
  639. //说明是暂停->播放
  640. this.innerAudio.play();
  641. this.questionItem.answer.isplay = true;
  642. this.questionItem.answer.ispause = false;
  643. } else {
  644. //console.log("aaa", source, this.innerAudio.src);
  645. //说明是第一次播放或播放完
  646. this.changeCurrentAudio(item);
  647. this.innerAudio.stop();
  648. this.innerAudio.src = source;
  649. this.handleAudioPlay();
  650. this.questionItem.answer.isplay = true;
  651. //音频点击次数+1
  652. const audio_id = this.questionItem.audio_list[0].community_question_audio_id
  653. apiCountAudioClick({
  654. community_question_audio_id:audio_id,
  655. source_agent:1
  656. }).then((res)=>{
  657. if(res.code===200){
  658. console.log('音频id为'+audio_id+'点击次数+1')
  659. }
  660. })
  661. }
  662. },
  663. //(回答者)问题被回答,点击回答音频
  664. handleAudioByReplay() {
  665. this.isplay = !this.isplay;
  666. if (this.innerAudio.paused) {
  667. this.innerAudio.play();
  668. } else {
  669. this.innerAudio.pause();
  670. }
  671. this.playIconKey++; //更新音频播放图标
  672. },
  673. //拖动音频进度条
  674. sliderChange(e) {
  675. console.log("拖动完成?");
  676. //this.innerAudio.pause();
  677. const value = e.detail.value;
  678. this.innerAudio.seek(value);
  679. this.currentAudioMsg.audioCurrentTime = value;
  680. },
  681. sliderChanging() {
  682. this.isSlider = true;
  683. },
  684. //切换当前播放音频
  685. changeCurrentAudio(item) {
  686. const { id } = item;
  687. const { source, audioTime } = item.answer;
  688. this.currentAudioMsg = {
  689. id: id,
  690. audioCurrentTime: 0 * 1000,
  691. audioTime: audioTime,
  692. audioCurrentUrl: source,
  693. };
  694. if (id) {
  695. this.questionItem.loading = true;
  696. }
  697. },
  698. //录音计时
  699. clockTime() {
  700. console.log("开始录音计时");
  701. this.timer = setInterval(() => {
  702. if (this.timer) {
  703. this.audioCount += 30;
  704. this.audioTime = this.moment(this.audioCount).format("mm:ss.SS");
  705. this.scrollTop+=1;
  706. }
  707. }, 30);
  708. },
  709. //清除录音计时
  710. cleanTime() {
  711. console.log("结束录音计时");
  712. clearTimeout(this.timer);
  713. this.playIconKey++; //更新录音暂停播放图标
  714. //this.audioTime = this.moment(this.audioCount).format("mm:ss.SS");
  715. },
  716. //scroll-view滑动到最右
  717. handleScrolltolower(){
  718. console.log('a',this.scrollTop)
  719. this.scrollTop-=150;
  720. },
  721. //权限相关
  722. handleContact(mobile){
  723. uni.makePhoneCall({
  724. phoneNumber: mobile+''
  725. });
  726. },
  727. async handleGoApply(){
  728. const {customer_info} = this.questionItem.permission_info
  729. const {community_question_id} = this.questionItem
  730. if (customer_info.has_apply) { //已经申请过
  731. uni.showToast({
  732. title:'您已提交过申请,请耐心等待',
  733. icon:'none'
  734. })
  735. } else {
  736. if (!customer_info.status || customer_info.status != '流失') {
  737. uni.navigateTo({
  738. url: "/pages-applyPermission/applyPermission?source=5&form_page=问答社区"
  739. })
  740. } else { //主动调一次申请权限接口
  741. const res = await apiApplyPermission({
  742. company_name: customer_info.company_name,
  743. real_name: customer_info.name,
  744. source: 5,
  745. from_page: '问答社区'
  746. })
  747. if (res.code === 200) {
  748. uni.showToast({
  749. title:'您已提交过申请,请耐心等待',
  750. icon:'none'
  751. })
  752. uni.redirectTo({url: `/pages-question/answerDetail?id=${community_question_id}`})
  753. }
  754. }
  755. }
  756. },
  757. //转发分享
  758. onShareAppMessage(){
  759. const {community_question_id} = this.questionItem
  760. return{
  761. title:'问答详情',
  762. path:`/pages-question/answerDetail?id=${community_question_id}`
  763. }
  764. }
  765. },
  766. };
  767. </script>
  768. <style scoped lang="scss">
  769. .flex-column {
  770. display: flex;
  771. flex-direction: column;
  772. }
  773. .answerdetail-page {
  774. padding: 50rpx 30rpx 0 30rpx;
  775. height: calc(100vh - calc(50px + env(safe-area-inset-bottom)));
  776. box-sizing: border-box;
  777. .question-wrap {
  778. .question-item::after {
  779. height: 0;
  780. }
  781. }
  782. .record-wrap {
  783. margin: 0 -30rpx;
  784. flex: 1;
  785. .record {
  786. flex: 1;
  787. justify-content: center;
  788. align-items: center;
  789. .no-record {
  790. text-align: center;
  791. color: #999999ff;
  792. font-size: 28rpx;
  793. height:130rpx;
  794. image {
  795. width: 94rpx;
  796. }
  797. }
  798. /* .record-time {
  799. justify-self: flex-end;
  800. font-size: 60rpx;
  801. } */
  802. .recode-image {
  803. width: 100%;
  804. height: 100%;
  805. background-color: #fafafaff;
  806. display: flex;
  807. align-items: center;
  808. .scroll-view {
  809. width: 100%;
  810. white-space: nowrap;
  811. ::-webkit-scrollbar{
  812. width:0;
  813. height:0;
  814. display:none;
  815. color:transparent;
  816. }
  817. image {
  818. width: 421rpx;
  819. height: 100rpx;
  820. margin-right: 6rpx;
  821. }
  822. }
  823. }
  824. }
  825. .record-tool {
  826. justify-content: center;
  827. align-items: center;
  828. border-top: 1rpx solid #e6e6e6ff;
  829. height: 400rpx;
  830. position: relative;
  831. .hint {
  832. color: #ee3636ff;
  833. font-size: 28rpx;
  834. position: absolute;
  835. top: 50rpx;
  836. }
  837. .record-time{
  838. font-size: 60rpx;
  839. }
  840. .record-btn-wrap {
  841. margin-top: 38rpx;
  842. display: flex;
  843. width: 100%;
  844. justify-content: space-around;
  845. align-items: center;
  846. &.center {
  847. justify-content: center;
  848. }
  849. text {
  850. color: #999999ff;
  851. font-size: 32rpx;
  852. &.active {
  853. color: #ee3636ff;
  854. }
  855. }
  856. .switch {
  857. width: 118rpx;
  858. height: 118rpx;
  859. padding: 12rpx;
  860. box-sizing: border-box;
  861. border-radius: 50%;
  862. border: 1rpx solid #ee3636ff;
  863. /* background-color: rgb(68, 46, 46); */
  864. position: relative;
  865. display: flex;
  866. align-items: center;
  867. justify-content: center;
  868. image {
  869. position: absolute;
  870. width: 36rpx;
  871. z-index: 5;
  872. }
  873. &::after {
  874. content: "";
  875. display: inline-block;
  876. width: 100%;
  877. height: 100%;
  878. border-radius: 50%;
  879. background-color: #ee3636ff;
  880. }
  881. }
  882. }
  883. }
  884. .record-play {
  885. margin: 20rpx 30rpx;
  886. .audio-wrap {
  887. background-color: #fdf8f2ff;
  888. padding: 30rpx;
  889. border-radius: 16rpx;
  890. }
  891. .play {
  892. display: flex;
  893. justify-content: space-between;
  894. .slider-box {
  895. margin-left: 15rpx;
  896. flex: 1;
  897. slider {
  898. margin: 15rpx 0 0 0;
  899. }
  900. .slider-time {
  901. display: flex;
  902. justify-content: space-between;
  903. text {
  904. color: #999999ff;
  905. font-size: 22rpx;
  906. }
  907. }
  908. }
  909. }
  910. .audio-delete {
  911. margin-top: 20rpx;
  912. width: 100%;
  913. height: 40rpx;
  914. display: flex;
  915. justify-content: flex-end;
  916. align-items: center;
  917. image {
  918. height: 40rpx;
  919. }
  920. text {
  921. margin-left: 10rpx;
  922. color: #999999ff;
  923. font-size: 28rpx;
  924. }
  925. }
  926. .audio-pub {
  927. margin-top: 120rpx;
  928. background-color: #e6b77dff;
  929. color: #fff;
  930. height: 80rpx;
  931. line-height: 80rpx;
  932. border-radius: 40rpx;
  933. text-align: center;
  934. position: relative;
  935. width: 390rpx;
  936. left: 50%;
  937. margin-left: -170rpx;
  938. &.disable{
  939. background-color:#999999ff;
  940. color: #fff;
  941. }
  942. }
  943. }
  944. }
  945. }
  946. </style>