| | |
| | | <el-table-column |
| | | label="操作" min-width="100"> |
| | | <template slot-scope="scope"> |
| | | <el-button v-if="editShow" size="medium" type="text" @click="changeStatus(scope.row)"> |
| | | <el-button v-if="editShow" size="medium" type="text" |
| | | @click="changeStatus(scope.row)"> |
| | | {{scope.row.status === 0 ? "启用" : "停用"}} |
| | | </el-button> |
| | | |
| | | <el-button v-if="editShow" size="medium" type="text" icon="el-icon-edit" @click="editCodingRuler(scope.row)" |
| | | <el-button v-if="editShow" size="medium" type="text" |
| | | @click="editCodingRuler(scope.row)" |
| | | :disabled="scope.row.status === 1" |
| | | >编辑</el-button> |
| | | |
| | | <el-button v-if="delShow" size="medium" |
| | | type="text" |
| | | icon="el-icon-delete" @click="deleteCodingRuler(scope.row)" |
| | | @click="deleteCodingRuler(scope.row)" |
| | | :disabled="scope.row.status === 1" |
| | | >删除</el-button> |
| | | </template> |