This commit is contained in:
feng0207
2026-08-11 22:22:10 +08:00
commit 5e312c1266
6985 changed files with 1061169 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
const api = {
// 客服登录
login: {
url: 'kefu/login',
method: 'post',
loading: true,
noAuth: true
},
// 退出登录
userLogout: {
url: 'kefu/user/logout',
method: 'post'
},
// 发送CID
userClient: {
url: 'kefu/user/client',
method: 'put'
},
// 授权登录
serviceCode: {
url: 'kefu/service/code',
method: 'post'
}
}
export default api;