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