Commit 250ab639 authored by xiejb's avatar xiejb

订单查询 货主数据源j去重

parent 10f014a5
......@@ -240,9 +240,15 @@ export default {
// 高级搜索条件
setMoreSearchInfoAction () {
let _this = this
const sourceDbList = []
const dataList = []
// console.log(_this.moreSearchInfo)
_this.moreSearchInfo.consignor.forEach(item => {
if(sourceDbList.indexOf(item.ownerid) > -1) {
return
} else {
sourceDbList.push(item.ownerid)
}
const model = {
'businessType': '',
'clientID': this.getClientValueArray(_this.moreSearchInfo.client), // 客户编码
......
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