1 Star 0 Fork 26

fotuo1988 / 2023热门短剧微短剧可运营版本

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
env.js 1.09 KB
一键复制 编辑 原始数据 按行查看 历史
qiaoyonggang 提交于 2023-11-01 21:28 . v1.0.5
/**
* @Description:
* @Author: FangYaoTang
* @Date: 2023-08-16 09:12:13
* @LastEditor: FangYaoTang
* @LastEditTime: 2023-09-01 08:28:00
* @Copyright: by 南阳迈特网络科技有限公司 禁止任何形式(包含二次开发)转售系统源码,违者必究。
*/
// #ifdef MP-WEIXIN
let BASE_URL = '', 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://duanju.nymaite.cn',
SIGN = ''
// #endif
export {
BASE_URL,
SIGN
}
PHP
1
https://gitee.com/alan921/uniapp-fastadmin-duanju.git
git@gitee.com:alan921/uniapp-fastadmin-duanju.git
alan921
uniapp-fastadmin-duanju
2023热门短剧微短剧可运营版本
master

搜索帮助