1500字范文,内容丰富有趣,写作好帮手!
1500字范文 > vue a-select选择框默认值

vue a-select选择框默认值

时间:2018-08-03 13:22:26

相关推荐

vue a-select选择框默认值

打开页面选择框默认选择较好

html

<td><a-form-item><a-selectplaceholder="请选择"v-decorator="[`democraticList[${index}].level`,{rules: [{required: true, message: '请选择'},],initialValue:options.evaluationLevel[1].value,validateTrigger:'blur'}]":options="options.evaluationLevel"></a-select></a-form-item></td>

关键字段:

initialValue:

options.evaluationLevel[1].value,

记录:

initialValue(初始值)

evaluationLevel(字典值数组)

将字典值放在主页面的dictcode和options中。

如果html中未使用<a-form-item>,则:defaultValue=""设置默认值,

如果html中使用<a-form-item>,则用initialValue:设置默认值,注意上面关键字段的options前有this.的话,可能会报错,未定义options。

写按钮使用

initialValue:

(options.evaluationLevel && options.evaluationLevel.length) ? options.evaluationLevel[1].value : '',

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。