美文网首页
json格式传参

json格式传参

作者: 吃肉肉不吃肉肉 | 来源:发表于2020-11-11 16:15 被阅读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
          })
       })
    },

相关文章

网友评论

      本文标题:json格式传参

      本文链接:https://www.haomeiwen.com/subject/tjaebktx.html