json格式传参
2020-11-11 本文已影响0人
吃肉肉不吃肉肉
// 确认入库
putStorage() {
this.$axios({
method:'post',
url:'/storage/buyCargo/excelIntoStock',
headers:{
'token': "Bearer " + getToken(),
'Content-Type': "application/json"
},
data :JSON.stringify({
warehouseId: this.form.id,
supplierOrderNo: this.form.supplierOrderNo,
staffId: this.form.staffId,
supplierId: this.form.supplierId,
buyCargoType: this.form.buyCargoType,
goodsInfoList: this.tableData
})
})
},