liunan #10

Merged
liunan merged 47 commits from liunan into master 2024-09-13 14:43:34 +08:00
1 changed files with 4 additions and 2 deletions
Showing only changes of commit 57ef27b43d - Show all commits

View File

@ -44,7 +44,7 @@ export default {
data() { data() {
return { return {
values: [null, []], values: [null, []],
swidth:90, swidth:100,
inputValue:"", inputValue:"",
selectvalue:"", selectvalue:"",
imeipopover:false, imeipopover:false,
@ -66,7 +66,9 @@ export default {
if(find){ if(find){
let fontwidth=this.getStringWidth(find.label); let fontwidth=this.getStringWidth(find.label);
this.swidth=fontwidth>165?165:fontwidth; this.swidth=fontwidth>165?165:fontwidth;
} }else{
this.swidth=100;
}
}, },
immediate: true, immediate: true,