From db6b5f0a5c83ea138ba2cdde8f9f5b1692215db6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=B6=E5=A3=AB=E6=B6=B5?= <630892807@qq.com> Date: Sun, 29 Nov 2020 22:09:44 +0800 Subject: [PATCH] =?UTF-8?q?=E8=BD=AC=E7=A7=BB=E5=AE=A2=E6=9C=8D=E5=89=8D?= =?UTF-8?q?=E7=AB=AF=E7=95=8C=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- static/html/chat_main.html | 12 ++++++++++++ static/js/chat-main.js | 3 +++ 2 files changed, 15 insertions(+) diff --git a/static/html/chat_main.html b/static/html/chat_main.html index 2f977bc..cad783c 100644 --- a/static/html/chat_main.html +++ b/static/html/chat_main.html @@ -220,6 +220,18 @@ width="30%" top="0" > + + + + + + 取 消 确 定 diff --git a/static/js/chat-main.js b/static/js/chat-main.js index dc1858a..06ec835 100644 --- a/static/js/chat-main.js +++ b/static/js/chat-main.js @@ -36,6 +36,7 @@ var app=new Vue({ visitorPageSize:10, face:[], transKefuDialog:false, + otherKefus:[], }, methods: { //跳转 @@ -597,7 +598,9 @@ var app=new Vue({ //转移客服 transKefu(){ this.transKefuDialog=true; + var _this=this; this.sendAjax("/other_kefulist","get",{},function(result){ + _this.otherKefus=result; }); }, transKefuBtn(){},