import config, { local ,local2 } from '@/config/index.js' import Vue from 'vue' export function changeEnv () { const {local ,local2} = config if(Vue.prototype.$local == local) { Vue.prototype.$local = local2 uni.showToast({ icon: 'none', title: '切换到正式环境' }); } else { Vue.prototype.$local = local uni.showToast({ icon: 'none', title: '切换到测试环境' }); } }