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.
19 lines
427 B
19 lines
427 B
10 months ago
|
define([
|
||
|
'scripts/request',
|
||
|
], function (request) {
|
||
|
return {
|
||
|
get_kefu_token() {
|
||
|
return request({
|
||
|
url: "/kefu/get_kefu_token",
|
||
|
method: "get"
|
||
|
});
|
||
|
},
|
||
|
get_support_info(params) {
|
||
|
return request({
|
||
|
url: "/kefu/get_support_info",
|
||
|
method: "get",
|
||
|
params
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
});
|