| | |
| | | <span v-else >否</span> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column prop="detail" label="可选规格" min-width="100px"> |
| | | <template slot-scope="{row}"> |
| | | <div v-if="row.detailList && row.detailList.length"> |
| | | <div v-for="item in row.detailList"> |
| | | {{item || ''}} |
| | | <span v-if="item.index < row.detailList.length" style="margin: 10px">|</span> |
| | | </div> |
| | | </div> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column label="状态"> |
| | | <template slot-scope="{row}"> |
| | | <el-switch :disabled="row.isFixed ==1" @change="changeStatus($event, row)" v-model="row.status" active-color="#13ce66" |