web前端开发

el-checkbox选中时把值转为0和1

2022-03-30  本文已影响0人  爱学习的新一

最近做项目遇到el-checkbox选中只能为true和false,而后端需要传1和0,返回时也是一样

<el-table-column label="是否答案" width="120" align="center">
            <template slot-scope="scope">
              <!-- <el-checkbox v-model="scope.row.isRight" >答案</el-checkbox> -->
              <el-checkbox v-model="scope.row.isRight" :checked="scope.row.isRight===1? true:false" :true-label="1"
                :false-label="0">
                答案
              </el-checkbox>
            </template>
          </el-table-column>
image.png
image.png
上一篇下一篇

猜你喜欢

热点阅读