Files
integral-shop/single_uniapp22miao/libs/global.js
panchengyong 786bf78282 更新项目配置和添加小程序模块
- 修改 ArticleController.java
- 更新 application.yml 配置
- 更新 frontend/.env.production 环境配置
- 添加 single_uniapp22miao 小程序模块
- 添加 logs 目录
2026-03-13 13:27:13 +08:00

10 lines
216 B
JavaScript

/**
* 全局使用的变量值
*/
import Cache from '@/utils/cache'
import Vue from 'vue'
const global = {
//图片域名
urlDomain: Cache.get('imgHost')?Cache.get('imgHost'):''
}
Vue.prototype.$GLOBAL = global