123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505 |
- <template>
- <view class="question-wrap">
- <template v-if="hasAuth">
- <view class="question-top" :class="{'noAuth':!(isUserResearcher||userInfo.status&&userAuth)}">
- <view @click="showPopup" v-if="isUserResearcher||userInfo.status&&userAuth"
- style="display:flex;align-items: center;margin-left:30rpx;">
- <image src="../../static/question/select.png" mode="widthFix" class="menu-icon"/>
- <text style="color:#E3B377;font-size:28rpx;">筛选</text>
- </view>
- <van-popup :show="isPopupShow" position="left" :close-on-click-overlay="true"
- @close="isPopupShow = false"
- custom-style="height: 100%;width:50%;"
- @touchmove.stop.prevent>
- <view class="pop-wrap">
- <view class="pop-option-list">
- <van-collapse :value="activeName" @change="changeSelecOption" accordion :border="false">
- <van-collapse-item :border="false" :title="item.research_group_name" :name="index" v-for="(item, index) in optionList"
- :key="index">
- <view class="option-btn-wrap">
- <view class="option-btn"
- v-for=" i in item.children" :key="i.research_group_id"
- @click="handleOptionClick(i)"
- :class="{'active':selectName===i.research_group_name,'full':i.research_group_name.length>4}"
- >
- {{ i.research_group_name }}
- </view>
- </view>
- </van-collapse-item>
- </van-collapse>
- </view>
- </view>
- </van-popup>
- </view>
- <view class="report-empty-box" v-if="questionList.length==0">
- <image :src="globalImgUrls.activityNoAuth" mode="widthFix" style="width:100%;"/>
- <view>暂无提问<text v-if="userInfo.is_inner!==1">,快试试提问功能吧</text></view>
- </view>
- <view class="question-list" :class="showAudioPop?showAudioBigPop?'list-bot3':'list-bot2':'list-bot1'">
- <view class="question-item" @click="handleGoDetail(item)" v-for="item in questionList" :key="item.community_question_id">
- <view class="question-info">
- <view style="flex:1;" class="question-title">
- <text class="item-label">{{item.variety_tag_name}}</text>
- <!-- <text class="item-title"> -->{{ item.question_content }}<!-- </text> -->
- </view>
- <view class="item-answer">
- <!-- 改为背景音频播放 -->
- <view class="answer" @click.stop="handlePlayAudioByBg(item)">
- <image class="music-img" :src="item.community_question_id==curVoiceId&&!curAudioPaused?playImgSrc:pauseImgSrc" mode="widthFix"/>
- <text>{{ moment(item.answer.audioTime).format('mm:ss') }}</text>
- </view>
-
- <!-- <view class="answer" @click.stop="handleAudio(item)">
- <template v-if="!item.loading">
- <image class="music-img" :src="item.answer.isplay?playImgSrc:pauseImgSrc" mode="widthFix"/>
- <template v-if="item.answer.isplay || item.answer.ispause">
- <text>{{
- item.answer.audioTime - currentAudioMsg.audioCurrentTime>0?
- moment(item.answer.audioTime - currentAudioMsg.audioCurrentTime).format('mm:ss')
- :'00:00'}}
- </text>
- </template>
- <template v-else>
- <text>{{ moment(item.answer.audioTime).format('mm:ss') }}</text>
- </template>
- </template>
- <template v-else>
- <image class="load-img" src="../../static/loading.png" mode="aspectFill" />
- <text>{{ moment(item.answer.audioTime).format('mm:ss') }}</text>
- </template>
- </view> -->
- </view>
- </view>
- <text class="item-time">提问时间:{{ item.create_time }}</text>
- </view>
- </view>
- <template v-if="isUserResearcher">
- <view class="btn-wrap" :class="showAudioPop?showAudioBigPop?'btn-bot3':'btn-bot2':'btn-bot1'">
- <view class="btn topage-button" @click="toPage('question')" v-if="userInfo.status&&userAuth">
- <image
- src="../../static/question/askquestion.png"
- mode="scaleToFill"
- style="width:34rpx;height:34rpx;"
- />
- <text>我要提问</text>
- </view>
- <view class="btn topage-button" @click="toPage('ask')" v-if="userInfo.status&&userAuth">
- <view>待回答<text v-if="isUserResearcher" style="margin-left:5rpx;">{{'('+distributeNum+')'}}</text></view>
- </view>
- </view>
- </template>
- <template v-else>
- <view class="topage-btn topage-button" @click="toPage('question')" v-if="userInfo.status&&userAuth">
- <image
- src="../../static/question/askquestion.png"
- mode="scaleToFill"
- style="width:34rpx;height:34rpx;"
- />
- <text>我要提问</text>
- </view>
- </template>
- <!-- <view class="topage-btn" @click="toPage" v-if="isUserResearcher||userInfo.status&&userAuth">
- <image
- v-if="!isUserResearcher"
- src="../../static/question/askquestion.png"
- mode="scaleToFill"
- style="width:34rpx;height:34rpx;"
- />
- {{ isUserResearcher ? '待回答' : '我要提问' }} <text v-if="isUserResearcher" style="margin-left:5rpx;">{{'('+distributeNum+')'}}</text>
- </view> -->
- </template>
- <!-- 没有权限 -->
- <template v-else>
- <view class="noAuth-wrap">
- <image class="img" :src="globalImgUrls.activityNoAuth" mode="widthFix"></image>
- <view class="auth-text">您暂无权限查看问答社区</view>
- <view class="auth-text" v-if="noAuthInfo.type==='contact'">若想查看可以联系对口销售</view>
- <view class="auth-text" v-else>若想查看可以申请开通</view>
- <view class="auth-text" v-if="noAuthInfo.type==='contact'">
- {{noAuthInfo.name||''}}:<text @click="handleCallPhone(noAuthInfo.mobile+'')">{{noAuthInfo.mobile||''}}</text>
- </view>
- <view class="apply" @click="handleGoApply" v-else>立即申请</view>
- </view>
- </template>
- <!-- 弹窗 -->
- <van-popup :show="pupData.show" round @close="pupData.show = false" closeable :close-on-click-overlay="false">
- <view class="global-pup">
- <view class="content">
- <rich-text style="flex:none;margin-bottom:20rpx;" :nodes="pupData.content"></rich-text>
- <view class="contact" v-if="pupData.type == 'contact'">
- {{pupData.saleName||''}}:<text @click="handleCallPhone(pupData.mobile)">{{pupData.mobile||''}}</text>
- </view>
- <view class="apply" v-else-if="pupData.type == 'apply'">
- <view @click="handleApply">立即申请</view>
- </view>
- </view>
- </view>
- </van-popup>
- <!-- 音频悬浮 -->
- <view v-if="showPage">
- <audioBox v-if="showAudioPop"/>
- </view>
- </view>
- </template>
- <script>
- import mixin from "../../mixin/questionMixin";
- import {apiOptionGroupList,apiBarTotal,apiCountAudioClick} from '@/api/question'
- import {apiGetTagTree} from '@/api/common'
- import audioBox from '@/components/audioBox/audioBox.vue'
- export default {
- mixins: [mixin],
- components:{
- audioBox
- },
- data() {
- return {
- questionList: [],
- isPopupShow: false,//弹出层是否展示
- optionList: [],
- activeNames: [],//collapse
- activeName:'',
- selectName:'',
- pauseImgSrc:'../../static/question/recordplay.png',
- playImgSrc:'../../static/question/recordpause.png',
- distributeNum:0,
- /* userInfo:{
- is_inner:1,//0:外部客户;1内部员工
- status:'试用',
- is_suspend:0,
- is_researcher:0,
- //seal_name:'梁娜',
- //seal_mobile:123456,
- },//mock用户信息 */
- showPage:false
- }
- },
- watch:{
- selectName(){
- this.getQuestionList(3)
- }
- },
- computed:{
- showAudioPop(){//是否显示音频弹窗
- return this.$store.state.audio.show
- },
- showAudioBigPop(){
- return this.$store.state.audio.showBig
- },
- curVoiceId(){//当前正在播放的音频id
- return this.$store.state.audio.questionId
- },
- curAudioPaused(){//当前音频是否暂停状态
- return this.$store.state.audio.paused
- },
- },
- onLoad() {
- /* this.getVistor()
- this.getOptionList()
- this.getQuestionList(3) */
- },
- onShow() {
- this.getdistributeNum()
- this.getOptionList()
- this.getQuestionList(3)
- this.showPage=true
- },
- onHide(){
- this.showPage=false
- },
- onReachBottom() {
- if(this.finished) return
- this.page++
- this.getQuestionList(3)
- },
- onPullDownRefresh() {
- this.resetAudio()
- this.refreshPage()
- setTimeout(() => {
- uni.stopPullDownRefresh()
- }, 1500);
- },
- //转发分享
- onShareAppMessage(){
- return{
- title:'问答社区',
- path:'/pages/question/question'
- }
- },
- methods: {
- //获取研究员问答列表数量统计
- getdistributeNum() {
- if(this.userInfo.is_inner!==1) return
- //如果是研究员,则请求问答列表数量统计
- apiBarTotal().then(res=>{
- if(res.code===200){
- this.distributeNum = res.data.distribute
- }
- })
- },
- //获取筛选列表
- async getOptionList(){
- /* const res = await apiOptionGroupList()
- if(res.code===200){
- this.optionList = res.data
- } */
- const res = await apiGetTagTree()
- if(res.code===200){
- const result = res.data
- this.optionList = result.map((item)=>{
- let obj = {}
- obj.research_group_name = item.classify_name
- obj.children = item.tags.map((i)=>{
- return {research_group_id:i.tag_id,research_group_name:i.tag_name}
- })
- return obj
- })
- }
- },
- //点击筛选
- showPopup() {
- this.isPopupShow = true
- },
- //点击一级分类
- changeSelecOption(e) {
- this.activeName = e.detail
- },
- //点击二级分类
- handleOptionClick(item){
- //重复点击代表取消
- if(this.selectId===item.research_group_id){
- this.selectId=-1
- this.selectName=''
- }else{
- this.selectId = item.research_group_id
- this.selectName = item.research_group_name
- }
- this.page = 1
- this.isPopupShow = false
- },
- //点击'我要提问' or '待回答'
- toPage(type) {
- if(type==='question'){
- uni.navigateTo({ url: '/pages-question/hasQuestion' })
- }else{
- uni.navigateTo({ url: '/pages-question/answerList' })
- }
- },
- refreshPage() {
- this.page = 1
- this.selectId = -1
- this.questionList = []
- this.finished = false
- this.getQuestionList(3)
- },
- //跳转详情
- handleGoDetail(item){
- uni.navigateTo({ url: `/pages-question/answerDetail?id=${item.community_question_id}` })
- }
- }
- }
- </script>
- <style lang="scss">
- .question-wrap {
- .van-popup--bottom{
- padding-bottom: 0 !important;
- }
- /deep/ .van-cell__title,
- .van-cell__value {
- flex: none !important;
- }
- .van-collapse-item{
- &.van-hairline--top{
- &::after{
- border: none !important;
- }
- }
- .van-cell{
- padding-left:0 !important;
- }
- }
- .van-collapse-item__content{
- padding:0;
- }
- }
- page {
- padding-bottom: env(safe-area-inset-bottom);
- }
- </style>
- <style lang="scss" scoped>
- .question-wrap {
- padding: 0 30rpx 80rpx 30rpx;
- background-color: #FFFFFF;
- .question-top {
- display: flex;
- flex: auto;
- align-items: center;
- height: 100rpx;
- background-color: white;
- position: sticky;
- top: 0;
- left: 0;
- margin:0 -30rpx;
- z-index: 99;
- &.noAuth{
- height:20rpx;
- }
- /* border-top: 1rpx solid rgba(0, 0, 0, 0.1); */
- .text{
- width:240rpx;
- height:70rpx;
- line-height: 70rpx;
- background-color: #F5F5F5;
- border-radius: 4rpx;
- color:#666666;
- text-align: center;
- &.active{
- color:#E3B377;
- background-color: #FDF8F2;
- }
- }
- .auth-box {
- flex: 1;
- }
- .menu-icon {
- width: 34rpx;
- height:34rpx;
- }
- .pop-wrap{
- height: 100%;
- padding: 50rpx 34rpx;
- .pop-option-list {
- .option-btn-wrap {
- display: flex;
- justify-content: space-between;
- flex-wrap: wrap;
- margin-bottom: 20rpx;
- .option-btn {
- min-width: 145rpx;
- height:76rpx;
- line-height: 76rpx;
- text-align: center;
- color: black;
- background-color: #F6F6F6;
- border-radius: 4rpx;
- margin-top: 10rpx;
- &.active{
- background-color: #FAEEDE;
- }
- &.full{
- width:100%;
- }
- }
- }
- }
- .pop-btn{
- height:80rpx;
- margin:0 -34rpx;
- text-align: center;
- line-height: 80rpx;
- color:#FFFFFF;
- background-color: #E6B77D;
- }
- }
-
- }
- .question-list {
- padding-bottom: 34rpx;
- &.last{
- padding-bottom: 260rpx;
- }
- }
- .list-bot1{
- padding-bottom: 200rpx;
- }
- .list-bot2{
- padding-bottom: 340rpx;
- }
- .list-bot3{
- padding-bottom: 440rpx;
- }
- .topage-btn {
- position: fixed;
- left:50%;
- margin-left: -257rpx;
- bottom: 215rpx;
- width:514rpx;
- }
- .topage-button{
- height: 80rpx;
- text-align: center;
- line-height: 80rpx;
- border-radius: 40rpx;
- background-color: #333333;
- box-shadow: 0px 4px 20px 1px rgba(160, 126, 84, 0.25);
- color: #E3B377;
- display: flex;
- justify-content: center;
- align-items: center;
- image{
- margin-right: 10rpx;
- margin-top: -2rpx;
- }
- }
- .btn-wrap{
- position: fixed;
- width:100%;
- margin-left: -30rpx;
- display: flex;
- justify-content: center;
- bottom: calc(120rpx + constant(safe-area-inset-bottom));
- bottom: calc(120rpx + env(safe-area-inset-bottom));
- .btn{
- width:300rpx;
- height:80rpx;
- &:first-child{
- margin-right: 30rpx;
- }
- }
- }
- .btn-bot1{
- bottom: calc(120rpx + constant(safe-area-inset-bottom));
- bottom: calc(120rpx + env(safe-area-inset-bottom));
- }
- .btn-bot2{
- bottom: calc(260rpx + constant(safe-area-inset-bottom));
- bottom: calc(260rpx + env(safe-area-inset-bottom));
- }
- .btn-bot3{
- bottom: calc(355rpx + constant(safe-area-inset-bottom));
- bottom: calc(355rpx + env(safe-area-inset-bottom));
- }
- .global-pup{
- .content{
- padding:90rpx 34rpx;
- flex-direction: column;
- .contact{
- text{
- margin-left: 15rpx;
- color:#E6B77D;
- }
- }
- .apply{
- margin-top: 40rpx;
- width:390rpx;
- height:80rpx;
- background-color: #E6B77D;
- color: #FFFFFF;
- text-align: center;
- line-height: 80rpx;
- border-radius: 40rpx;
- }
- }
- }
- }
- </style>
|