You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
duomendian/api/kefu.js

115 lines
2.2 KiB

import request from "@/utils/request.js";
/**
* 客服登录
* @param data object 用户账号密码
*/
export function kefuLogin(data) {
return request.post("login", data, { noAuth : true,kefu:true });
}
/**
* 获取左侧客服聊天用户列表
* @constructor
*/
export function record (data) {
return request.get("user/record", data, { noAuth : true,kefu:true });
}
/**
* 客服话术
* @constructor
*/
export function speeChcraft (data) {
return request.get("service/speechcraft", data, { noAuth : true,kefu:true });
}
/**
* 客服转接列表
* @constructor
*/
export function transferList (data) {
return request.get("service/transfer_list", data, { noAuth : true,kefu:true });
}
/**
* 商品购买记录
* @constructor
*/
export function productCart (id,data) {
return request.get("product/cart/"+id,data, { noAuth : true,kefu:true });
}
/**
* 热销商品
* @constructor
*/
export function productHot (id,data) {
return request.get("product/hot/"+id,data, { noAuth : true,kefu:true });
}
/**
* 商品足记
* @constructor
*/
export function productVisit (id,data) {
return request.get("product/visit/"+id,data, { noAuth : true,kefu:true });
}
/**
* 客服用户聊天列表
* @constructor
*/
export function serviceList (data) {
return request.get("service/list",data, { noAuth : true,kefu:true });
}
/**
* 客服转接
* @constructor
*/
export function serviceTransfer (data) {
return request.post("service/transfer",data, { noAuth : true,kefu:true });
}
/**
* 客服详细信息
* @constructor
*/
export function serviceInfo (data) {
return request.get("service/info",data, { noAuth : true,kefu:true });
}
/**
* 客服反馈头部信息
* @constructor
*/
export function serviceFeedBack () {
return request.get("user/service/feedback");
}
/**
* 客服反馈
* @constructor
*/
export function feedBackPost (data) {
return request.post("user/service/feedback", data);
}
/**
* 检测登录code
* @constructor
*/
export function codeStauts (data) {
return request.get("user/code",data);
}
/**
* 客服扫码登录code
* @constructor
*/
export function kefuScanLogin (data) {
return request.post("user/code",data);
}