Blame view

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