Commit cf257fca authored by jingnan's avatar jingnan 👀

 胶漆申领牌号规格有-带入(下拉框有的话带入,没有不带入),没有-默认“/”

parent b206bb2b
......@@ -339,8 +339,11 @@ export default {
return
}
post(
`/ExtSupportingItem/deal/supportingItem?extSupportingItemVOId=${that.rowData.id}&applyState=true`,
{}
`/ExtSupportingItem/deal/supportingItem?applyState=true`,
{
id: that.rowData.id,
spec: this.rowData.spec
}
)
.then((res) => {
if (res.message.includes('成功')) {
......@@ -367,8 +370,11 @@ export default {
cancelApplyStorageReqItem() {
var that = this
post(
`/ExtSupportingItem/deal/supportingItem?extSupportingItemVOId=${that.rowData.id}&applyState=false`,
{}
`/ExtSupportingItem/deal/supportingItem?applyState=false`,
{
id: that.rowData.id,
spec: this.rowData.spec
}
)
.then((res) => {
if (res.message.includes('成功')) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment