当前位置:   article > 正文

vue.js客服系统实时聊天项目开发(九)热门常问关键词展示

vue开发客服问答

在聊天输入框的上方,一般会展示一些常问的关键词,访客点击以后直接回复设置的回答

展示效果如下图所示:

直接通过接口获取数据,循环展示数据就可以了

  1. //获取常问关键词
  2. getTopRequest(){
  3. var _this=this;
  4. let entId=tools.getQuery("ent_id");
  5. this.visitor.ent_id=entId;
  6. this.$axios.get(this.ApiHost+'/other/getTopQuestion?ent_id='+entId).then(function (response) {
  7. let result=response.data.result;
  8. if(result.hotQuestion){
  9. let hotQuestion=result.hotQuestion.replace(",",",").split(",");
  10. _this.question.hotQuestion=hotQuestion;
  11. }
  12. console.log(hotQuestion);
  13. }).catch(function (error) {
  14. });
  15. },

模板中循环数组

  1. <div class="hotQuestions" v-if="question.hotQuestion.length!=0">
  2. <a class="slideInRightItem" v-for="row in question.hotQuestion">{{row}}</a>
  3. </div>

唯一在线客服系统

https://gofly.v1kf.com

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/359186
推荐阅读
相关标签
  

闽ICP备14008679号