转移客服前端界面

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

@ -220,6 +220,18 @@
width="30%" width="30%"
top="0" 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"> <span slot="footer" class="dialog-footer">
<el-button @click="transKefuDialog = false">取 消</el-button> <el-button @click="transKefuDialog = false">取 消</el-button>
<el-button type="primary" @click="transKefuBtn">确 定</el-button> <el-button type="primary" @click="transKefuBtn">确 定</el-button>

@ -36,6 +36,7 @@ var app=new Vue({
visitorPageSize:10, visitorPageSize:10,
face:[], face:[],
transKefuDialog:false, transKefuDialog:false,
otherKefus:[],
}, },
methods: { methods: {
//跳转 //跳转
@ -597,7 +598,9 @@ var app=new Vue({
//转移客服 //转移客服
transKefu(){ transKefu(){
this.transKefuDialog=true; this.transKefuDialog=true;
var _this=this;
this.sendAjax("/other_kefulist","get",{},function(result){ this.sendAjax("/other_kefulist","get",{},function(result){
_this.otherKefus=result;
}); });
}, },
transKefuBtn(){}, transKefuBtn(){},

Loading…
Cancel
Save