多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
> 在表格里面添加input输入框,做每个输入框各自的限制 ``` <el-table :data="tableData" border max-height="700"header-row-class-name="header-row" class="tableCenter"> <el-table-column label="原订购数量" :min-width="140"> <template slot-scope="scope"> <el-input-number v-model="scope.row.itemCount" size="mini" :max="scope.row.goodsType == 1?scope.row.maxCount:Infinity" :min="0" ></el-input-number> </template> </el-table-column> </el-table> ``` * 使用三元运算符在行内进行条件赋值判断,如果在computed里面进行计算值,则无法获取到itemCount的index * 三元运算符需要注意的地方:条件?符合:不符合 1. ?后面的值如果是个string需要用引号引起来 2. ?后面的值如果是个变量就不需要用引号