fix: 环境变量修改

feature/mall_product
TianYu 2023-06-09 09:54:35 +08:00
parent d67b6bd8a1
commit e8386788ce
5 changed files with 6 additions and 8 deletions

View File

@ -1,12 +1,12 @@
# 开发环境配置
ENV = 'development'
VUE_APP_ENV = 'dev'
# 页面标题
VUE_APP_TITLE = 创盈商户管理系统
# 芋道管理系统/开发环境
#VUE_APP_BASE_API = 'https://cmx.bskies.cc:8000/cyywl-api'
VUE_APP_BASE_API = 'http://api.cyywl.top'
VUE_APP_BASE_API = 'http://api.nnhwl.top'
# 路由懒加载
VUE_CLI_BABEL_TRANSPILE_MODULES = true

View File

@ -1,5 +1,5 @@
# 生产环境配置
ENV = 'production'
VUE_APP_ENV = 'production'
# 页面标题
VUE_APP_TITLE = 创盈商户管理系统

View File

@ -1,5 +1,5 @@
# 开发环境配置
ENV = 'test'
VUE_APP_ENV = 'test'
# 页面标题
VUE_APP_TITLE = 创盈商户管理系统
@ -7,9 +7,6 @@ VUE_APP_TITLE = 创盈商户管理系统
# 创盈管理系统/本地环境
VUE_APP_BASE_API = 'http://api.nnhwl.top'
# 根据服务器或域名修改
PUBLIC_PATH = 'http://admin.nnhwl.top'
# 路由懒加载
VUE_CLI_BABEL_TRANSPILE_MODULES = true

View File

@ -3,7 +3,7 @@ module.exports = {
/**
* 推广链接域名
*/
spreadDomain: process.env.ENV === 'production' ? 'http://h5.cyywl.top' : 'http://h5.nnhwl.top',
spreadDomain: process.env.VUE_APP_ENV === 'production' ? 'http://h5.cyywl.top' : 'http://h5.nnhwl.top',
/**
* 推广码生成访问H5链接地址

View File

@ -342,6 +342,7 @@ export default {
this.resetForm('form');
},
handleQRCode(row) {
console.log('config.spreadDomain', config.spreadDomain)
const url =`${config.spreadDomain}${config.spreadLink}?redirectUrl=${config.spreadDomain}&tenantId=${row.id}&isProperty=1`
QRCode.toCanvas(document.getElementById(`id-${row.id}`), url, {
scale: 2