perf: asset permission accounts select

This commit is contained in:
ibuler
2025-04-30 14:56:15 +08:00
committed by 老广
parent fbdcd541e1
commit efebf795e4
3 changed files with 28 additions and 12 deletions

View File

@@ -5,7 +5,6 @@
slot="prepend"
:placeholder="$tc('Select')"
:value="rawValue.code"
style="width: 105px;"
@change="onChange"
>
<el-option
@@ -69,7 +68,11 @@ export default {
}
</script>
<style scoped>
<style lang="scss" scoped>
.el-select {
width: 85px;
}
.country-name {
display: inline-block;
width: 150px;

View File

@@ -118,12 +118,12 @@ export default {
}
this.$emit('change', this.filterTags)
this.$emit('input', this.filterTags)
// this.$refs.SearchInput.focus()
this.$refs.SearchInput.focus()
},
handleTagClick(v, k) {
this.$delete(this.filterTags, k)
this.filterValue = v
// this.$refs.SearchInput.focus()
this.$refs.SearchInput.focus()
},
matchRule(value) {
const regex = new RegExp(this.replaceRule)

View File

@@ -43,7 +43,9 @@
<el-input v-model="object.wechat" />
</td>
</tr>
</table>
<tr>
<td class="label" />
<td class="value">
<el-button
size="small"
style="margin-top: 10px"
@@ -52,6 +54,9 @@
>
{{ $t('Update') }}
</el-button>
</td>
</tr>
</table>
</IBox>
</template>
</TwoCol>
@@ -495,6 +500,13 @@ export default {
<style lang="scss" scoped>
.update-info {
::v-deep {
.el-input-group {
.el-select {
width: 80px;
}
}
}
table {
width: 100%;
@@ -506,6 +518,7 @@ export default {
.value {
width: 60%;
}
}
}