12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- import Vue from 'vue'
- import store from './store'
- import App from './App'
- import './services/index.js'
- import * as Api from '@/common/config/caimeiApi.js'
- import * as Regs from '@/common/config/common.js'
- import { umtrackWxKey } from '@/utils/config.js'
- // 友盟依赖包
- import uma from 'umtrack-wx'
- // 公共组件
- import { msg, modal,prePage } from'./utils/util'
- import cuCustom from './components/cm-custom/cu-custom.vue'
- import auCustom from './components/cm-custom/au-custom.vue'
- import cmCustom from './components/cm-custom/cm-custom.vue'
- import scrollTop from '@/components/cm-module/scrollTop/scrollTop.vue'
- import CityPicker from '@/components/mpvue-citypicker/mpvueCityPicker.vue'//全局注册地址组件
- Vue.component('cu-custom',cuCustom)
- Vue.component('au-custom',auCustom)
- Vue.component('cm-custom',cmCustom)
- Vue.component('scroll-top',scrollTop)
- Vue.component('city-Picker',CityPicker)
- Vue.prototype.$getStorage = function(key){
- var userParam = uni.getStorageSync(key)
- if (userParam != null && userParam != '' && userParam!= undefined) {
- return userParam
- }else{
- return null
- }
- }
- /**
- * 友盟+小程序统计
- */
- if(process.env.NODE_ENV != 'development'){
- // #ifdef MP-WEIXIN
- uma.init({
- appKey: umtrackWxKey, //由友盟分配的APP_KEY
- // 使用Openid进行统计,此项为false时将使用友盟+uuid进行用户统计。
- // 使用Openid来统计微信小程序的用户,会使统计的指标更为准确,对系统准确性要求高的应用推荐使用Openid。
- useOpenid: true,
- // 使用openid进行统计时,是否授权友盟自动获取Openid,
- // 如若需要,请到友盟后台"设置管理-应用信息"(https://mp.umeng.com/setting/appset)中设置appId及secret
- autoGetOpenid: true,
- debug: true, //是否打开调试模式
- uploadUserInfo: false // 自动上传用户信息,设为false取消上传,默认为false
- })
- uma.install = function (Vue) {
- Vue.prototype.$uma = uma
- }
- Vue.use(uma)
- // #endif
- }
- // Vue实例化
- Vue.config.productionTip = false
- Vue.prototype.$fire = new Vue()
- Vue.prototype.$store = store
- Vue.prototype.$util = {msg,prePage,modal}
- Vue.prototype.$api = Api
- Vue.prototype.$reg = Regs
- Vue.prototype.$Static = 'https://static.caimei365.com/app/img/'
- App.mpType = 'app'
- const app = new Vue({
- ...App
- })
- app.$mount()
|