question.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390
  1. <template>
  2. <view class="question-wrap">
  3. <template v-if="hasAuth">
  4. <view class="question-top" :class="{'noAuth':!(isUserResearcher||userInfo.status&&userAuth)}">
  5. <view @click="showPopup" v-if="isUserResearcher||userInfo.status&&userAuth"
  6. style="display:flex;align-items: center;margin-left:30rpx;">
  7. <image src="../../static/question/select.png" mode="widthFix" class="menu-icon"/>
  8. <text style="color:#E3B377;font-size:28rpx;">筛选</text>
  9. </view>
  10. <van-popup :show="isPopupShow" position="left" :close-on-click-overlay="true"
  11. @close="isPopupShow = false"
  12. custom-style="height: 100%;width:50%;"
  13. @touchmove.stop.prevent>
  14. <view class="pop-wrap">
  15. <view class="pop-option-list">
  16. <van-collapse :value="activeName" @change="changeSelecOption" accordion :border="false">
  17. <van-collapse-item :border="false" :title="item.research_group_name" :name="index" v-for="(item, index) in optionList"
  18. :key="index">
  19. <view class="option-btn-wrap">
  20. <view class="option-btn"
  21. v-for=" i in item.children" :key="i.research_group_id"
  22. @click="handleOptionClick(i)"
  23. :class="{'active':selectName===i.research_group_name,'full':i.research_group_name.length>4}"
  24. >
  25. {{ i.research_group_name }}
  26. </view>
  27. </view>
  28. </van-collapse-item>
  29. </van-collapse>
  30. </view>
  31. </view>
  32. </van-popup>
  33. </view>
  34. <view class="report-empty-box" v-if="questionList.length==0">
  35. <image :src="globalImgUrls.activityNoAuth" mode="widthFix" style="width:100%;"/>
  36. <view>暂无提问<text v-if="userInfo.is_inner!==1">,快试试提问功能吧</text></view>
  37. </view>
  38. <view class="question-list" :class="{'last':finished}">
  39. <view class="question-item" v-for="item in questionList" :key="item.community_question_id">
  40. <view class="question-info">
  41. <view style="flex:1;" class="question-title">
  42. <text class="item-label">{{item.research_group_second_name}}</text>
  43. <!-- <text class="item-title"> -->{{ item.question_content }}<!-- </text> -->
  44. </view>
  45. <view class="item-answer">
  46. <view class="answer" @click="handleAudio(item)">
  47. <template v-if="!item.loading">
  48. <image class="music-img" :src="item.answer.isplay?playImgSrc:pauseImgSrc" mode="widthFix"/>
  49. <template v-if="item.answer.isplay || item.answer.ispause">
  50. <text>{{
  51. item.answer.audioTime - currentAudioMsg.audioCurrentTime>0?
  52. moment(item.answer.audioTime - currentAudioMsg.audioCurrentTime).format('mm:ss')
  53. :'00:00'}}
  54. </text>
  55. </template>
  56. <template v-else>
  57. <text>{{ moment(item.answer.audioTime).format('mm:ss') }}</text>
  58. </template>
  59. </template>
  60. <template v-else>
  61. <image class="load-img" src="../../static/loading.png" mode="aspectFill" />
  62. <text>{{ moment(item.answer.audioTime).format('mm:ss') }}</text>
  63. </template>
  64. </view>
  65. </view>
  66. </view>
  67. <text class="item-time">提问时间:{{ item.create_time }}</text>
  68. </view>
  69. </view>
  70. <view class="topage-btn" @click="toPage" v-if="isUserResearcher||userInfo.status&&userAuth">
  71. <image
  72. v-if="!isUserResearcher"
  73. src="../../static/question/askquestion.png"
  74. mode="scaleToFill"
  75. style="width:34rpx;height:34rpx;"
  76. />
  77. {{ isUserResearcher ? '待回答' : '我要提问' }} <text v-if="isUserResearcher" style="margin-left:5rpx;">{{'('+waitNum+')'}}</text>
  78. </view>
  79. </template>
  80. <!-- 没有权限 -->
  81. <template v-else>
  82. <view class="noAuth-wrap">
  83. <image class="img" :src="globalImgUrls.activityNoAuth" mode="widthFix"></image>
  84. <view class="auth-text">您暂无权限查看问答社区</view>
  85. <view class="auth-text" v-if="noAuthInfo.type==='contact'">若想查看可以联系对口销售</view>
  86. <view class="auth-text" v-else>若想查看可以申请开通</view>
  87. <view class="auth-text" v-if="noAuthInfo.type==='contact'">
  88. {{noAuthInfo.name||''}}:<text @click="handleCallPhone(noAuthInfo.mobile+'')">{{noAuthInfo.mobile||''}}</text>
  89. </view>
  90. <view class="apply" @click="handleGoApply" v-else>立即申请</view>
  91. </view>
  92. </template>
  93. <!-- 弹窗 -->
  94. <van-popup :show="pupData.show" round @close="pupData.show = false" closeable :close-on-click-overlay="false">
  95. <view class="global-pup">
  96. <view class="content">
  97. <rich-text style="flex:none;margin-bottom:20rpx;" :nodes="pupData.content"></rich-text>
  98. <view class="contact" v-if="pupData.type == 'contact'">
  99. {{pupData.saleName||''}}:<text @click="handleCallPhone(pupData.mobile)">{{pupData.mobile||''}}</text>
  100. </view>
  101. <view class="apply" v-else-if="pupData.type == 'apply'">
  102. <view @click="handleApply">立即申请</view>
  103. </view>
  104. </view>
  105. </view>
  106. </van-popup>
  107. </view>
  108. </template>
  109. <script>
  110. import mixin from "../../mixin/questionMixin";
  111. import {apiOptionGroupList,apiBarTotal} from '@/api/question'
  112. export default {
  113. mixins: [mixin],
  114. data() {
  115. return {
  116. questionList: [],
  117. isPopupShow: false,//弹出层是否展示
  118. optionList: [],
  119. activeNames: [],//collapse
  120. activeName:'',
  121. selectName:'',
  122. pauseImgSrc:'../../static/question/recordplay.png',
  123. playImgSrc:'../../static/question/recordpause.png',
  124. waitNum:0,
  125. /* userInfo:{
  126. is_inner:1,//0:外部客户;1内部员工
  127. status:'试用',
  128. is_suspend:1,
  129. is_researcher:0,
  130. //seal_name:'梁娜',
  131. //seal_mobile:123456,
  132. },//mock用户信息 */
  133. }
  134. },
  135. watch:{
  136. selectName(){
  137. this.getQuestionList(3)
  138. }
  139. },
  140. computed:{
  141. },
  142. onLoad() {
  143. /* this.getVistor()
  144. this.getOptionList()
  145. this.getQuestionList(3) */
  146. },
  147. onShow() {
  148. this.getWaitNum()
  149. this.getOptionList()
  150. this.getQuestionList(3)
  151. },
  152. onReachBottom() {
  153. if(this.finished) return
  154. this.page++
  155. this.getQuestionList(3)
  156. },
  157. onPullDownRefresh() {
  158. this.resetAudio()
  159. this.refreshPage()
  160. setTimeout(() => {
  161. uni.stopPullDownRefresh()
  162. }, 1500);
  163. },
  164. methods: {
  165. //获取研究员问答列表数量统计
  166. getWaitNum() {
  167. if(this.userInfo.is_inner!==1) return
  168. //如果是研究员,则请求问答列表数量统计
  169. apiBarTotal().then(res=>{
  170. if(res.code===200){
  171. this.waitNum = res.data.wait
  172. }
  173. })
  174. },
  175. //获取筛选列表
  176. async getOptionList(){
  177. const res = await apiOptionGroupList()
  178. if(res.code===200){
  179. this.optionList = res.data
  180. }
  181. },
  182. //点击筛选
  183. showPopup() {
  184. this.isPopupShow = true
  185. },
  186. //点击一级分类
  187. changeSelecOption(e) {
  188. this.activeName = e.detail
  189. },
  190. //点击二级分类
  191. handleOptionClick(item){
  192. //重复点击代表取消
  193. if(this.selectId===item.research_group_id){
  194. this.selectId=-1
  195. this.selectName=''
  196. }else{
  197. this.selectId = item.research_group_id
  198. this.selectName = item.research_group_name
  199. }
  200. this.page = 1
  201. this.isPopupShow = false
  202. },
  203. //点击'我要提问' or '待回答'
  204. toPage() {
  205. //const {is_inner} = this.userInfo
  206. if (this.isUserResearcher) {
  207. uni.navigateTo({ url: '/pages-question/answerList' })
  208. } else {
  209. uni.navigateTo({ url: '/pages-question/hasQuestion' })
  210. }
  211. },
  212. //转发分享
  213. onShareAppMessage(){
  214. return{
  215. title:'问答社区',
  216. path:'/pages/question/question'
  217. }
  218. },
  219. refreshPage() {
  220. this.page = 1
  221. this.selectId = -1
  222. this.questionList = []
  223. this.finished = false
  224. this.getQuestionList(3)
  225. },
  226. }
  227. }
  228. </script>
  229. <style lang="scss">
  230. .question-wrap {
  231. .van-popup--bottom{
  232. padding-bottom: 0 !important;
  233. }
  234. /deep/ .van-cell__title,
  235. .van-cell__value {
  236. flex: none !important;
  237. }
  238. .van-collapse-item{
  239. &.van-hairline--top{
  240. &::after{
  241. border: none !important;
  242. }
  243. }
  244. .van-cell{
  245. padding-left:0 !important;
  246. }
  247. }
  248. .van-collapse-item__content{
  249. padding:0;
  250. }
  251. }
  252. page {
  253. padding-bottom: env(safe-area-inset-bottom);
  254. }
  255. </style>
  256. <style lang="scss" scoped>
  257. .question-wrap {
  258. padding: 0 30rpx 80rpx 30rpx;
  259. background-color: #FFFFFF;
  260. .question-top {
  261. display: flex;
  262. flex: auto;
  263. align-items: center;
  264. height: 100rpx;
  265. background-color: white;
  266. position: sticky;
  267. top: 0;
  268. left: 0;
  269. margin:0 -30rpx;
  270. z-index: 99;
  271. &.noAuth{
  272. height:20rpx;
  273. }
  274. /* border-top: 1rpx solid rgba(0, 0, 0, 0.1); */
  275. .text{
  276. width:240rpx;
  277. height:70rpx;
  278. line-height: 70rpx;
  279. background-color: #F5F5F5;
  280. border-radius: 4rpx;
  281. color:#666666;
  282. text-align: center;
  283. &.active{
  284. color:#E3B377;
  285. background-color: #FDF8F2;
  286. }
  287. }
  288. .auth-box {
  289. flex: 1;
  290. }
  291. .menu-icon {
  292. width: 34rpx;
  293. height:34rpx;
  294. }
  295. .pop-wrap{
  296. height: 100%;
  297. padding: 50rpx 34rpx;
  298. .pop-option-list {
  299. .option-btn-wrap {
  300. display: flex;
  301. justify-content: space-between;
  302. flex-wrap: wrap;
  303. margin-bottom: 20rpx;
  304. .option-btn {
  305. min-width: 145rpx;
  306. height:76rpx;
  307. line-height: 76rpx;
  308. text-align: center;
  309. color: black;
  310. background-color: #F6F6F6;
  311. border-radius: 4rpx;
  312. margin-top: 10rpx;
  313. &.active{
  314. background-color: #FAEEDE;
  315. }
  316. &.full{
  317. width:100%;
  318. }
  319. }
  320. }
  321. }
  322. .pop-btn{
  323. height:80rpx;
  324. margin:0 -34rpx;
  325. text-align: center;
  326. line-height: 80rpx;
  327. color:#FFFFFF;
  328. background-color: #E6B77D;
  329. }
  330. }
  331. }
  332. .question-list {
  333. padding-bottom: 34rpx;
  334. &.last{
  335. padding-bottom: 260rpx;
  336. }
  337. }
  338. .topage-btn {
  339. position: fixed;
  340. left:50%;
  341. margin-left: -257rpx;
  342. bottom: 215rpx;
  343. width:514rpx;
  344. height: 80rpx;
  345. text-align: center;
  346. line-height: 80rpx;
  347. border-radius: 40rpx;
  348. background-color: #333333;
  349. box-shadow: 0px 4px 20px 1px rgba(160, 126, 84, 0.25);
  350. color: #E3B377;
  351. display: flex;
  352. justify-content: center;
  353. align-items: center;
  354. image{
  355. margin-right: 10rpx;
  356. margin-top: -2rpx;
  357. }
  358. }
  359. .global-pup{
  360. .content{
  361. padding:90rpx 34rpx;
  362. flex-direction: column;
  363. .contact{
  364. text{
  365. margin-left: 15rpx;
  366. color:#E6B77D;
  367. }
  368. }
  369. .apply{
  370. margin-top: 40rpx;
  371. width:390rpx;
  372. height:80rpx;
  373. background-color: #E6B77D;
  374. color: #FFFFFF;
  375. text-align: center;
  376. line-height: 80rpx;
  377. border-radius: 40rpx;
  378. }
  379. }
  380. }
  381. }
  382. </style>