From 929729816b1e3730bbe23c8f234e5f53ec01910c Mon Sep 17 00:00:00 2001 From: LGX <365820713@qq.com> Date: Fri, 20 Sep 2024 14:51:47 +0800 Subject: [PATCH] 123 --- config/app.js | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 config/app.js diff --git a/config/app.js b/config/app.js new file mode 100644 index 0000000..1f1eb2a --- /dev/null +++ b/config/app.js @@ -0,0 +1,40 @@ + + +module.exports = { + + // 小程序配置 + // #ifdef MP || APP-PLUS + // 请求域名 格式: https://您的域名 + HTTP_REQUEST_URL: `https://bar.jiuhaosh.cn`, + // 长连接 格式:wss://您的域名 + VUE_APP_WS_URL: `wss://bar.jiuhaosh.cn/ws`, + // #endif + // H5配置 + // #ifdef H5 + //H5接口是浏览器地址,非单独部署不用修改 + HTTP_REQUEST_URL: window.location.protocol + "//" + window.location.host, + // 长连接地址,非单独部署不用修改 + VUE_APP_WS_URL: `ws://${window.location.host}/ws`, + // #endif + + + // 以下配置在不做二开的前提下,不需要做任何的修改 + HEADER: { + 'content-type': 'application/json', + //#ifdef H5 + 'Form-type': navigator.userAgent.toLowerCase().indexOf("micromessenger") !== -1 ? 'wechat' : 'h5', + //#endif + //#ifdef MP + 'Form-type': 'routine', + //#endif + //#ifdef APP-PLUS + 'Form-type': 'app', + //#endif + }, + // 回话密钥名称 请勿修改此配置 + TOKENNAME: 'Authori-zation', + // 缓存时间 0 永久 + EXPIRE: 0, + //分页最多显示条数 + LIMIT: 10 +} \ No newline at end of file