12345678910111213141516171819202122232425262728293031 |
- export default defineNuxtPlugin((nuxtApp) => {
- //Pre环境
- nuxtApp.provide('webUrl', 'http://apipre1.bjzxtw.org.cn:29501')
- nuxtApp.provide('CwebUrl', 'http://nwpre.bjzxtw.org.cn')
- nuxtApp.provide('BwebUrl', 'http://adminpre.bjzxtw.org.cn')
- nuxtApp.provide('userUrl', 'http://localhost:3000')
- //正式环境
- // nuxtApp.provide('webUrl', 'https://flzxw.bjzxtw.org.cn')
- // nuxtApp.provide('CwebUrl', 'http://nw.bjzxtw.org.cn')
- // nuxtApp.provide('BwebUrl', 'https://admin.bjzxtw.org.cn')
- // nuxtApp.provide('userUrl', 'http://localhost:3000')
-
- //乡村网
- // nuxtApp.provide('webUrl', 'http://apipre1.bjzxtw.org.cn:29501')
- // nuxtApp.provide('CwebUrl', 'http://pre.china-village.com.cn')
- // nuxtApp.provide('BwebUrl', 'http://adminpre.bjzxtw.org.cn')
- // nuxtApp.provide('userUrl', 'http://localhost:3000')
- //农民网
- // nuxtApp.provide('webUrl', 'http://apipre1.bjzxtw.org.cn:29501')
- // nuxtApp.provide('CwebUrl', 'http://pre.nmwwt.org')
- // nuxtApp.provide('BwebUrl', 'http://adminpre.bjzxtw.org.cn')
- // nuxtApp.provide('userUrl', 'http://localhost:3000')
- //Dev环境
- // nuxtApp.provide('webUrl', 'http://apidev.bjzxtw.org.cn')
- // nuxtApp.provide('CwebUrl', 'http://nwdev.bjzxtw.org.cn')
- // nuxtApp.provide('BwebUrl', 'http://admindev.bjzxtw.org.cn')
- // nuxtApp.provide('userUrl', 'http://localhost:3000')
- })
|