Blame view

src/main.js 371 Bytes
0db291810   BigBoss   “-mcomfirmOder页面
1
2
  import Vue from 'vue'
  import App from './App.vue'
843fce64e   wulunyi   feat(master): 加入 ...
3
  import store from './store/index'
0db291810   BigBoss   “-mcomfirmOder页面
4
  
fb85b244c   BigBoss   user页面
5
  Vue.config.productionTip = false
843fce64e   wulunyi   feat(master): 加入 ...
6
  Vue.prototype.sendRequest = function(param){
fb85b244c   BigBoss   user页面
7
8
9
10
11
12
13
  	let _self = this,
  		url = param.url,
  		data = param.data,
  		header = param.header,
  		token = '';
  	//拼接完整请求url
  	let requestUrl = this.baseUrl + url;
fb85b244c   BigBoss   user页面
14
  }
843fce64e   wulunyi   feat(master): 加入 ...
15
16
17
  
  
  new App({store}).$mount()