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