Commit c8d53db37a7f8cbbf2cd5cd0bf65b3338b3d2fb2

Authored by 史婷婷
1 parent 0b840848

feat: 订单关联表 支持 订单编号&订货单位 模糊搜索

... ... @@ -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 || []
... ...