element table 一列展示多条数据

##table 一列展示多条数据

 <el-table-column align="center" label="时间范围" min-width="100px">
            <template slot-scope="scope"> {{ scope.row.model_cycle }}{{ cycle_unit_data[scope.row.cycle_unit] }} </template></el-table-column
          >
          data(){
	return{
		 cycle_unit_data: {
	        iocs_cycle_type_hour: '小时',
	        iocs_cycle_type_day: '天',
	        iocs_cycle_type_week: '周',
	        iocs_cycle_type_month: '月',
	        iocs_cycle_type_year: '年'
	      },
	}
}

你可能感兴趣的:(vue.js,前端,javascript)