|
|
|
@ -100,7 +100,7 @@ |
|
|
|
<!-- <el-input v-model="importData.site" disabled style="width: 200px"></el-input>--> |
|
|
|
<!-- </el-form-item>--> |
|
|
|
<!-- </el-col>--> |
|
|
|
<el-col :span="24"> |
|
|
|
<!-- <el-col :span="24"> |
|
|
|
<el-form-item label="BU" prop="buNo" :rules="[{required: true, message: '请选择BU', trigger: 'change'}]"> |
|
|
|
<el-select v-model="importData.buNo" placeholder="请选择" @change="buChange" style="width: 360px"> |
|
|
|
<el-option |
|
|
|
@ -115,7 +115,7 @@ |
|
|
|
</el-option> |
|
|
|
</el-select> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
</el-col>--> |
|
|
|
</el-row> |
|
|
|
<el-row style="width: 100%"> |
|
|
|
<el-col :span="24" > |
|
|
|
@ -201,8 +201,8 @@ |
|
|
|
|
|
|
|
// 导入数据 - rqrq |
|
|
|
importData: { |
|
|
|
site: this.$store.state.user.site, |
|
|
|
buNo: '', |
|
|
|
site: '3', |
|
|
|
buNo: '3_02-Hardtag', |
|
|
|
remark: '' |
|
|
|
}, |
|
|
|
fileList: [], |
|
|
|
@ -366,8 +366,8 @@ |
|
|
|
|
|
|
|
const formData = new FormData() |
|
|
|
formData.append('file', this.fileList[0].raw) |
|
|
|
formData.append('site', site) |
|
|
|
formData.append('buNo', this.importData.buNo) |
|
|
|
formData.append('site', '3') |
|
|
|
formData.append('buNo', '3_02-Hardtag') |
|
|
|
formData.append('remark', this.importData.remark || '') |
|
|
|
formData.append('username', this.$store.state.user.name) |
|
|
|
|
|
|
|
|