Ver código fonte

新增组件及页面

liuqiwen 4 anos atrás
pai
commit
b6ea2d8cf1

+ 1 - 1
dgtis-ui/src/utils/request.js

@@ -11,7 +11,7 @@ const service = axios.create({
   // axios中请求配置有baseURL选项,表示请求URL公共部分
   baseURL: process.env.VUE_APP_BASE_API,
   // 超时
-  timeout: 5000
+  timeout: 10000
 })
 
 // request拦截器

+ 1 - 1
dgtis-ui/src/views/system/userInfoList/index.vue

@@ -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}  })