<el-table-column label="状态">
<template slot-scope="scope">
<el-switch :v-model="scope.row.mg_state" active-color="#13ce66" inactive-color="#409EFF">
</el-switch>
</template>
</el-table-column>
<el-table-column label="操作" width="180px">
<template>
<!-- slot-scope="scope" -->
<el-button size="mini" type="primary" icon="el-icon-edit"></el-button>
<el-button size="mini" type="danger" icon="el-icon-delete"></el-button>
<el-tooltip :enterable="false" effect="dark" content="分配角色" placement="top">
<el-button size="mini" type="warning" icon="el-icon-setting"></el-button>
</el-tooltip>
</template>
</el-table-column>