Commit 0d367eb3 authored by honghy's avatar honghy Committed by wux

bug308 (生产bug)【报价列表-结果】报价结果页面中,“关联订单”没有过滤掉已绑定订单的数据

parent 71ad375f
......@@ -508,6 +508,15 @@ export function getOrderNoSearch(params) {
})
}
// 订单号检索功能(报价单)
export function orderNoSearchOffer(params) {
return request({
url: "/ecw/order/orderNoSearchOffer",
method: "get",
params
})
}
// 提单号检索功能
export function getBillNoSearch(params) {
return request({
......
......@@ -60,7 +60,7 @@ import RoutersSelector from '@/components/RoutersSelector'
import ProductsSelector from '@/components/ProductsSelector'
import Editor from '@/components/Editor'
import Selector from '@/components/Selector/index'
import {getOrderNoSearch} from '@/api/ecw/order'
import { orderNoSearchOffer } from "@/api/ecw/order"
export default {
name: "OfferResult",
components: { CustomersSelector, RoutersSelector, ProductsSelector, Editor, Selector },
......@@ -126,7 +126,7 @@ export default {
},
remoteMethod(query){
this.selectLoading = true
getOrderNoSearch({key: query, pageSize: 200}).then(res => {
orderNoSearchOffer({key: query, pageSize: 200}).then(res => {
this.orderNoList = res.data.list
}).finally(res => {
this.selectLoading = false
......
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