diff --git a/src/store/getters.js b/src/store/getters.js
index ac7795d..2f2aef6 100644
--- a/src/store/getters.js
+++ b/src/store/getters.js
@@ -21,6 +21,8 @@ const getters = {
   sqlApi: state => state.api.sqlApi,
   swaggerApi: state => state.api.swaggerApi,
   reportApi: state => state.api.reportApi,
-  sidebarRouters: state => state.permission.sidebarRouters
+  sidebarRouters: state => state.permission.sidebarRouters,
+  pointApi: state => state.api.pointApi,
+  stockApi: state => state.api.stockApi,
 }
 export default getters
diff --git a/src/store/modules/api.js b/src/store/modules/api.js
index ce5ed7f..8c5733b 100644
--- a/src/store/modules/api.js
+++ b/src/store/modules/api.js
@@ -23,7 +23,11 @@ const api = {
     // report
     reportApi: baseUrl + '/jmreport/list',
     // baseUrl,
-    baseApi: baseUrl
+    baseApi: baseUrl,
+    //点位上传
+    pointApi:baseUrl + '/api/point/import_point',
+    //容器上传
+    stockApi:baseUrl + '/api/stock/import_stock',
   }
 }
 
diff --git a/src/views/base-data/point/index.vue b/src/views/base-data/point/index.vue
index 1f05395..ae3fdaf 100644
--- a/src/views/base-data/point/index.vue
+++ b/src/views/base-data/point/index.vue
@@ -65,7 +65,7 @@
           slot='right'
           style="float: right;padding-left: 5px"
           :headers="headers"
-          action="/api/point/import_point"
+          :action="pointApi"
           :file-list="fileList"
           :on-error="handleErr"
           :on-success=" (response, file, fileList) => { return handleSuccess(response, file, fileList,crud);}"
@@ -264,6 +264,7 @@ import viewFullStockIn from '@/views/base-data/point/fullStockIn.vue';
 import viewFullStockOut from '@/views/base-data/point/fullStockOut.vue';
 import pointUrl from '@/api/point'
 import multiAdjust from "@/views/base-data/point/multiAdjust.vue";
+import {mapGetters} from "vuex";
 
 const defaultForm = {id: null, status: 'FREE', enabled: 1, code: null, name: null, description: null, area: null}
 export default {
@@ -334,6 +335,9 @@ export default {
       //表单数据
     }
   },
+  computed: {
+    ...mapGetters(['pointApi'])
+  },
   mounted() {
     this.getArea()
     //获取点位表的数据
diff --git a/src/views/base-data/stock/index.vue b/src/views/base-data/stock/index.vue
index b5f6da4..915f37e 100644
--- a/src/views/base-data/stock/index.vue
+++ b/src/views/base-data/stock/index.vue
@@ -59,7 +59,7 @@
           slot='right'
           style="float: right;padding-left: 5px"
           :headers="headers"
-          action="/api/stock/import_stock"
+          :action="stockApi"
           :file-list="fileList"
           :on-error="handleErr"
           :on-success=" (response, file, fileList) => { return handleSuccess(response, file, fileList,crud);}"
@@ -173,6 +173,7 @@ import { getStockTypes } from '@/api/stockType'
 import DonMessage from "@/utils/message";
 import {getToken} from "@/utils/auth";
 import {getAres} from "@/api/area";
+import {mapGetters} from "vuex";
 
 const defaultForm = { id: null, status: 'FREE',stockType: null,code: null, pid: null, pointId: null, subCount: null, name: null, typeId: null, length: null, width: null, height: null, weight: null, size: null, useWeight: null, useSize: null, usageWeight: null, usageSize: null, enabled: 1, createBy: null, updateBy: null, createTime: null, updateTime: null, topId: null}
 export default {
@@ -218,6 +219,9 @@ export default {
       }
     }
   },
+  computed: {
+    ...mapGetters(['stockApi'])
+  },
   mounted() {
     this.getArea();
     this.getStockType();
diff --git a/src/views/business-data/inventoryLog/index.vue b/src/views/business-data/inventoryLog/index.vue
index a4e0aab..b4a09e9 100644
--- a/src/views/business-data/inventoryLog/index.vue
+++ b/src/views/business-data/inventoryLog/index.vue
@@ -37,7 +37,7 @@
           @change="crud.toQuery"
         />
       
-