mirror of
https://github.com/dataease/dataease.git
synced 2025-02-24 19:42:56 +08:00
Merge pull request #13308 from dataease/pr@dev-v2_st
fix(查询组件): 文本下拉-手工输入选项值字符长度调整为64 #13303
This commit is contained in:
commit
fb2e2a6ce0
@ -2946,13 +2946,13 @@ defineExpose({
|
||||
<span> {{ t('data_fill.form.option_value') }} </span>
|
||||
<div :key="index" v-for="(_, index) in valueSource" class="select-item">
|
||||
<el-input
|
||||
maxlength="20"
|
||||
maxlength="64"
|
||||
v-if="curComponent.displayType === '2'"
|
||||
@blur="weightlessness"
|
||||
v-model.number="valueSource[index]"
|
||||
></el-input>
|
||||
<el-input
|
||||
maxlength="20"
|
||||
maxlength="64"
|
||||
v-else
|
||||
@blur="weightlessness"
|
||||
v-model="valueSource[index]"
|
||||
|
Loading…
Reference in New Issue
Block a user