/* * @Author: ch * @Date: 2022-06-12 14:06:01 * @LastEditors: ch * @LastEditTime: 2022-06-13 09:52:55 * @Description: file content */ import {axiosTk} from "../axiosTk"; import { ToAsyncAwait } from "../utils"; const BASE_URL = '/mall/im'; /** * 获取soket登录秘钥 */ export const ApiGetSoketTicket = () => ToAsyncAwait(axiosTk.get(`${BASE_URL}/ticket`, { params: { ticketType: 'CONNECT_TICKET' } }));