Commit 125cf765 authored by jingnan's avatar jingnan 👀

配套需求单明细状态为未入库时改为未出库

parent 4904d65c
...@@ -211,7 +211,7 @@ export default { ...@@ -211,7 +211,7 @@ export default {
tempData = res.items.map((item) => { tempData = res.items.map((item) => {
const orgData = this.tableData.find(ori => ori.id === item.id) const orgData = this.tableData.find(ori => ori.id === item.id)
item.internalDataList = orgData && orgData.internalDataList || [] item.internalDataList = orgData && orgData.internalDataList || []
item.reqStatus = this.$utils.getParamsFromLists(this.reqStatusOptions, 'value', item.reqStatus, 'label') item.reqStatus = item.reqStatus === 'Not' ? '未出库' : this.$utils.getParamsFromLists(this.reqStatusOptions, 'value', item.reqStatus, 'label')
return item return item
}) })
this.tableData = tempData this.tableData = tempData
......
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