@@ -11,7 +11,7 @@ const service = axios.create({
// axios中请求配置有baseURL选项,表示请求URL公共部分
baseURL: process.env.VUE_APP_BASE_API,
// 超时
- timeout: 5000
+ timeout: 10000
})
// request拦截器
@@ -191,7 +191,7 @@
handleExport() {
this.download('data/customer/export', {
...this.queryParams
- }, `user_${new Date().getTime()}.xlsx`)
+ }, `customer_${new Date().getTime()}.xlsx`)
},
toOverview(row){
this.$router.push({ path:'/userInfoOverview', query: {id: row.id} })