10 Star 43 Fork 23

乔永刚/迈特海外短剧短剧出海多语言版短剧APP H5

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
env.js 1.15 KB
一键复制 编辑 原始数据 按行查看 历史
qiaoyonggang 提交于 2023-12-21 23:27 . init
/**
* @Description:
* @Author: FangYaoTang
* @Date: 2023-08-16 09:12:13
* @LastEditor: FangYaoTang
* @LastEditTime: 2023-09-12 11:27:35
* @Copyright: by 南阳迈特网络科技有限公司 禁止任何形式(包含二次开发)转售系统源码,违者必究。
*/
// #ifdef MP-WEIXIN
let BASE_URL = '', SIGN = ''
// BASE_URL = 'https://www.lnshuanghe.top/'
// SIGN = ''
const extConfig = wx.getExtConfigSync ? wx.getExtConfigSync() : {}
if(Object.keys(extConfig).length === 0) {
uni.showModal({
title: '未配置ext信息,请联系管理员'
})
} else {
if(!extConfig.domain) {
uni.showModal({
title: '域名信息有误,请联系管理员'
})
}
BASE_URL = 'https://' + extConfig.domain
SIGN = extConfig.sign
}
// #endif
// #ifdef H5
let BASE_URL = '', SIGN = ''
if (process.env.NODE_ENV === 'development') {
BASE_URL = 'https://duanju.nymaite.cn'
SIGN = ''
} else {
BASE_URL = window.location.origin
SIGN = window.location.search.replace(/\?/g, "")
}
// #endif
// #ifdef APP-PLUS
let BASE_URL = 'https://vip.doupian.vip',
SIGN = ''
// #endif
export {
BASE_URL,
SIGN
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/qiao-yonggang/haiwaiduanju.git
git@gitee.com:qiao-yonggang/haiwaiduanju.git
qiao-yonggang
haiwaiduanju
迈特海外短剧短剧出海多语言版短剧APP H5
master

搜索帮助