赞
踩
打开页面选择框默认选择较好
- <td>
- <a-form-item>
- <a-select
- placeholder="请选择"
- 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 : '',
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。