micro_mall_xcx/services/usercenter/getCustomerServiceList.js
2023-10-24 23:41:14 +08:00

19 lines
392 B
JavaScript

import {
request
} from '../_utils/request';
/** 获取客服列表 */
export function getCustomerServiceList() {
return new Promise((resolve, reject) => {
request({
url: `CustomerServiceApi/getCustomerServiceList`,
method: 'GET',
success: function (res) {
resolve(res);
},
fail: function (error) {
reject(error);
}
});
});
}