<el-table-column v-for="(item, index) in column"
                             :prop="item.key"
                             :label="item.title"
                             :align="item.align"
                             :fixed="item.fixed"
                             :key="index"
                             :minWidth="item.width">
                    <template slot-scope="scope">
                        <div v-if="item.key == 'is_default'">
                           <el-radio v-model="radio" :label="scope.row.id"></el-radio>
                        </div>
                        <div v-else>{{scope.row[item.key]}}</div>
                    </template>
            </el-table-column>

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-14
  • 2021-06-08
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-08-24
  • 2021-05-17
  • 2022-12-23
  • 2022-12-23
  • 2021-12-18
  • 2021-12-26
  • 2021-07-21
相关资源
相似解决方案