| | |
| | | v-if="scope.row.status && item.type === 'option'"> |
| | | <el-option v-for="item in item.options" :key="item" :label="item" :value="item" /> |
| | | </el-select> |
| | | <el-switch size="small" v-model="scope.row[item.prop]" |
| | | v-else-if="scope.row.status && item.type === 'boolean'" /> |
| | | <el-switch :disabled="!scope.row.status" size="small" v-model="scope.row[item.prop]" |
| | | v-else-if="item.type === 'boolean'" /> |
| | | <el-input size="small" v-model="scope.row[item.prop]" placeholder="" |
| | | v-else-if="scope.row.status"></el-input> |
| | | <span v-else>{{ scope.row[item.prop] }}</span> |