小程序产品库完成

This commit is contained in:
aixianling
2022-02-14 17:25:54 +08:00
parent cb5f434edb
commit 8d2905428e
145 changed files with 22037 additions and 0 deletions

27
src/utils/config.js Normal file
View File

@@ -0,0 +1,27 @@
// 歙县郑村镇配置信息
const configs = {
// 生产配置信息
pro: {
areaId: '410184102000',
areaName: '辛店镇',
baseUrl: 'https://beijinweb.icunwei.com'
},
// 测试配置信息
test: {
areaId: '341021104000',
areaName: '郑村镇',
baseUrl: 'http://192.168.1.105:9000'
},
// 开发配置信息
dev: {
areaId: '341021104000',
areaName: '郑村镇',
baseUrl: 'http://192.168.1.87:9000'
}
}
// 当前选中配置
const currentConfig = configs[process.env.VUE_APP_CW_MODE]
export default {
...currentConfig
}