|
@@ -7,9 +7,16 @@ import store from '../store' //引用store.js
|
7
|
7
|
|
8
|
8
|
// 创建 axios 实例
|
9
|
9
|
var axios = Axios.create({
|
10
|
|
- //baseURL: 'http://10.72.143.2:88', //准东后台默认地址
|
11
|
|
- //baseURL: 'http://11.72.128.68:88', // 一厂默认地址k(11段)
|
12
|
|
- baseURL: 'http://192.168.31.252:88', // 王森玉默认地址
|
|
10
|
+ // baseURL: 'http://101.200.219.190:88', // 后台默认地址
|
|
11
|
+ // baseURL: 'http://10.72.143.2:88', //准东后台默认地址
|
|
12
|
+ //baseURL: 'http://11.72.128.68:88', // 一厂默认地址k
|
|
13
|
+ // baseURL: 'http://10.184.33.224:88', // 中石油默认地址
|
|
14
|
+
|
|
15
|
+ // baseURL: 'http://10.72.143.2:88', // 数据公司后台默认地址
|
|
16
|
+ baseURL: 'http://192.168.31.252:88', // 线下默认地址
|
|
17
|
+ // baseURL: 'http://192.168.1.120:9005', // 许思睿默认地址
|
|
18
|
+ // baseURL: 'http://192.168.1.119:9000', // 郭笑天默认地址
|
|
19
|
+ //http://117.34.118.57:28888/job/microarch-fe-app/buildWithParameters?token=asdfwefasdfkljlkgff&tag_version=app2
|
13
|
20
|
timeout: 12000, // 请求超时时间
|
14
|
21
|
})
|
15
|
22
|
axios.interceptors.request.use(function (config) {
|
|
@@ -76,7 +83,7 @@ axios.interceptors.response.use(
|
76
|
83
|
|
77
|
84
|
function formatDate(date, fmt) {
|
78
|
85
|
date = new Date(date);
|
79
|
|
- if (typeof (fmt) === "undefined") {
|
|
86
|
+ if (typeof(fmt) === "undefined") {
|
80
|
87
|
fmt = "yyyy-MM-dd HH:mm:ss";
|
81
|
88
|
}
|
82
|
89
|
if (/(y+)/.test(fmt)) {
|
|
@@ -99,7 +106,7 @@ function formatDate(date, fmt) {
|
99
|
106
|
}
|
100
|
107
|
|
101
|
108
|
//定义一个时间过滤器
|
102
|
|
-Vue.filter("FormatDate", function (date, fmt) {
|
|
109
|
+Vue.filter("FormatDate", function(date, fmt) {
|
103
|
110
|
return formatDate(date, fmt);
|
104
|
111
|
});
|
105
|
112
|
|
|
@@ -120,7 +127,6 @@ export function postAction(url, parameter) {
|
120
|
127
|
data: parameter
|
121
|
128
|
})
|
122
|
129
|
}
|
123
|
|
-
|
124
|
130
|
export function postExcelAction(url, parameter) {
|
125
|
131
|
|
126
|
132
|
return axios({
|
|
@@ -229,7 +235,6 @@ export function uploadExcel(url, parameter) {
|
229
|
235
|
},
|
230
|
236
|
})
|
231
|
237
|
}
|
232
|
|
-
|
233
|
238
|
export function getExcelExampleAction(url) {
|
234
|
239
|
|
235
|
240
|
return axios({
|
|
@@ -238,7 +243,6 @@ export function getExcelExampleAction(url) {
|
238
|
243
|
responseType: 'blob',
|
239
|
244
|
})
|
240
|
245
|
}
|
241
|
|
-
|
242
|
246
|
/**
|
243
|
247
|
* 下载文件 用于excel导出
|
244
|
248
|
* @param url
|