知识付费微信小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

47 lines
916 B

import Vue from 'vue'
import api from '@/api/api.js'
import utils from './utils/utils.js'
// 当前环境
const type = 'prod'
// 环境配置
const config = {
dev : {
// baseUrl : 'http://noticeadmin.augcl.com/a-notice-api',
baseUrl : 'http://h5.xzaiyp.top/pay-admin',
},
prod : {
baseUrl : 'https://pay-admin.xzaiyp.top/pay-admin',
}
}
// 默认配置
const defaultConfig = {
mapKey : 'XMBBZ-BCPCV-SXPPQ-5Y7MY-PHZXK-YFFVU',
aliOss : {
url : 'https://tennis-oss.xzaiyp.top/',
config : {
//桶的地址
region: 'oss-cn-guangzhou',
//id
accessKeyId:'LTAI5tNycA46YTwm383dRvMV',
//密钥
accessKeySecret:'tAdbYQCmdur6jbZ8hjvgB7T1Z52mIG',
//桶的名字
bucket: 'zhuoqiu-image',
endpoint:'oss-cn-guangzhou.aliyuncs.com',
}
},
}
Vue.prototype.$config = utils.deepMergeObject(defaultConfig, config[type])
Vue.prototype.$api = api
export default Vue.prototype.$config