vue+element 的使用问题记录
1、下拉列表绑定值为整数
问题现象:下拉列表没有显示对应的文字,显示的是数字。
解决方法:
对应的对象的类中的数据类型是Integer
value="parseInt(dict.dictValue)"
<el-row> <el-col :span="24"> <el-form-item label="存取状态" prop="inAccessStatus"> <el-select v-model="form.inAccessStatus" style="width: 100%" placeholder="请选择积分存取状态" > <el-option v-for="dict in vtIntegralOptions" :key="dict.dictValue" :label="dict.dictLabel" :value="parseInt(dict.dictValue)"> </el-option> </el-select> </el-form-item> </el-col> </el-row>
标签:vue,绑定,值为,整数,列表,element From: https://www.cnblogs.com/zhangzaizz/p/16640194.html