|
|
|
@ -100,7 +100,7 @@
|
|
|
|
this.select.filter = [{
|
|
|
|
this.select.filter = [{
|
|
|
|
"key": "name",
|
|
|
|
"key": "name",
|
|
|
|
"op": "like",
|
|
|
|
"op": "like",
|
|
|
|
"value": queryString
|
|
|
|
"value": queryString ? queryString : ''
|
|
|
|
}]
|
|
|
|
}]
|
|
|
|
index(this.select).then(res=>{
|
|
|
|
index(this.select).then(res=>{
|
|
|
|
|
|
|
|
|
|
|
|
@ -116,7 +116,7 @@
|
|
|
|
handleSelect(item) {
|
|
|
|
handleSelect(item) {
|
|
|
|
console.log(item);
|
|
|
|
console.log(item);
|
|
|
|
this.form.point_id=item.id;
|
|
|
|
this.form.point_id=item.id;
|
|
|
|
this.form.point=item.name;
|
|
|
|
this.form.point=item?.name;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
show() {
|
|
|
|
show() {
|
|
|
|
this.isShow = true;
|
|
|
|
this.isShow = true;
|
|
|
|
@ -171,7 +171,7 @@
|
|
|
|
id: this.id
|
|
|
|
id: this.id
|
|
|
|
});
|
|
|
|
});
|
|
|
|
this.$integrateData(this.form, res);
|
|
|
|
this.$integrateData(this.form, res);
|
|
|
|
this.form.pointName=res.point.name;
|
|
|
|
this.form.pointName=res.point?.name;
|
|
|
|
this.form.option_list = res?.options.map(i => {
|
|
|
|
this.form.option_list = res?.options.map(i => {
|
|
|
|
return {
|
|
|
|
return {
|
|
|
|
title: i.title,
|
|
|
|
title: i.title,
|
|
|
|
|