Files
apple 8e17762510 feat(uniapp_v2): 二开功能迁移与小程序主包优化
- 从 uniapp 迁移 HJF 页面、API、组件及用户/订单相关改动
- queue、assets 使用独立分包以降低主包体积
- 修复首页单根节点与支付结果页 v-if 链
- 关闭 HjfDemoPanel 全局注册;uniNoticeBar 注释 $getAppWebview 避免 __webviewId__ 报错
- 配置域名与 manifest 应用名称;cache/store 防御性处理

Made-with: Cursor
2026-03-26 12:16:01 +08:00

124 lines
2.8 KiB
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
// +----------------------------------------------------------------------
// | CRMEB [ CRMEB赋能开发者助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2021 https://www.crmeb.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CRMEB并不是自由软件未经许可不能去掉CRMEB相关版权
// +----------------------------------------------------------------------
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
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);
}