|
|
|
@ -536,7 +536,8 @@
|
|
|
|
|
:placeholder="replaceProps(col, col.placeholder)" |
|
|
|
|
@change="(v)=>handleSearchSelectChange(v,id,row,col)" |
|
|
|
|
allowClear |
|
|
|
|
@focus="a" |
|
|
|
|
:filterOption="false" |
|
|
|
|
|
|
|
|
|
/> |
|
|
|
|
<!-- :filterOption="filterOption"--> |
|
|
|
|
<span |
|
|
|
@ -2149,6 +2150,20 @@
|
|
|
|
|
} |
|
|
|
|
// 存储输入的值 |
|
|
|
|
this.inputValues[index][column.key] = value |
|
|
|
|
// console.log("sadfgasdf",value); |
|
|
|
|
// //查询信息 |
|
|
|
|
// let pam ={ |
|
|
|
|
// descriptionNam: value, |
|
|
|
|
// |
|
|
|
|
// } |
|
|
|
|
// getAction(this.url.descriptionRakeUrl,pam).then(res=>{ |
|
|
|
|
// if(){ |
|
|
|
|
// |
|
|
|
|
// } |
|
|
|
|
// }) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 做单个表单验证 |
|
|
|
|
this.validateOneInput(value, row, column, this.notPassedIds, true, 'input') |
|
|
|
|
|
|
|
|
@ -2667,7 +2682,7 @@
|
|
|
|
|
return option.componentOptions.children[0].text.toLowerCase().indexOf(input.toLowerCase()) >= 0 |
|
|
|
|
}, |
|
|
|
|
searchOption (input,pro,index){ |
|
|
|
|
console.log("searchOption=========",input,pro); |
|
|
|
|
// console.log("searchOption=========",input,pro,index); |
|
|
|
|
return new Promise(async (resolve, reject) => { |
|
|
|
|
let par = { |
|
|
|
|
|
|
|
|
@ -2677,19 +2692,57 @@
|
|
|
|
|
// getAction(this.url.descriptionRake,par).then((res)=>{ |
|
|
|
|
let a= []; |
|
|
|
|
if(res.success){ |
|
|
|
|
console.log("222222222222222===",res.result.records); |
|
|
|
|
res.result.records.forEach( item => { |
|
|
|
|
a.push({ |
|
|
|
|
title : item.materialClassify, |
|
|
|
|
value : item.id, |
|
|
|
|
// console.log("222222222222222===",res.result); |
|
|
|
|
let pam = res.result.records||res.result; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pam.forEach( item => { |
|
|
|
|
let isb = false; |
|
|
|
|
|
|
|
|
|
// this.getValues((a, b, c) => { |
|
|
|
|
// console.log("bbbbbbbbbbbbbb",b.materialNumber) |
|
|
|
|
// if(!!b.materialNumber){ |
|
|
|
|
// console.log("bbbbbbbbbbbbbb",b) |
|
|
|
|
// b.forEach(item => { |
|
|
|
|
// if (item.materialNumber === item.id) { |
|
|
|
|
// isb = true; |
|
|
|
|
// } |
|
|
|
|
// }) |
|
|
|
|
// } |
|
|
|
|
// |
|
|
|
|
// |
|
|
|
|
// }) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
a.push({ |
|
|
|
|
title : item.materialsNumber, |
|
|
|
|
value : item.id, |
|
|
|
|
disabled: isb |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|
this.columns[index].options = a |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
this.columns[index].options = a |
|
|
|
|
resolve( ); |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
// await getAction(this.url.merchandiseNewsList,par).then( (res)=>{ |
|
|
|
|
// // getAction(this.url.descriptionRake,par).then((res)=>{ |
|
|
|
|
// let a= []; |
|
|
|
|
// if(res.success){ |
|
|
|
|
// let pam = res.result.records||res.result; |
|
|
|
|
// console.log("222222222222222===",pam); |
|
|
|
|
// pam.forEach( item => { |
|
|
|
|
// a.push({ |
|
|
|
|
// title : item.materialClassify, |
|
|
|
|
// value : item.id, |
|
|
|
|
// }) |
|
|
|
|
// }) |
|
|
|
|
// } |
|
|
|
|
// // this.columns[index].options = a |
|
|
|
|
// // console.log( this.columns[index].options) |
|
|
|
|
// resolve( this.columns[index].options = a ); |
|
|
|
|
// }); |
|
|
|
|
|
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|