转移客服前端界面

pull/23/head
陶士涵 4 years ago
parent 2b53d9a8b1
commit db6b5f0a5c

@ -220,6 +220,18 @@
width="30%"
top="0"
>
<el-table
:data="otherKefus"
style="width: 100%">
<el-table-column
prop="name"
label="客服">
</el-table-column>
<el-table-column
prop="status"
label="操作">
</el-table-column>
</el-table>
<span slot="footer" class="dialog-footer">
<el-button @click="transKefuDialog = false">取 消</el-button>
<el-button type="primary" @click="transKefuBtn">确 定</el-button>

@ -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(){},

Loading…
Cancel
Save