|
@@ -94,10 +94,11 @@ export default {
|
|
|
// let urlCode = `http://192.168.0.151:8988/TFShop_Uni_H5/#/another-tf/another-user/exchange/index?shopId=${shopId}&shopName=${this.codeInfo.shopName}`
|
|
|
|
|
|
let urlCode = ""
|
|
|
- if(process.ENV == "staging"){
|
|
|
- urlCode = `https://test.tuanfengkeji.cn/TFShop_Uni_H5/#/another-tf/another-user/exchange/index?shopId=${shopId}&shopName=${this.codeInfo.shopName}`
|
|
|
- }else{
|
|
|
+ console.log(process.env.NODE_ENV);
|
|
|
+ if(process.env.NODE_ENV == "production"){
|
|
|
urlCode = `https://tuanfengkeji.cn/TFShop_Uni_H5/#/another-tf/another-user/exchange/index?shopId=${shopId}&shopName=${this.codeInfo.shopName}`
|
|
|
+ }else{
|
|
|
+ urlCode = `https://test.tuanfengkeji.cn/TFShop_Uni_H5/#/another-tf/another-user/exchange/index?shopId=${shopId}&shopName=${this.codeInfo.shopName}`
|
|
|
}
|
|
|
// let urlCode = `https://test.tuanfengkeji.cn/TFShop_Uni_H5/#/another-tf/another-user/exchange/index?shopId=${shopId}&shopName=${this.codeInfo.shopName}`
|
|
|
// 根据 qcode 生成二维码链接
|