Showing
1 changed file
with
3 additions
and
2 deletions
| ... | ... | @@ -149,9 +149,10 @@ export default { |
| 149 | 149 | }) |
| 150 | 150 | } else if (this.source === 'orderAssoc') { |
| 151 | 151 | console.log('orderAssoc_extra', extra) |
| 152 | - // 订单关联表(可撤销/变更的订货单) | |
| 152 | + // 订单关联表(可撤销/变更的订货单、可发货的订货单) | |
| 153 | + // 支持 订单编号&订货单位 模糊搜索 searchKey | |
| 153 | 154 | const queryType = (extra && extra.queryType) || '' |
| 154 | - const params = { pageIndex, pageSize, orderNo: name, queryType } | |
| 155 | + const params = { pageIndex, pageSize, searchKey: name, queryType } | |
| 155 | 156 | return listCanRevokeOrChangeOrderInfo(params).then(res => { |
| 156 | 157 | const _data = res.data || {} |
| 157 | 158 | const records = _data.datas || _data.records || _data.list || [] | ... | ... |