8 lines
204 B
JavaScript
8 lines
204 B
JavaScript
|
import {httpPost,httpGet} from "./http"
|
||
|
import {getEnvBaseUrl} from "./index"
|
||
|
const baseUrl=getEnvBaseUrl();
|
||
|
|
||
|
// 发送文本消息
|
||
|
const endMsg=async (params)=>{
|
||
|
return await httpGet(baseUrl+url,data)
|
||
|
}
|