🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
``` <el-table-column label="状态" prop="exp_status" align="center"> <template slot-scope="scope"> <el-switch v-if="scope.row.edit" v-model="scope.row.exp_status" :active-value="1" :inactive-value="2"> </el-switch> <el-switch v-else disabled v-model="scope.row.exp_status == 1" > </el-switch> </template> </el-table-column> ``` ``` <el-switch v-if="scope.row.edit" v-model="scope.row.exp_status" :active-value="1" :inactive-value="2"> </el-switch> ``` ``` v-model="scope.row.exp_status" :active-value="1" :inactive-value="2" ```