|  |  | 
 |  |  |         <el-table-column prop="name" label="菜单名称"  fixed="left" align="center" min-width="160px"></el-table-column> | 
 |  |  |         <el-table-column prop="icon" label="图标" align="center" min-width="80px" class-name="table-column-icon"> | 
 |  |  |           <template slot-scope="{row}"> | 
 |  |  |             <el-image v-if="row.icon != null && row.icon !== ''" style="width: 40px; height: 40px;" :src="row.icon"></el-image> | 
 |  |  |             <el-image v-if="row.icon != null && row.icon !== ''" style="width: 40px; height: 40px;" :src="row.resourcePath + row.icon"></el-image> | 
 |  |  |             <template v-else>未设置</template> | 
 |  |  |           </template> | 
 |  |  |         </el-table-column> |