answerList.vue 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328
  1. <template>
  2. <view class="answer-page">
  3. <template v-if="hasAuth">
  4. <view class="answer-bar">
  5. <view
  6. class="bar-item"
  7. :class="{ active: item.key === selectKey }"
  8. @click="changeBar(item)"
  9. v-for="item in barList"
  10. :key="item.key"
  11. >{{ item.label + "(" + item.num + ")" }}</view
  12. >
  13. </view>
  14. <view class="answer-list">
  15. <view class="report-empty-box" v-if="questionList.length == 0">
  16. <image :src="globalImgUrls.activityNoAuth" mode="widthFix" style="width:100%;"/>
  17. <view>暂无数据</view>
  18. </view>
  19. <view
  20. class="question-item"
  21. v-for="item in questionList"
  22. :key="item.community_question_id"
  23. @click="toDetail(item)"
  24. >
  25. <view class="question-info">
  26. <view style="flex: 1" class="question-title">
  27. <text
  28. class="item-label"
  29. v-if="(item.reply_status === 3 || item.replier_user_id == userInfo.user_id) && questionStatus!=2"
  30. >{{ item.variety_tag_name }}</text
  31. >
  32. {{ item.question_content }}
  33. </view>
  34. <view class="item-answer" v-if="item.reply_status === 3">
  35. <view class="answer" @click.stop="handleAudio(item)">
  36. <template v-if="!item.loading">
  37. <image
  38. class="music-img"
  39. :src="item.answer.isplay ? playImgSrc : pauseImgSrc"
  40. mode="widthFix"
  41. />
  42. <template v-if="item.answer.isplay || item.answer.ispause">
  43. <text>{{
  44. item.answer.audioTime - currentAudioMsg.audioCurrentTime>0?
  45. moment(item.answer.audioTime - currentAudioMsg.audioCurrentTime).format('mm:ss')
  46. :'00:00'}}
  47. </text>
  48. </template>
  49. <template v-else>
  50. <text>{{
  51. moment(item.answer.audioTime).format("mm:ss")
  52. }}</text>
  53. </template>
  54. </template>
  55. <template v-else>
  56. <image
  57. class="load-img"
  58. src="../static/loading.png"
  59. mode="aspectFill"
  60. />
  61. <text>{{ moment(item.answer.audioTime).format("mm:ss") }}</text>
  62. </template>
  63. </view>
  64. </view>
  65. </view>
  66. <text class="item-time">提问时间:{{ item.create_time }}</text>
  67. </view>
  68. </view>
  69. </template>
  70. <!-- 没有权限 -->
  71. <template v-else>
  72. <view class="noAuth-wrap">
  73. <image class="img" :src="globalImgUrls.activityNoAuth" mode="widthFix"></image>
  74. <view class="auth-text">您暂无权限查看问答社区</view>
  75. <view class="auth-text" v-if="noAuthInfo.type==='contact'">若想查看可以联系对口销售</view>
  76. <view class="auth-text" v-else>若想查看可以申请开通</view>
  77. <view class="auth-text" v-if="noAuthInfo.type==='contact'">
  78. {{noAuthInfo.name||''}}:<text @click="handleCallPhone(noAuthInfo.mobile+'')">{{noAuthInfo.mobile||''}}</text>
  79. </view>
  80. <view class="apply" @click="handleGoApply" v-else>立即申请</view>
  81. </view>
  82. </template>
  83. <!-- 弹窗 -->
  84. <van-popup
  85. :show="pupData.show"
  86. round
  87. @close="pupData.show = false"
  88. closeable
  89. :close-on-click-overlay="false"
  90. >
  91. <view class="global-pup">
  92. <view class="content">
  93. <rich-text
  94. style="flex: none; margin-bottom: 20rpx"
  95. :nodes="pupData.content"
  96. ></rich-text>
  97. <view class="contact" v-if="pupData.type === 'contact'">
  98. {{ pupData.saleName || "梁娜" }}:<text
  99. @click="handleCallPhone(pupData.mobile)"
  100. >{{ pupData.mobile || "123456" }}</text
  101. >
  102. </view>
  103. <view class="apply" v-else-if="pupData.type === 'apply'">
  104. <view @click="handleApply">立即申请</view>
  105. </view>
  106. </view>
  107. </view>
  108. </van-popup>
  109. </view>
  110. </template>
  111. <script>
  112. import mixin from "../mixin/questionMixin";
  113. import { apiBarTotal ,apiSetRead} from "@/api/question.js";
  114. export default {
  115. mixins: [mixin],
  116. data() {
  117. return {
  118. questionList: [],
  119. barList: [],
  120. selectKey: "Wait",
  121. pauseImgSrc: "../static/question/recordplay.png",
  122. playImgSrc: "../static/question/recordpause.png",
  123. // 列表的状态 0-全部 2-未回答 3-已回答 4-待回答
  124. questionStatus:0,
  125. /* userInfo:{
  126. is_inner:1,//0:外部客户;1内部员工
  127. status:'试用',
  128. is_suspend:0,
  129. is_researcher:0
  130. },//mock用户信息 */
  131. };
  132. },
  133. onLoad() {
  134. /* this.getVisitor();
  135. this.getBarList();
  136. this.getQuestionData(); */
  137. },
  138. onShow() {
  139. this.getSelectKey();
  140. this.getBarList();
  141. this.getQuestionData();
  142. },
  143. onReachBottom() {
  144. if (this.finished) return;
  145. this.page++;
  146. this.getQuestionData();
  147. },
  148. onPullDownRefresh() {
  149. this.resetAudio()
  150. this.refreshPage()
  151. setTimeout(() => {
  152. uni.stopPullDownRefresh()
  153. }, 1500);
  154. },
  155. methods: {
  156. toDetail(item) {
  157. // 未回答的不进行操作
  158. if(this.questionStatus == 2) return
  159. //reply_status:1-待分配 2-待回答 3-已回答
  160. if (this.isUserResearcher && item.reply_status === 2 && item.replier_user_id == this.userInfo.user_id) {
  161. // 是研究员 && 问题是待回答 && 回答者是我
  162. uni.navigateTo({ url: "/pages-question/answerDetail?id=" + item.id });
  163. }
  164. },
  165. //点击bar
  166. changeBar({ key }) {
  167. if (key === this.selectKey) return;
  168. this.selectKey = key;
  169. this.questionList = [];
  170. this.page = 1;
  171. // 重新获取数量
  172. apiBarTotal().then(res=>{
  173. if(res.code == 200){
  174. const { replied, wait, total,distribute } = res.data;
  175. for (const bar of this.barList) {
  176. if(bar.label == '已回答'){
  177. bar.num = replied
  178. }else if(bar.label == '未回答'){
  179. bar.num = wait
  180. }else if(bar.label == '全部'){
  181. bar.num = total
  182. }else if(bar.label == '待回答'){
  183. bar.num = distribute
  184. }
  185. }
  186. }
  187. });
  188. this.resetAudio();
  189. this.getQuestionData();
  190. },
  191. getSelectKey() {
  192. if(this.userInfo.is_inner === 1){
  193. this.selectKey = 'Distribute'
  194. }else{
  195. this.selectKey = 'Replied'
  196. }
  197. },
  198. async getBarList() {
  199. const res = await apiBarTotal();
  200. if (res.code !== 200) return;
  201. const { replied, wait, total,distribute } = res.data;
  202. //客户: 已回答 未回答 全部
  203. const customBar = [
  204. {
  205. label: "已回答",
  206. key: "Replied",
  207. num: replied,
  208. },
  209. {
  210. label: "未回答",
  211. key: "Wait",
  212. num: wait,
  213. },
  214. {
  215. label: "全部",
  216. key: "Total",
  217. num: total,
  218. },
  219. ];
  220. //研究员: 待回答 未回答 已回答 全部
  221. const researBar = [
  222. {
  223. label: "待回答",
  224. key: "Distribute",
  225. num: distribute,
  226. },
  227. {
  228. label:'未回答',
  229. key:'Wait',
  230. num:wait,
  231. },
  232. {
  233. label: "已回答",
  234. key: "Replied",
  235. num: replied,
  236. },
  237. {
  238. label: "全部",
  239. key: "Total",
  240. num: total,
  241. },
  242. ];
  243. this.barList = this.isUserResearcher ? researBar : customBar;
  244. },
  245. async getQuestionData() {
  246. const reply_status = { Wait: 2, Replied: 3, Total: 0 ,Distribute:4};
  247. this.questionStatus = reply_status[this.selectKey]
  248. await this.getQuestionList(reply_status[this.selectKey],1);
  249. this.setQuestionsRead()
  250. },
  251. async setQuestionsRead(){
  252. //获取未读的数据,请求未读接口变为已读
  253. let unReadArr = []
  254. this.questionList.forEach(item=>{
  255. /* let isReadKey = this.isUserResearcher?'replier_is_read':'is_read' */
  256. let isReadKey = item.user_id===this.userInfo.user_id?'replier_is_read':'is_read'
  257. if(item[isReadKey]===0){
  258. unReadArr.push(item.community_question_id)
  259. }
  260. })
  261. if(unReadArr.length===0) return
  262. await apiSetRead({
  263. question_ids:unReadArr.join(',')
  264. })
  265. },
  266. refreshPage() {
  267. this.page = 1
  268. this.selectId = -1
  269. this.questionList = []
  270. this.finished = false
  271. this.getQuestionData()
  272. },
  273. },
  274. };
  275. </script>
  276. <style lang="scss" scoped>
  277. .answer-page {
  278. padding: 30rpx;
  279. .answer-bar {
  280. display: flex;
  281. /* justify-content: space-between; */
  282. overflow-x: scroll;
  283. &::-webkit-scrollbar{
  284. width: 0;
  285. display: none;
  286. }
  287. .bar-item {
  288. width: 206rpx;
  289. min-width: 206rpx;
  290. color: #666666;
  291. background-color: #f5f5f5;
  292. height: 70rpx;
  293. line-height: 70rpx;
  294. text-align: center;
  295. margin-right: 20rpx;
  296. &.active {
  297. background-color: #fdf8f2;
  298. color: #e3b377;
  299. }
  300. }
  301. }
  302. .answer-list {
  303. margin-top: 20rpx;
  304. }
  305. .global-pup {
  306. .content {
  307. padding: 90rpx 34rpx;
  308. flex-direction: column;
  309. .contact {
  310. text {
  311. margin-left: 15rpx;
  312. color: #e6b77d;
  313. }
  314. }
  315. .apply {
  316. margin-top: 40rpx;
  317. width: 390rpx;
  318. height: 80rpx;
  319. background-color: #e6b77d;
  320. color: #ffffff;
  321. text-align: center;
  322. line-height: 80rpx;
  323. border-radius: 40rpx;
  324. }
  325. }
  326. }
  327. }
  328. </style>