網易七魚智能客服系統使用心得


         最近工作中,需要用到一套在線客服系統,經過比較,發現網易七魚智能客服系統還是挺不錯的,現將使用心得整理如下:

         使用步驟:

         一、打開官網

網易七魚智能客服   http://qiyukf.com/

 

         二、注冊賬號

 

          三、登錄后台

   

          四、常見問題

 

 

 

         五、demo展示

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>網站接入客服</title>
    <style>

        body {
            height: 3000px;
        }

        /*隱藏原有的圖標*/
        #YSF-BTN-HOLDER {
            display: none;
        }

        .m-confirm {
            width: 67px;
            position: fixed;
            top: 50%;
            right: 0px;
            background-color: #fff;
            font-size: 12px;
            color: #fff;
            margin-top: -122px;
            z-index: 9999;
        }

        .m-confirm p {
            margin: 0;
        }

        .m-confirm .online:hover, .tel:hover {
            background: #45a4ec;
        }

        .online {
            height: 99px;
            border-bottom: 1px solid #8dc7ff;
            cursor: pointer;
            background: #2594e9;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .i-sprite-1 {
            background: url("./img/online.png") no-repeat center top;
            width: 25px;
            height: 25px;
            margin: 28px 0 8px 0;
        }

        .tel {
            height: 99px;
            border-bottom: 1px solid #8dc7ff;
            position: relative;
            cursor: pointer;
            background-color: #2594e9;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .i-sprite-2 {
            background: url("./img/telephone2.png") no-repeat center top;
            width: 25px;
            height: 25px;
            margin: 28px 0 8px 0;
        }

        .tel .content {
            width: 138px;
            height: 43px;
            background: url("./img/telephone.png") no-repeat;
            background-size: 138px 43px;
            position: absolute;
            opacity: 0;
            top: 27px;
            left: -147px;
            z-index: 9999;
        }

        a:hover .content {
            opacity: 1;
        }

        .tel .content {
            color: #333333;
            font-size: 16px;
            display: flex;
            align-items: center;
            padding-left: 10px;
        }

        .top {
            height: 35px;
            background-color: #dbdbdb;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding-top: 8px;
            font-weight: 900;
            opacity: 0;
            transition: opacity 1000ms;

        }

        .top:hover {
            background: #e6e6e6;
        }

        .i-sprite-3 {
            background: url("./img/top.png") no-repeat center top;
            width: 67px;
            height: 6px;
        }

        .top p {
            color: #666;
            font-weight: bolder;
            height: 20px;
            margin-top: 5px;
        }

    </style>
</head>
<body>

<h1>客服DEMO</h1>

<div class="m-confirm">
    <a class="online" onclick="ysf.open();">
        <i class=" i-sprite-1"></i>
        <p>在線咨詢</p>
    </a>
    <a class="tel">
        <i class="i-sprite-2"></i>
        <p>電話咨詢</p>
        <div class="content">
            <p>400-888-1234</p>
        </div>
    </a>
    <a class="top" id="top" onclick="pageScroll()">
        <i class="i-sprite i-sprite-3"></i>
        <p>TOP</p>
    </a>
</div>

<!--客服聊天接入代碼-->
<script src="https://qiyukf.com/script/9c6f0b24f2440c442569e7e5195f7ccf.js" defer async></script>
<script type="text/javascript">

    //返回頂部
    var oTop = document.getElementById("top");
    var scrolldelay;
    function pageScroll() {
        window.scrollBy(0, -100);
        scrolldelay = setTimeout('pageScroll()', 15);
    }
    window.onscroll = function () {
        var scrolltop = document.documentElement.scrollTop || document.body.scrollTop;
        if (scrolltop > 300) {
            oTop.style.opacity = 1;
        } else {
            oTop.style.opacity = 0;
        }
        if (scrolltop == 0) clearTimeout(scrolldelay);
    }

</script>
</body>
</html>

 

源碼地址  http://pan.baidu.com/s/1gfknJqV  密碼: h8c7

           六、demo截圖

                與機器人聊天

                用戶與人工客服聊天 

 

                    人工客服操作界面

 

 

 

 

 

 

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM