hfxc226 2 years ago
parent
commit
1adedeb151
3 changed files with 17 additions and 18 deletions
  1. 2 2
      src/api/excel/excel.js
  2. 1 1
      src/views/excel/ImportExcel.vue
  3. 14 15
      src/views/excel/modules/ImportFormAdd.vue

+ 2 - 2
src/api/excel/excel.js

@@ -7,9 +7,9 @@ import { stringify } from 'qs'
  * @param parameter
  * @returns {*}
  */
-export function importSbType (parameter) {
+export function importExcel (parameter) {
   return axios({
-    url: '/excel/import/sb/type',
+    url: '/excel/import/',
     method: 'POST',
     headers: {
       'Accept': 'application/json',

+ 1 - 1
src/views/excel/ImportExcel.vue

@@ -30,7 +30,7 @@ export default {
       confirmLoading: false,
       modalTitle: null,
       configMap: {},
-      names: ['部位类型', '设备类型', '设备位置', '供应商'],
+      names: ['部位类型', '设备类型', '设备位置', '供应商', '设备台账'],
       factoryStr: null,
       form: this.$form.createForm(this),
       visible: true,

+ 14 - 15
src/views/excel/modules/ImportFormAdd.vue

@@ -29,7 +29,7 @@
 </template>
 
 <script>
-import { importSbType } from '@/api/excel/excel'
+import { importExcel } from '@/api/excel/excel'
 
 export default {
   name: 'SbModelBomImportForm',
@@ -39,14 +39,14 @@ export default {
       modalTitle: null,
       form: this.$form.createForm(this),
       visible: false,
-      index: null,
+      type: null,
       fileList: []
     }
   },
   methods: {
-    base (index) {
+    base (type) {
       this.visible = true
-      this.index = index
+      this.type = type
       this.modalTitle = '初始化导入'
     },
     handleRemove (file) {
@@ -87,18 +87,17 @@ export default {
           return
         }
         const formData = new FormData()
+        formData.append('type', this.type)
         formData.append('file', this.fileList[0])
-        if (this.index === 1) {
-          importSbType(formData)
-            .then((res) => {
-              this.$message.info(res.data)
-              this.handleCancel(values)
-              this.BaseTool.ListForm.clearOneList(this)
-              this.BaseTool.ListForm.pushOneListAddMore(this, res.data)
-            }).catch(() => {
-              this.confirmLoading = false
-            })
-        }
+        importExcel(formData)
+          .then((res) => {
+            this.$message.info(res.data)
+            this.handleCancel(values)
+            this.BaseTool.ListForm.clearOneList(this)
+            this.BaseTool.ListForm.pushOneListAddMore(this, res.data)
+          }).catch(() => {
+            this.confirmLoading = false
+          })
       })
     },
     handleCancel (values) {