This commit is contained in:
ln1778 2024-09-13 11:21:38 +08:00
parent 578004cdb7
commit 8565ddb5a3
1 changed files with 6 additions and 5 deletions

View File

@ -7,7 +7,7 @@
:value="value&&value[0]"
@change="onSelect"
class="ag_select_group"
:style="{ width: `${swidth}px` }"
:style="{ width: `${swidth+20}px` }"
>
</ag-select>
<ag-input
@ -132,12 +132,13 @@
throw new Error("请传入数组");
}
let newselectValue=newVal[0];
const find=this.$attrs.options&&this.$attrs.options.find((f)=>f.value==newselectValue);
const find=newselectValue&&newselectValue!=""&&this.$attrs.options&&this.$attrs.options.find((f)=>f.value==newselectValue);
if(find){
let fontwidth=this.getStringWidth(find.label);
this.swidth=fontwidth>165?165:fontwidth;
}else{
this.swidth=120;
}
},
immediate: true,
},
@ -151,13 +152,13 @@
methods: {
onSelect(value){
if(this.$listeners.change){
this.$emit("change", [value, this.value[1]||""]);
this.$emit("change", [value||"", this.value[1]||""]);
}
},
onInputChange(val){
if(this.$listeners.change){
this.$emit("change", [this.value[0] ||"",val]);
this.$emit("change", [this.value[0]||"",val]);
}
},
getStringWidth(text) {