| 
 | |
| import Vue from 'vue' | |
| import api from '@/api/api.js' | |
| import fetch from '@/api/fetch.js' | |
| import utils from './utils/utils.js' | |
| 
 | |
| import uvUI from '@/uni_modules/uv-ui-tools' | |
| Vue.use(uvUI); | |
| 
 | |
| // 当前环境 | |
| const type = 'prod' | |
| 
 | |
| 
 | |
| // 环境配置 | |
| const config = { | |
| 	dev : { | |
| 		baseUrl : 'http://augcl.natapp1.cc/studytour-admin/studytour', | |
| 	}, | |
| 	prod : { | |
| 		baseUrl : 'https://www.hongyujiaoyu.com/studytour-admin/studytour', | |
| 	} | |
| } | |
| 
 | |
| 
 | |
| // 默认配置 | |
| const defaultConfig = { | |
| 	mapKey : 'XMBBZ-BCPCV-SXPPQ-5Y7MY-PHZXK-YFFVU', | |
| 	aliOss: { | |
| 		url: 'https://image.hhlm1688.com/', | |
| 		config: { | |
| 			//桶的地址 | |
| 			region: 'oss-cn-guangzhou', | |
| 			//id | |
| 			accessKeyId: 'LTAI5tQSs47izVy8DLVdwUU9', | |
| 			//密钥 | |
| 			accessKeySecret: 'qHI7C3PaXYZySr84HTToviC71AYlFq', | |
| 			//桶的名字 | |
| 			bucket: 'hanhaiimage', | |
| 			endpoint: 'oss-cn-shenzhen.aliyuncs.com', | |
| 		} | |
| 	}, | |
| 	//商户号 | |
| 	mchId : '1722176565', | |
| 	appId : 'wxee64675d48680dd4', | |
| } | |
| 
 | |
| 
 | |
| uni.$uv.setConfig({ | |
| 	// 修改$uv.config对象的属性 | |
| 	config: { | |
| 		// 修改默认单位为rpx,相当于执行 uni.$uv.config.unit = 'rpx' | |
| 		unit: 'rpx' | |
| 	}, | |
| }) | |
| 
 | |
| Vue.prototype.$config = utils.deepMergeObject(defaultConfig, config[type]) | |
| 
 | |
| Vue.prototype.$api = api | |
| Vue.prototype.$fetch = fetch | |
| 
 | |
| export default Vue.prototype.$config
 |